* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #f5f1eb;
  --dark: #2c2820;
  --gold: #c4a882;
  --gold-muted: rgba(196, 168, 130, 0.6);
  --text-light: rgba(245, 241, 235, 0.72);
}

body {
  min-height: 100vh;
  font-family: "Jost", sans-serif;
  background: var(--cream);
  color: var(--dark);
}

.frame {
  padding-inline: 3rem;
}

@media (max-width: 680px) {
  .frame {
    padding-inline: 1.75rem;
  }
}

/* NAV */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(245, 241, 235, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 0.5px solid rgba(60, 50, 40, 0.12);
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav li {
  height: 56px;
}

nav a {
  height: 100%;
  padding: 0 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: var(--dark);
}

.desktop-nav li:first-child {
  margin-right: auto;
}

.logo img {
  width: 180px;
  mix-blend-mode: multiply;
}

/* NAV LINKS */
nav ul:not(.sidebar) li:not(.hamburger):not(.logo) a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #4a3f35;
  position: relative;
}

nav ul:not(.sidebar) li:not(.hamburger):not(.logo) a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: #8b7355;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

nav ul:not(.sidebar) li:not(.hamburger):not(.logo) a:hover::after {
  transform: scaleX(1);
}

/* HAMBURGER */
.hamburger {
  display: none;
  margin-left: auto;
}

.hamburger a svg {
  width: 22px;
  height: 22px;
  fill: var(--dark);
}

.hamburger:hover a svg {
  fill: #8b7355;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  z-index: 999;
  background: var(--cream);
  border-left: 0.5px solid rgba(60, 50, 40, 0.12);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  display: none;
}

.sidebar.active {
  display: flex;
}

.sidebar li {
  width: 100%;
}

.sidebar li a {
  width: 100%;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4a3f35;
  padding: 0 2rem;
  border-left: 2px solid transparent;
  transition:
    border-color 0.2s ease,
    padding-left 0.2s ease;
}

.sidebar li a:hover {
  border-left-color: var(--gold);
  padding-left: 2.5rem;
}

.cross a svg {
  width: 20px;
  height: 20px;
  fill: #4a3f35;
}

.cross:hover a svg {
  fill: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .hideOnMobile {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 400px) {
  .sidebar {
    width: 100%;
  }
}

/* HEADER */
header {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  background-image:
    linear-gradient(
      to right,
      rgba(20, 16, 12, 0.85) 30%,
      rgba(20, 16, 12, 0.25) 100%
    ),
    url("img/koucink-osobni-rozvoj-zena-vnitrni-klid.webp");
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
}

@media (max-width: 680px) {
  header {
    background-image:
      linear-gradient(
        to bottom,
        rgba(20, 16, 12, 0.4) 0%,
        rgba(20, 16, 12, 0.8) 60%
      ),
      url("img/koucink-osobni-rozvoj-zena-vnitrni-klid.webp");
    background-position: 80% top;
    align-items: flex-end;
  }
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 5rem;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (max-width: 680px) {
  .hero-content {
    padding: 0 1.75rem 4rem;
    max-width: 100%;
  }
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  letter-spacing: -0.5px;
}

h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 38ch;
}

/* BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: transparent;
  border: 1px solid var(--gold-muted);
  color: var(--gold);
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.btn:hover {
  background: rgba(196, 168, 130, 0.1);
  border-color: var(--gold);
  color: var(--cream);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* SCROLL HINT */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-hint span {
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.3);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-muted), transparent);
}

/************************/
/********* FOR YOU ******/
/***********************/
.forYou-section {
  background: var(--cream);
}

.forYou {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-block: 6rem;
}

@media (min-width: 680px) {
  .forYou {
    flex-direction: row;
    gap: 5rem;
    align-items: flex-start;
  }
}

.blockA {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 680px) {
  .blockA {
    flex: 0 0 280px;
    position: sticky;
    top: 5rem;
  }
}

.blockA h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
}

.blockA h2 em {
  font-style: italic;
  color: #8b7355;
}

.forYou-intro {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(44, 40, 32, 0.65);
}

.forYou-deco {
  font-family: "Cormorant Garamond", serif;
  font-size: 9rem;
  font-weight: 300;
  color: rgba(196, 168, 130, 0.15);
  line-height: 1;
  margin-top: 1rem;
  user-select: none;
  display: block;
}

.blockB {
  flex: 1;
}

.forYou-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 0.5px solid rgba(44, 40, 32, 0.1);
  transition: color 0.2s ease;
}

.forYou-item:first-child {
  border-top: 0.5px solid rgba(44, 40, 32, 0.1);
}

.forYou-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 1px;
  min-width: 24px;
  padding-top: 3px;
}

.forYou-item p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--dark);
  transition: color 0.2s ease;
}

.forYou-item:hover p {
  color: #8b7355;
}

.forYou-item:hover .forYou-num {
  color: var(--dark);
}

