/* ============================================================
   Yasmeh GI — Design System
   Blush cream + rose-gold; refined, feminine, airy.
   Cormorant Garamond display + Inter body.
   ============================================================ */

:root {
  /* Palette (from her logo) */
  --cream: #F7EFE8;          /* page background */
  --cream-2: #FBF6F1;        /* cards / lighter panels */
  --blush: #F1E4DA;          /* soft band background */
  --blush-2: #E9D7C9;
  --rose: #D9B8A5;           /* soft rose accents */
  --copper: #B0785A;         /* primary accent — rose-gold/copper */
  --copper-deep: #96604426;  /* unused-safe */
  --copper-dark: #96604A;
  --terra: #A66A4F;          /* CTA hover depth */
  --taupe: #453B34;          /* body text, deep warm taupe */
  --taupe-2: #5C5047;
  --espresso: #362C26;       /* dark sections */
  --espresso-2: #453931;

  --line: rgba(69, 59, 52, 0.13);
  --line-strong: rgba(69, 59, 52, 0.26);
  --line-cream: rgba(247, 239, 232, 0.16);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--taupe);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.1;
  color: var(--taupe);
}
h1 { font-size: clamp(44px, 6.6vw, 96px); line-height: 1.04; font-weight: 500; }
h2 { font-size: clamp(34px, 4.6vw, 62px); }
h3 { font-size: clamp(24px, 2.6vw, 34px); }
h4 { font-size: 21px; }
em, .italic { font-style: italic; }

/* Eyebrow — wide-tracked caps echoing the logo's GASTROENTEROLOGY */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: currentColor; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ''; width: 30px; height: 1px; background: currentColor; }

.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 32px; }
.container-narrow { width: 100%; max-width: 860px; margin: 0 auto; padding: 0 32px; }
.lead { font-size: clamp(17px, 1.4vw, 21px); color: var(--taupe); opacity: 0.85; line-height: 1.65; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: background 0.3s var(--ease-out), backdrop-filter 0.3s, border-color 0.3s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247, 239, 232, 0.88);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line);
  padding-top: 11px; padding-bottom: 11px;
}
.nav-logo { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.nav-logo .mark { width: 44px; height: 44px; flex-shrink: 0; object-fit: cover; border-radius: 50%; border: 1px solid var(--line); }
.nav-logo .wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .wordmark b {
  font-family: var(--font-display);
  font-weight: 600; font-size: 21px; letter-spacing: 0.10em;
  color: var(--taupe); text-transform: uppercase;
}
.nav-logo .wordmark span {
  font-size: 9px; letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--copper); font-weight: 600; margin-top: 4px;
}
.nav-links { display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; margin-left: auto; }
.nav-links a { position: relative; padding: 6px 0; color: var(--taupe); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--copper); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--copper); transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--taupe); color: var(--cream);
  padding: 11px 22px; border-radius: 100px; font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--copper); transform: translateY(-1px); }
.nav-cta .arrow, .btn .arrow { transition: transform 0.3s var(--ease-out); }
.nav-cta:hover .arrow, .btn:hover .arrow { transform: translate(2px, -2px); }

/* Mobile menu */
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--taupe); border-radius: 2px; transition: transform 0.3s var(--ease-out), opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--cream);
  padding: 96px 32px 40px; display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform 0.4s var(--ease-out); overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display); font-size: 27px; font-weight: 500;
  color: var(--taupe); padding: 14px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 24px; justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--copper); color: var(--cream-2); }
