/* Revive Aesthetics — brand styles */

:root {
  --ivory: #F8F1EA;
  --ivory-soft: #FBF6F1;
  --rose: #EBD3CB;
  --rose-soft: #F3E1DA;
  --clay: #3E2A24;
  --espresso: #5B3F36;
  --gold: #B89466;
  --gold-soft: #D4B58A;
  --peach: #E8A788;
  --ink: #2A1C18;
  --mist: #E8DED5;
  --line: rgba(62, 42, 36, 0.12);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--ivory);
  color: var(--clay);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.005em;
}

.font-display {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.font-serif-soft {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--espresso);
}

.eyebrow-gold {
  color: var(--gold);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clay);
  color: var(--ivory);
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background: var(--espresso);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clay);
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--clay);
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-ghost:hover {
  background: var(--clay);
  color: var(--ivory);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-gold:hover {
  background: #a07f55;
  transform: translateY(-1px);
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(248, 241, 234, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-link {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--clay);
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--clay);
}

.wordmark .ampersand {
  font-style: italic;
  color: var(--gold);
}

/* HERO */
.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(62, 42, 36, 0) 55%, rgba(62, 42, 36, 0.25) 100%);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrap:hover .hero-image {
  transform: scale(1.03);
}

/* Section labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label .dash {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* Treatment cards */
.treatment-card {
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(62, 42, 36, 0.22);
  border-color: rgba(184, 148, 102, 0.4);
}

.treatment-card .photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.treatment-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.treatment-card:hover .photo img {
  transform: scale(1.04);
}

/* Membership cards */
.tier-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 32px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 64px -36px rgba(62, 42, 36, 0.25);
}

.tier-card.featured {
  background: var(--clay);
  color: var(--ivory);
  border-color: var(--clay);
}

.tier-card.featured .tier-price,
.tier-card.featured .tier-name {
  color: var(--ivory);
}

.tier-card.featured .tier-perk-icon {
  color: var(--gold-soft);
}

.tier-card.featured .tier-divider {
  background: rgba(248, 241, 234, 0.18);
}

.tier-card .tier-name {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--clay);
}

.tier-card .tier-price {
  font-family: 'Fraunces', serif;
  font-size: 46px;
  color: var(--clay);
  line-height: 1;
}

.tier-divider {
  height: 1px;
  background: var(--line);
  margin: 22px 0;
}

.tier-perk-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Provider cards */
.provider-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.provider-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 6px;
}

.provider-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.provider-card:hover .provider-photo img {
  transform: scale(1.04);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  background: var(--mist);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Reviews */
.review-card {
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--clay);
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gold);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  padding-bottom: 28px;
  padding-right: 60px;
  color: var(--espresso);
  font-size: 15px;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--clay);
  color: var(--ivory);
}

.footer a {
  color: var(--ivory);
  opacity: 0.78;
  transition: opacity 0.25s ease;
}

.footer a:hover {
  opacity: 1;
}

.footer h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}

.newsletter-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(248, 241, 234, 0.3);
  color: var(--ivory);
  padding: 12px 0;
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(248, 241, 234, 0.45);
}

.newsletter-input:focus {
  border-bottom-color: var(--gold);
}

/* Trust strip */
.trust-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--espresso);
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.trust-logo:hover {
  opacity: 0.8;
}

.trust-logo.allcaps {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 13px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Journal cards */
.journal-card {
  display: block;
  cursor: pointer;
}

.journal-card .photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
}

.journal-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}

.journal-card:hover .photo img {
  transform: scale(1.04);
}

.journal-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--clay);
  line-height: 1.2;
  transition: color 0.25s ease;
}

.journal-card:hover h3 {
  color: var(--gold);
}

/* Quote mark */
.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
}

/* Hero stat */
.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  color: var(--clay);
  line-height: 1;
}

/* Utility */
.divider-gold {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 15px;
  color: var(--clay);
  outline: none;
  transition: border-color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  border-bottom-color: var(--gold);
}

.book-form label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  display: block;
  margin-bottom: 6px;
}

/* Hover image links */
.link-underline {
  position: relative;
  display: inline-block;
  color: var(--clay);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 4px;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--clay);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.link-underline:hover::after {
  transform-origin: left;
  transform: scaleX(0.6);
}

/* Small */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
  }
}

/* Active nav state */
.nav-link.is-active {
  color: var(--gold);
}

.nav-link.is-active::after {
  transform: scaleX(1);
  background: var(--gold);
}

/* Journal index */
.journal-hero-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ivory-soft);
}

@media (min-width: 1024px) {
  .journal-hero-card { grid-template-columns: 1.2fr 1fr; }
}