/************************/
/********* ABOUT ME *****/
/***********************/
.aboutMe-section {
  background: var(--cream);
}

.aboutMe {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
  padding-block: 6rem;
}

@media (max-width: 860px) {
  .aboutMe {
    flex-direction: column;
    gap: 3rem;
  }
}

/* PHOTO */
.am-photo {
  flex: 0 0 340px;
  position: sticky;
  top: 5rem;
}

@media (max-width: 860px) {
  .am-photo {
    position: static;
    flex: none;
    width: 100%;
    max-width: 400px;
  }
}

.am-photo-wrap {
  position: relative;
}

.am-photo-wrap::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  border: 1px solid rgba(196, 168, 130, 0.3);
  z-index: 0;
}

.am-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  filter: sepia(8%) contrast(1.03);
}

/* TEXT */
.textBlock {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.textBlock h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 2rem;
}

.textBlock h2 em {
  font-style: italic;
  color: #8b7355;
}

.textBlock .eyebrow {
  margin-bottom: 1rem;
}

.am-bio {
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  margin-bottom: 3rem;
}

.am-bio p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(44, 40, 32, 0.75);
}

/* CREDENTIALS */
.am-qual-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.am-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 0.5px solid rgba(44, 40, 32, 0.1);
}

.am-cred {
  padding: 1.25rem 1.5rem 1.25rem 0;
  border-bottom: 0.5px solid rgba(44, 40, 32, 0.1);
  border-right: 0.5px solid rgba(44, 40, 32, 0.1);
}

.am-cred:nth-child(even) {
  padding-left: 1.5rem;
  padding-right: 0;
  border-right: none;
}

.am-cred-abbr {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.am-cred-desc {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(44, 40, 32, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/************************/
/********* APPROACH *****/
/************************/
.approachSection {
  background: #1c1814;
  color: #f5f1eb;
}

.approach {
  padding-block: 6rem;
}

.ap-head {
  display: flex;
  gap: 5rem;
  align-items: flex-end;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(245, 241, 235, 0.08);
}

.ap-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: #f5f1eb;
}

.ap-head h2 em {
  font-style: italic;
  color: var(--gold);
}

.ap-head .eyebrow {
  margin-bottom: 1rem;
}

.ap-intro {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 241, 235, 0.5);
  max-width: 42ch;
  align-self: flex-end;
}

@media (max-width: 860px) {
  .ap-head {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

/* CARDS */
.cardWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .cardWrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.card {
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
  filter: sepia(15%) contrast(1.05) brightness(0.88);
  margin-bottom: 1.5rem;
}

.card-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 0.6rem;
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: #f5f1eb;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.card-body p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 241, 235, 0.5);
}

/************************/
/********* JOURNEY ******/
/************************/
.journeySection {
  background: var(--cream);
}

.journey {
  padding-block: 6rem;
}

.jn-head {
  display: flex;
  gap: 5rem;
  align-items: flex-end;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(44, 40, 32, 0.1);
}

.jn-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
}

.jn-head h2 em {
  font-style: italic;
  color: #8b7355;
}

.jn-head .eyebrow {
  margin-bottom: 1rem;
}

.jn-intro {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(44, 40, 32, 0.6);
  max-width: 42ch;
  align-self: flex-end;
}

@media (max-width: 860px) {
  .jn-head {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

/* CARD */
.productContainer {
  display: flex;
  justify-content: center;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 560px;
  width: 100%;
  padding: 3rem;
  border: 0.5px solid rgba(44, 40, 32, 0.12);
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 60px;
  background: var(--gold);
}

.card-tag {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.card-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(44, 40, 32, 0.45);
  text-transform: uppercase;
}

.card-duration::before {
  content: "";
  display: block;
  width: 20px;
  height: 0.5px;
  background: rgba(44, 40, 32, 0.3);
}

.product-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
}

.card-body {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(44, 40, 32, 0.65);
  padding-bottom: 0.5rem;
  border-bottom: 0.5px solid rgba(44, 40, 32, 0.1);
}

/* override .btn for dark version */
.product-card .btn {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--cream);
}

.product-card .btn:hover {
  background: transparent;
  color: var(--dark);
}

/************************/
/****** CONSULTATION *****/
/************************/
.consultationSection {
  background: #1c1814;
  color: #f5f1eb;
}

.consultation {
  padding-block: 6rem;
}

.consultation .eyebrow {
  color: var(--gold);
  margin-bottom: 1rem;
}

.consultation h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: #f5f1eb;
  margin-bottom: 4rem;
}

.consultation h2 em {
  font-style: italic;
  color: var(--gold);
}

.consultationCardsWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

@media (max-width: 860px) {
  .consultationCardsWrapper {
    grid-template-columns: 1fr;
  }
}

.consultationCard {
  display: flex;
  flex-direction: column;
  padding-right: 2.5rem;
  border-right: 0.5px solid rgba(245, 241, 235, 0.12);
}