.btn-primary:hover { background: var(--terra); transform: translateY(-2px); }
.btn-dark { background: var(--taupe); color: var(--cream); }
.btn-dark:hover { background: var(--copper); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--taupe); border: 1px solid var(--line-strong); }
.btn-secondary:hover { background: var(--taupe); color: var(--cream); border-color: var(--taupe); }
.btn-ghost-light { background: transparent; color: var(--cream); border: 1px solid var(--line-cream); }
.btn-ghost-light:hover { background: var(--cream); color: var(--taupe); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 165px 0 95px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 55% at 88% 12%, rgba(217, 184, 165, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 6% 95%, rgba(176, 120, 90, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 60%, var(--blush) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.12fr 0.88fr;
  gap: 56px; align-items: center;
}
.hero-text { max-width: 700px; }
.hero h1 .accent { color: var(--copper); font-style: italic; font-weight: 500; }
.hero-sub { margin-top: 28px; font-size: clamp(17px, 1.35vw, 20px); max-width: 560px; line-height: 1.65; opacity: 0.88; }
.hero-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 46px; display: flex; gap: 14px 32px;
  font-size: 13px; letter-spacing: 0.04em; flex-wrap: wrap;
}
.hero-meta div { display: flex; align-items: center; gap: 9px; }
.hero-meta strong { color: var(--taupe); font-weight: 700; }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }

.hero-art { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-art .hero-logo {
  width: min(430px, 92%); height: auto;
  border-radius: 28px;
  box-shadow: 0 30px 80px -35px rgba(69, 59, 52, 0.35);
  border: 1px solid rgba(176,120,90,0.18);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

.status-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(176, 120, 90, 0.10);
  border: 1px solid rgba(176, 120, 90, 0.25);
  color: var(--copper-dark);
  padding: 7px 16px 7px 13px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 26px;
}
.status-pill .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--copper); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(176,120,90,0.4); }
  50% { opacity: 0.7; transform: scale(1.25); box-shadow: 0 0 0 6px rgba(176,120,90,0); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap { background: var(--espresso); color: var(--cream); padding: 19px 0; overflow: hidden; }
.marquee { display: flex; gap: 56px; white-space: nowrap; width: max-content; animation: scroll-left 46s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-size: 23px; font-weight: 500; letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee span::after { content: '·'; color: var(--rose); font-size: 26px; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.section { padding: 118px 0; }
.section.cream { background: var(--cream); }
.section.blush { background: var(--blush); }
.section.dark { background: var(--espresso); color: var(--cream); }
.section.dark h2, .section.dark h3, .section.dark h4 { color: var(--cream); }
.section.dark .eyebrow { color: var(--rose); }
.section.dark .lead { color: rgba(247,239,232,0.82); }

.section-head { display: grid; grid-template-columns: 1fr 1.25fr; gap: 48px; align-items: end; margin-bottom: 62px; }
.section-head h2 { margin-top: 14px; }
.section-head.center {
  grid-template-columns: 1fr; text-align: center; max-width: 760px;
  margin-left: auto; margin-right: auto; margin-bottom: 54px;
}
/* — · — ornament under centered headings, echoing the logo lockup divider */
.section-head.center h2::after {
  content: '';
  display: block;
  width: 84px; height: 9px;
  margin: 22px auto 0;
  background:
    radial-gradient(circle, var(--copper) 1.8px, transparent 2.4px) center / 9px 9px no-repeat,
    linear-gradient(var(--line-strong), var(--line-strong)) left center / 30px 1px no-repeat,
    linear-gradient(var(--line-strong), var(--line-strong)) right center / 30px 1px no-repeat;
}
.section.dark .section-head.center h2::after {
  background:
    radial-gradient(circle, var(--rose) 1.8px, transparent 2.4px) center / 9px 9px no-repeat,
    linear-gradient(var(--line-cream), var(--line-cream)) left center / 30px 1px no-repeat,
    linear-gradient(var(--line-cream), var(--line-cream)) right center / 30px 1px no-repeat;
}

/* ============================================================
   SPLIT / STORY
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.wide-left { grid-template-columns: 1.1fr 0.9fr; }
.story-card {
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: 24px; padding: 42px;
  box-shadow: 0 26px 70px -40px rgba(69,59,52,0.35);
}
.story-card .quote {
  font-family: var(--font-display); font-size: clamp(23px, 2.4vw, 31px);
  font-style: italic; font-weight: 500; line-height: 1.4; color: var(--taupe);
}
.story-card .byline { margin-top: 26px; display: flex; align-items: center; gap: 14px; font-size: 14px; }
.story-card .byline .avatar {
  width: 54px; height: 54px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--rose);
}
.story-card .byline .avatar img { width: 100%; height: 100%; object-fit: cover; }
.story-card .byline b { color: var(--taupe); display: block; }
.story-card .byline span { opacity: 0.7; }

.feature-list { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.feature-row { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.feature-row:last-child { border-bottom: none; padding-bottom: 0; }
.feature-row .ico {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(176,120,90,0.10);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-row .ico svg { width: 22px; height: 22px; stroke: var(--copper); fill: none; stroke-width: 1.5; }
.feature-row h4 { color: var(--taupe); margin-bottom: 5px; font-size: 20px; }
.feature-row p { font-size: 15px; opacity: 0.82; line-height: 1.6; }

/* ============================================================
   CARDS
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: 22px; padding: 36px 30px 30px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; min-height: 270px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.3s;
}
a.card:hover { transform: translateY(-6px); box-shadow: 0 28px 64px -30px rgba(69,59,52,0.35); border-color: var(--rose); }
.card .card-ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--taupe);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.card .card-ico svg {
  width: 27px; height: 27px; stroke: var(--cream); fill: none;
  stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.45s var(--ease-out);
}
a.card:hover .card-ico { background: var(--copper); }
a.card:hover .card-ico svg { transform: scale(1.14) rotate(-5deg); }
.card .card-num { font-size: 11px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--copper); }
.card h3 { font-size: 26px; color: var(--taupe); }
.card p { font-size: 15px; line-height: 1.6; opacity: 0.82; margin-top: auto; }
.card .card-link { font-size: 14px; font-weight: 600; color: var(--copper); display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; }
a.card:hover .card-link .arrow { transform: translate(3px, -3px); }
.card .card-link .arrow { transition: transform 0.3s var(--ease-out); }

/* ============================================================
   STATS
   ============================================================ */
.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-cream);
  border: 1px solid var(--line-cream); border-radius: 20px; overflow: hidden;
}
.stat { background: var(--espresso); padding: 38px 28px; display: flex; flex-direction: column; gap: 6px; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(46px, 5vw, 66px); font-weight: 500; line-height: 1; color: var(--cream);
}
.stat .num small { color: var(--rose); font-size: 0.45em; margin-left: 3px; }
.stat .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.26em; color: var(--rose); font-weight: 600; margin-top: 10px; }
.stat .desc { font-size: 13.5px; opacity: 0.78; line-height: 1.55; color: var(--cream); }