.journal-hero-card .photo {
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.journal-hero-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.journal-hero-card:hover .photo img {
  transform: scale(1.03);
}

.journal-hero-card .body {
  padding: 36px 36px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journal-hero-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  line-height: 1.1;
  color: var(--clay);
  margin-top: 18px;
}

@media (min-width: 1024px) {
  .journal-hero-card h2 { font-size: 48px; }
}

.journal-byline {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.journal-byline .dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.journal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.journal-filter {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.journal-filter:hover {
  border-color: var(--gold);
  color: var(--clay);
}

.journal-filter.is-active {
  background: var(--clay);
  color: var(--ivory);
  border-color: var(--clay);
}

.journal-subscribe {
  background: var(--clay);
  color: var(--ivory);
  border-radius: 8px;
  padding: 56px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .journal-subscribe { grid-template-columns: 1fr 1fr; gap: 48px; padding: 64px 56px; align-items: center; }
}

.journal-subscribe h3 {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  line-height: 1.1;
}

.journal-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.journal-pagination .page-num {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--espresso);
}

.journal-pagination .page-num.is-active {
  background: var(--clay);
  color: var(--ivory);
  border-color: var(--clay);
}

.journal-pagination .page-arrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
}

/* Article */
.article-hero {
  padding-top: 140px;
}

@media (min-width: 1024px) {
  .article-hero { padding-top: 180px; }
}

.article-body {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: var(--clay);
}

.article-body > p {
  margin-bottom: 22px;
}

.article-body h2 {
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 1.15;
  color: var(--clay);
  margin-top: 56px;
  margin-bottom: 18px;
}

.article-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--clay);
  margin-top: 36px;
  margin-bottom: 12px;
}

.article-body ul,
.article-body ol {
  margin: 12px 0 24px 24px;
}

.article-body ul li,
.article-body ol li {
  margin-bottom: 10px;
  padding-left: 8px;
}

.article-body ul li::marker {
  color: var(--gold);
}

.pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 30px;
  line-height: 1.3;
  color: var(--clay);
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 48px 0;
}

.pullquote-attr {
  display: block;
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
}

.article-callout {
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 32px;
  margin: 48px 0;
}

.article-callout .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.article-callout p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--clay);
  line-height: 1.45;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  margin: 32px auto 0 auto;
  max-width: 1100px;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-card {
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
  margin: 56px auto 0 auto;
  max-width: 720px;
}

.author-card .portrait {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  overflow: hidden;
}

.author-card .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--clay);
}

.continue-reading {
  background: var(--ivory-soft);
  padding-top: 80px;
  padding-bottom: 80px;
  margin-top: 80px;
}

/* Contact */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-split { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.contact-lane {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.contact-lane:last-child { border-bottom: 1px solid var(--line); }

.contact-lane .icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-lane h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--clay);
}

.contact-lane p {
  font-size: 14px;
  color: var(--espresso);
  margin-top: 2px;
}

.contact-lane a {
  font-size: 14px;
  color: var(--clay);
  margin-top: 6px;
  display: inline-block;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

.location-card {
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
}

.location-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--clay);
}

.location-card .meta {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-top: 14px;
}

/* Memberships page */
.perks-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.perks-table th,
.perks-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--clay);
  vertical-align: middle;
}

.perks-table thead th {
  background: var(--ivory-soft);
  font-family: 'Fraunces', serif;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.perks-table thead th:first-child {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 500;
}

.perks-table td.center,
.perks-table th.center {
  text-align: center;
}

.perks-table tr:last-child td { border-bottom: none; }

.perks-check { color: var(--gold); }
.perks-dash { color: rgba(62, 42, 36, 0.25); }

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.tier-detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}

.tier-detail-card.featured {
  background: var(--clay);
  color: var(--ivory);
}

.tier-detail-card.featured .tier-name,
.tier-detail-card.featured .tier-price,
.tier-detail-card.featured h4 {
  color: var(--ivory);
}

.tier-detail-card.featured .tier-best-for {
  color: rgba(248, 241, 234, 0.78);
}

.tier-detail-card.featured ul li {
  color: rgba(248, 241, 234, 0.88);
}

.tier-detail-card .tier-name {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: var(--clay);
}

.tier-detail-card .tier-price {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  color: var(--clay);
  line-height: 1;
}

.tier-best-for {
  font-size: 14px;
  color: var(--espresso);
  margin-top: 6px;
}

.member-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--clay);
}

.member-quote-attr {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
}

/* Mini-FAQ snippet */
.mini-faq summary {
  font-size: 18px;
  padding: 22px 0;
}

/* Inline tag */
.inline-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}


/* Monogram placeholders (replaces real-person photos) */
.provider-photo .mono,
.author-card .portrait .mono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #EBD3CB 0%, #C99E76 55%, #B89466 100%);
  color: #FFF8F0;
  font-family: 'Cormorant Garamond', 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.provider-photo .mono { font-size: clamp(56px, 8vw, 96px); }
.author-card .portrait .mono { font-size: 28px; }