.consultationCard:last-child {
  border-right: none;
  padding-right: 0;
}

.consultationCard:not(:first-child) {
  padding-left: 2.5rem;
}

@media (max-width: 860px) {
  .consultationCard {
    padding: 0 0 3rem;
    border-right: none;
    border-bottom: 0.5px solid rgba(245, 241, 235, 0.12);
  }

  .consultationCard:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .consultationCard:not(:first-child) {
    padding-left: 0;
    padding-top: 3rem;
  }
}

.consultationCard img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: sepia(15%) contrast(1.05) brightness(0.82);
  margin-bottom: 1.75rem;
}

.cons-num {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.consultationCard h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #f5f1eb;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cons-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 241, 235, 0.5);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid rgba(245, 241, 235, 0.08);
}

.cons-body {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245, 241, 235, 0.45);
  flex: 1;
  margin-bottom: 1.75rem;
}

.cons-price-label {
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.3);
  margin-bottom: 0.3rem;
}

.cons-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.5px;
}

/************************/
/****** SINGLE CONS *****/
/************************/
.singleConsSection {
  background: var(--cream);
}

.singleCons {
  padding-block: 6rem;
}

.sc-prices {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 0.5px solid rgba(44, 40, 32, 0.1);
  border-bottom: 0.5px solid rgba(44, 40, 32, 0.1);
  width: 100%;
}

.sc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 0.5px solid rgba(44, 40, 32, 0.08);
}

.sc-price-row:last-child {
  border-bottom: none;
}

.sc-price-label {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(44, 40, 32, 0.55);
}

.sc-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--dark);
}

/************************/
/********* CTA **********/
/************************/
.ctaSection {
  background: #1c1814;
}

.ctaWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding-block: 8rem;
  text-align: center;
}

.cta-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(196, 168, 130, 0.5));
}

.cta-line--bottom {
  background: linear-gradient(to bottom, rgba(196, 168, 130, 0.5), transparent);
}

.cta-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.3;
  color: #f5f1eb;
  max-width: 20ch;
}

.cta-text em {
  font-style: italic;
  color: var(--gold);
}

/* override .btn for dark bg */
.ctaSection .btn {
  border-color: rgba(196, 168, 130, 0.5);
  color: var(--gold);
}

.ctaSection .btn:hover {
  background: rgba(196, 168, 130, 0.1);
  border-color: var(--gold);
  color: #f5f1eb;
}

/************************/
/********* FOOTER *******/
/************************/
footer {
  background: #131009;
  border-top: 0.5px solid rgba(245, 241, 235, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 2.5rem;
}

@media (max-width: 680px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.footer-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: #f5f1eb;
  margin-bottom: 0.35rem;
}

.footer-sub {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.3);
}

.footer-copy {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(245, 241, 235, 0.2);
}

/**************************************/
/********* FONT SIZE ADJUSTMENT *******/
/*************************************/
/* EYEBROW — was 0.68rem */
.eyebrow {
  font-size: 0.75rem;
}

/* NAV LINKS — was 0.7rem */
nav ul:not(.sidebar) li:not(.hamburger):not(.logo) a {
  font-size: 0.78rem;
}

/* SIDEBAR LINKS — was 0.78rem */
.sidebar li a {
  font-size: 0.88rem;
}

/* HERO BODY — was 0.9rem */
.hero-body {
  font-size: 1rem;
}

/* FOR YOU items — was 0.92rem */
.forYou-item p {
  font-size: 1rem;
}

/* ABOUT ME bio — was 0.9rem */
.am-bio p {
  font-size: 0.95rem;
}

/* CREDENTIALS desc — was 0.72rem */
.am-cred-desc {
  font-size: 0.78rem;
}

/* APPROACH intro — was 0.88rem */
.ap-intro {
  font-size: 0.95rem;
}

/* APPROACH card body — was 0.82rem */
.card-body p {
  font-size: 0.88rem;
}

/* JOURNEY intro — was 0.88rem */
.jn-intro {
  font-size: 0.95rem;
}

/* PRODUCT CARD body — was 0.88rem */
.card-body {
  font-size: 0.95rem;
}

/* CONSULTATION tagline — was 0.95rem */
.cons-tagline {
  font-size: 1rem;
}

/* CONSULTATION body — was 0.82rem */
.cons-body {
  font-size: 0.88rem;
}

/* SINGLE CONS price label — was 0.78rem */
.sc-price-label {
  font-size: 0.85rem;
}

/* CARD TAG — was 0.65rem */
.card-tag {
  font-size: 0.72rem;
}

/* CARD DURATION — was 0.7rem */
.card-duration {
  font-size: 0.78rem;
}

/* FOOTER sub — was 0.65rem */
.footer-sub {
  font-size: 0.72rem;
}

/* FOOTER copy — was 0.65rem */
.footer-copy {
  font-size: 0.72rem;
}