.cred-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.cred-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: 100px; padding: 10px 20px;
  font-size: 14px; font-weight: 500; color: var(--taupe);
}
.cred-chip svg { width: 15px; height: 15px; stroke: var(--copper); fill: none; stroke-width: 2; }
.section.dark .cred-chip { background: transparent; border-color: var(--line-cream); color: var(--cream); }

/* ============================================================
   PAGE HERO (inner)
   ============================================================ */
.page-hero {
  padding: 155px 0 66px;
  background:
    radial-gradient(ellipse 55% 60% at 90% 0%, rgba(217,184,165,0.20) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { max-width: 640px; margin-top: 22px; }
.breadcrumb { display: flex; gap: 9px; align-items: center; font-size: 13px; opacity: 0.7; margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb .sep { opacity: 0.5; }

/* ============================================================
   PROSE
   ============================================================ */
.prose { max-width: 720px; }
.prose > * + * { margin-top: 20px; }
.prose h2 { font-size: clamp(30px, 3.2vw, 42px); margin-top: 50px; }
.prose h3 { font-size: 26px; margin-top: 36px; color: var(--taupe); }
.prose p { line-height: 1.75; opacity: 0.92; }
.prose ul.bullets { display: flex; flex-direction: column; gap: 12px; padding-left: 4px; }
.prose ul.bullets li { position: relative; padding-left: 32px; line-height: 1.65; }
.prose ul.bullets li::before {
  content: ''; position: absolute; left: 0; top: 5px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--copper);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.5l3 3 5-6' fill='none' stroke='%23FBF6F1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.prose a.inline, .prose a[href] { color: var(--copper); font-weight: 600; }

.quick-answer {
  background: var(--blush);
  border-left: 3px solid var(--copper);
  border-radius: 0 18px 18px 0;
  padding: 26px 30px; margin: 8px 0;
}
.quick-answer .qa-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.26em; color: var(--copper-dark); font-weight: 700; margin-bottom: 10px; }
.quick-answer p { font-size: 17px; line-height: 1.65; color: var(--taupe); }

.article-grid { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.aside-card {
  position: sticky; top: 100px;
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: 22px; padding: 30px;
  display: flex; flex-direction: column; gap: 18px;
}
.aside-card h4 { color: var(--taupe); font-size: 22px; }
.aside-card .aside-row { display: flex; flex-direction: column; gap: 3px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.aside-card .aside-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.aside-card .aside-row small { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--copper); font-weight: 700; }
.aside-card .aside-row a, .aside-card .aside-row span { font-size: 15px; font-weight: 500; color: var(--taupe); }
.aside-card .aside-row a:hover { color: var(--copper); }
.aside-portrait {
  width: 100%; height: auto; aspect-ratio: 1 / 1;
  object-fit: cover; object-position: center 20%;
  border-radius: 18px; border: 1px solid var(--line); margin-bottom: 6px;
}
.figure { margin: 30px 0; }
.figure img {
  display: block; width: 100%; height: auto; max-height: 460px;
  object-fit: cover; object-position: center 30%;
  border-radius: 20px; border: 1px solid var(--line);
  box-shadow: 0 22px 55px -32px rgba(69,59,52,0.45);
}
.figure figcaption { font-size: 13px; opacity: 0.62; margin-top: 12px; text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; max-width: 840px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); padding: 22px 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--font-display); font-size: clamp(20px, 2vw, 25px); font-weight: 500;
  color: var(--taupe); list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(176,120,90,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.3s, transform 0.3s; font-size: 18px; color: var(--copper);
  font-family: var(--font-body);
}
.faq-item[open] .faq-toggle { background: var(--copper); color: var(--cream-2); transform: rotate(45deg); }
.faq-a { font-size: 16px; line-height: 1.75; opacity: 0.87; margin-top: 14px; max-width: 94%; }
.faq-item[open] .faq-a { animation: faqIn 0.4s var(--ease-out); }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 0.87; transform: translateY(0); }
}
.faq-a p + p { margin-top: 12px; }
.faq-cat {
  font-family: var(--font-display); font-size: clamp(26px, 2.6vw, 34px);
  color: var(--copper-dark); margin: 54px 0 10px; font-style: italic;
}
.faq-cat:first-of-type { margin-top: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-inner > * { min-width: 0; }
.field input, .field select, .field textarea { min-width: 0; max-width: 100%; }
.contact-form {
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: 24px; padding: 38px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 30px 70px -36px rgba(69,59,52,0.32);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.20em; opacity: 0.65; font-weight: 600; }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 16px; padding: 12px 0;
  background: transparent; border: none; border-bottom: 1px solid var(--line-strong);
  color: var(--taupe); outline: none; transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--copper); }
.field textarea { min-height: 96px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-meta { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.contact-meta-item h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.24em; color: var(--copper); margin-bottom: 6px; font-weight: 700; }
.contact-meta-item a, .contact-meta-item p {
  font-family: var(--font-display); font-size: 23px; font-weight: 500; color: var(--taupe); line-height: 1.3;
  overflow-wrap: anywhere;
}
.contact-meta-item a:hover { color: var(--copper); }
.contact-meta-item .sub { font-family: var(--font-body); font-size: 13px; opacity: 0.6; font-weight: 400; }

.disclaimer {
  background: var(--blush); border-radius: 16px; padding: 18px 22px;
  font-size: 13px; line-height: 1.6; opacity: 0.85;
}
.disclaimer strong { color: var(--taupe); }

.cta-band {
  background: var(--espresso); color: var(--cream);
  border-radius: 30px; padding: 66px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -130px; right: -90px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(217,184,165,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--cream); position: relative; }
.cta-band p { color: rgba(247,239,232,0.82); max-width: 540px; margin: 18px auto 0; position: relative; }
.cta-band .hero-cta { justify-content: center; position: relative; }

/* ============================================================
   BLOG
   ============================================================ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: var(--cream-2); border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 28px 64px -30px rgba(69,59,52,0.35); }
.post-card .post-banner {
  height: 150px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose) 100%);
  display: flex; align-items: center; justify-content: center;
}
.post-card .post-banner svg { width: 54px; height: 54px; stroke: var(--copper-dark); fill: none; stroke-width: 1.3; }
.post-card .post-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-card .post-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--copper); font-weight: 700; }
.post-card h3 { font-size: 24px; line-height: 1.2; }
.post-card p { font-size: 14.5px; opacity: 0.8; line-height: 1.6; }
.post-card .post-meta { margin-top: auto; font-size: 13px; opacity: 0.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--espresso); color: var(--cream); padding: 86px 0 30px; position: relative; overflow: hidden; }
.footer h2 { color: var(--cream); }
.footer-top { display: grid; grid-template-columns: 1.4fr auto; gap: 48px; align-items: end; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px;
  margin-top: 70px; padding-bottom: 52px; border-bottom: 1px solid var(--line-cream);
}
.footer-col h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.26em; color: var(--rose); margin-bottom: 18px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer-col a { opacity: 0.85; }
.footer-col a:hover { opacity: 1; color: var(--rose); }
.footer-brand p { font-size: 16px; line-height: 1.6; max-width: 340px; opacity: 0.8; margin-top: 16px; }
.footer .nav-logo .wordmark b { color: var(--cream); }
.footer-bottom {
  margin-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 12.5px; color: rgba(247,239,232,0.6); flex-wrap: wrap;
}
.footer-bottom .legal { max-width: 680px; line-height: 1.5; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-child > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-child.in > * { opacity: 1; transform: translateY(0); }
.reveal-child.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-child.in > *:nth-child(2) { transition-delay: 0.11s; }
.reveal-child.in > *:nth-child(3) { transition-delay: 0.17s; }
.reveal-child.in > *:nth-child(4) { transition-delay: 0.23s; }
.reveal-child.in > *:nth-child(5) { transition-delay: 0.29s; }
.reveal-child.in > *:nth-child(6) { transition-delay: 0.35s; }
.reveal-child.in > *:nth-child(7) { transition-delay: 0.41s; }
.reveal-child.in > *:nth-child(8) { transition-delay: 0.47s; }
.reveal-child.in > *:nth-child(9) { transition-delay: 0.53s; }
.reveal-child.in > *:nth-child(10) { transition-delay: 0.59s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { order: -1; max-width: 340px; margin: 0 auto; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .split, .split.wide-left { grid-template-columns: 1fr; gap: 40px; }
  .card-grid, .card-grid.four { grid-template-columns: 1fr 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: 1fr; gap: 40px; }
  .aside-card { position: static; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .post-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav > .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 84px 0; }
  .card-grid, .card-grid.two, .card-grid.four, .post-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 46px 28px; }
  .container, .container-narrow { padding: 0 22px; }
  .hero { padding: 135px 0 72px; }
  .stat-band { grid-template-columns: 1fr 1fr; }
}
/* ============================================================
   PREMIUM POLISH LAYER
   ============================================================ */

/* Page entrance */
body { animation: pageIn 0.7s ease both; }
@keyframes pageIn { from { opacity: 0.001; } to { opacity: 1; } }

/* Paper-grain texture (very subtle, site-wide) */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 2000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.28 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* Metallic rose-gold accent (echoes the embossed logo foil) */
.hero h1 .accent {
  background: linear-gradient(108deg, #A66A4F 0%, #D8A98B 32%, #96604A 58%, #CE9877 82%, #A66A4F 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  padding-right: 0.05em;
}

/* Hero entrance choreography */
.hero-text > * { opacity: 0; transform: translateY(26px); animation: riseIn 0.9s var(--ease-out) forwards; }
.hero-text > *:nth-child(1) { animation-delay: 0.08s; }
.hero-text > *:nth-child(2) { animation-delay: 0.22s; }
.hero-text > *:nth-child(3) { animation-delay: 0.40s; }
.hero-text > *:nth-child(4) { animation-delay: 0.55s; }
.hero-text > *:nth-child(5) { animation-delay: 0.68s; }
@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }

/* Ghost monogram watermark behind hero */
.hero::after {
  content: '';
  position: absolute; left: -180px; bottom: -160px;
  width: 640px; height: 640px;
  background: url('images/yasmeh-mark.png') center / contain no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.16;
  pointer-events: none;
}

/* Flowing line divider — draws itself on scroll */
.flow-divider { overflow: hidden; line-height: 0; padding: 30px 0 10px; }
.flow-divider svg { width: min(860px, 88%); margin: 0 auto; display: block; overflow: visible; }
.flow-divider .flow-path {
  fill: none; stroke: var(--copper); stroke-width: 1.6; stroke-linecap: round;
  opacity: 0.55;
  stroke-dasharray: 1400; stroke-dashoffset: 1400;
  transition: stroke-dashoffset 2.2s var(--ease-out);
}
.flow-divider .flow-bloom { fill: var(--copper); opacity: 0; transition: opacity 0.6s ease 1.9s; }
.flow-divider.drawn .flow-path { stroke-dashoffset: 0; }
.flow-divider.drawn .flow-bloom { opacity: 0.75; }

/* Editorial ghost numerals on cards */
.card { overflow: hidden; }
.card .card-index {
  position: absolute; top: 6px; right: 16px;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 74px; line-height: 1; color: var(--copper);
  opacity: 0.13; pointer-events: none;
  transition: opacity 0.35s, transform 0.45s var(--ease-out);
}
a.card:hover .card-index { opacity: 0.24; transform: translateY(-3px); }

/* Arched portrait frames with double copper keyline */
.aside-portrait {
  aspect-ratio: 1 / 1.12;
  border-radius: 999px 999px 22px 22px;
  border: none;
  box-shadow:
    0 0 0 1px rgba(176,120,90,0.35),
    0 0 0 8px var(--cream-2),
    0 0 0 9px rgba(176,120,90,0.28),
    0 24px 50px -28px rgba(69,59,52,0.45);
  margin: 10px 10px 16px;
  width: calc(100% - 20px);
}
.story-card .byline .avatar { box-shadow: 0 0 0 1px var(--cream-2), 0 0 0 3px rgba(176,120,90,0.45); border-color: transparent; }

/* Pull-quote band */
.pull-quote { text-align: center; position: relative; }
.pull-quote .mark-glyph {
  font-family: var(--font-display); font-style: italic;
  font-size: 120px; line-height: 0.4; color: var(--rose); display: block; margin-bottom: 34px;
}
.pull-quote blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(26px, 3.6vw, 46px); line-height: 1.35; color: var(--taupe);
  max-width: 20ch; margin: 0 auto;
}
.pull-quote cite {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 30px; font-style: normal; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.30em; font-weight: 600; color: var(--copper);
}
.pull-quote cite::before, .pull-quote cite::after { content: ''; width: 30px; height: 1px; background: currentColor; }

/* Footer sign-off */
.footer-sign {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(34px, 5vw, 64px); line-height: 1.1; color: var(--cream);
  margin-bottom: 56px;
}
.footer-sign .fs-accent { color: var(--rose); }

/* Luxury micro-details */
::selection { background: rgba(176, 120, 90, 0.28); color: var(--espresso); }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 4px; }
html { scrollbar-width: thin; scrollbar-color: var(--rose) transparent; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--rose), var(--copper)); border-radius: 100px; border: 2px solid var(--cream); }
.btn-primary {
  background: linear-gradient(135deg, #C08668 0%, #A66A4F 100%);
  box-shadow: 0 12px 26px -14px rgba(150, 96, 74, 0.55);
}
.btn-primary:hover { box-shadow: 0 18px 34px -14px rgba(150, 96, 74, 0.65); }
.nav-cta { box-shadow: 0 8px 20px -12px rgba(54, 44, 38, 0.5); }

@media (max-width: 760px) {
  .hero::after { width: 420px; height: 420px; left: -140px; bottom: -120px; }
  .card .card-index { font-size: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero-text > * { opacity: 1; transform: none; }
  .flow-divider .flow-path { stroke-dashoffset: 0; }
  .flow-divider .flow-bloom { opacity: 0.75; }
}
