/* ============================================================
   trwn — Marketing site
   Hand-crafted CSS grounded in the trwn Design System.
   Tokens mirror the design system's colors_and_type.css.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Nunito:wght@200;300;400;500;600;700&display=swap');

:root {
  /* Brand */
  --sand:        #C4A882;
  --sand-light:  #D4C4A8;
  --sand-pale:   #EDE6D8;
  --blush:       #D4A0A0;
  --blush-light: #E8C4C4;
  --blush-pale:  #F5E6E6;
  --charcoal:    #2D2926;
  --accent:      #8B7355;
  --sage:        #A8B5A0;
  --goud:        #CFAC48;

  /* Surfaces */
  --warm-white:  #FAF7F2;
  --wit:         #FEFAF5;
  --cream:       #F5F0E8;
  --surface:     #FFFFFF;

  /* Text */
  --ink:         #2D2926;
  --warm-gray:   #6B635B;
  --light-gray:  #B8B0A6;

  /* Functional — primary accent is tweakable */
  --primary:     var(--goud);
  --primary-deep:var(--accent);

  --gradient-hero:  linear-gradient(150deg, var(--cream) 0%, var(--blush-pale) 48%, var(--sand-pale) 100%);
  --gradient-blush: linear-gradient(145deg, #FAE9E9 0%, #DDC6C6 45%, #D4C4A8 100%);
  --gradient-gold-rule: linear-gradient(to right, transparent, var(--sand), transparent);

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --tracking-wide:   0.1em;
  --tracking-wider:  0.18em;
  --tracking-widest: 0.32em;

  --radius-sm:  8px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 8px rgba(45,41,38,0.05);
  --shadow-md: 0 4px 16px rgba(45,41,38,0.06);
  --shadow-lg: 0 18px 60px rgba(45,41,38,0.10);
  --shadow-xl: 0 30px 90px rgba(45,41,38,0.14);
  --shadow-focus: 0 0 0 3px rgba(196,168,130,0.22);

  --maxw: 1200px;
  --pad-x: clamp(22px, 5vw, 72px);
  --pad-y: clamp(72px, 11vw, 132px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--wit);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--primary); color: #fff; }

img { max-width: 100%; display: block; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.08; color: var(--ink); }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--primary);
  display: inline-block;
}

.serif-italic { font-style: italic; font-weight: 400; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--warm-gray);
  line-height: 1.85;
  font-weight: 300;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding-top: var(--pad-y); padding-bottom: var(--pad-y); }

.section-head { text-align: center; max-width: 620px; margin: 0 auto clamp(48px, 6vw, 80px); }
.section-head h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin: 18px 0 0; letter-spacing: -0.01em; }
.section-head h2.nowrap-head { white-space: nowrap; font-size: clamp(1.3rem, 3.5vw, 3rem); }
.section-head p { margin-top: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500;
  padding: 15px 32px; border-radius: var(--radius-pill);
  cursor: pointer; border: 1px solid transparent; text-decoration: none;
  transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--charcoal); color: #fff; }
.btn-primary:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(207,172,72,0.30); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--sand); }
.btn-outline:hover { background: var(--sand-pale); transform: translateY(-2px); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--accent); padding: 12px 4px; }
.btn-ghost .arrow { transition: transform .3s ease; }
.btn-ghost:hover .arrow { transform: translateX(6px); }
.btn-light { background: #fff; color: var(--charcoal); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(254,250,245,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,196,168,0.28);
  transition: box-shadow .4s ease, background .4s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(254,250,245,0.94); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; text-decoration: none; }
.brand-mark { height: 38px; width: auto; }
.brand-logo { height: 46px; width: auto; display: block; }
.brand-word { font-family: var(--font-serif); font-weight: 500; font-size: 1.85rem; letter-spacing: 0.02em; color: var(--charcoal); line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--tracking-wider);
  color: var(--warm-gray); text-decoration: none; transition: color .25s ease;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-login {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--tracking-wider);
  color: var(--warm-gray); text-decoration: none;
}
.nav-login:hover { color: var(--primary); }
.nav-btn { font-size: 0.92rem; padding: 11px 24px; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--charcoal); padding: 6px; }

.mobile-menu { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 168px 0 90px; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--gradient-hero); opacity: 0.55; z-index: -2; }
.ring-motif { position: absolute; pointer-events: none; opacity: 0.5; z-index: -1; }
.ring-motif svg { width: 100%; height: 100%; }
.ring-1 { width: 520px; height: 347px; top: 40px; left: -120px; animation: float 11s ease-in-out infinite; }
.ring-2 { width: 680px; height: 453px; top: 120px; right: -180px; opacity: 0.32; animation: float 13s ease-in-out infinite reverse; }
.ring-3 { width: 360px; height: 240px; bottom: -40px; left: 18%; opacity: 0.28; animation: float 9s ease-in-out infinite; }

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(3deg); }
}

.hero-inner { position: relative; max-width: 880px; margin: 0 auto; z-index: 2; }
.hero h1 {
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  line-height: 1.02; letter-spacing: -0.015em; margin: 26px 0 0; font-weight: 400;
}
.hero h1 .accent { color: var(--blush); font-style: italic; font-weight: 400; }
.hero .lead { max-width: 600px; margin: 28px auto 0; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.hero-trust {
  margin-top: 30px; font-size: 0.74rem; letter-spacing: var(--tracking-wide);
  text-transform: uppercase; color: var(--light-gray); font-weight: 600;
}
.hero-trust strong { color: var(--accent); font-weight: 700; }

/* Product mockup window */
.mockup {
  position: relative; max-width: 1040px; margin: clamp(48px,7vw,84px) auto 0;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid rgba(212,196,168,0.4);
  background: #fff; z-index: 2;
}
.mockup-bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 18px;
  background: var(--cream); border-bottom: 1px solid var(--sand-pale);
}
.mockup-bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--sand-light); display: block; }
.mockup-bar span:nth-child(2) { background: var(--blush-light); }
.mockup-bar span:nth-child(3) { background: var(--sage); }
.mockup-bar .url {
  margin-left: 14px; font-family: var(--font-sans); font-size: 0.72rem;
  letter-spacing: 0.08em; color: var(--light-gray);
}
.mockup img { width: 100%; display: block; }

/* ---------- Marquee divider ---------- */
.divider-line { text-align: center; padding: clamp(48px,7vw,72px) 0 0; }
.divider-line .rule { height: 1px; background: var(--gradient-gold-rule); max-width: 280px; margin: 0 auto; }

/* ---------- Features ---------- */
.section-cream { background: linear-gradient(180deg, var(--wit), var(--cream)); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--sand-pale); border: 1px solid var(--sand-pale);
  border-radius: var(--radius-lg); overflow: hidden;
}
.feature {
  background: var(--surface); padding: clamp(30px,3.5vw,46px) clamp(26px,3vw,40px);
  transition: background .4s ease, transform .4s ease;
}
.feature:hover { background: var(--wit); }
.feature .icon {
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 22px;
}
.feature .icon svg { width: 30px; height: 30px; stroke-width: 1.4; }
.feature .num {
  font-family: var(--font-serif); font-size: 0.9rem; color: var(--blush);
  letter-spacing: 0.1em; display: block; margin-bottom: 6px;
}
.feature h3 { font-size: 1.6rem; font-weight: 500; margin-bottom: 12px; }
.feature p { font-size: 0.95rem; color: var(--warm-gray); line-height: 1.75; }

/* ---------- Showcase (alternating screenshots) ---------- */
.showcase { display: flex; flex-direction: column; gap: clamp(72px, 9vw, 120px); }
.showcase-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.showcase-row.reverse .showcase-text { order: 2; }
.showcase-text .eyebrow { color: var(--blush); }
.showcase-text h3 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); font-weight: 400; margin: 16px 0 18px; letter-spacing: -0.01em; }
.showcase-text p { color: var(--warm-gray); font-size: 1.02rem; line-height: 1.85; max-width: 460px; }
.showcase-list { list-style: none; margin: 26px 0 0; display: flex; flex-direction: column; gap: 14px; }
.showcase-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 0.98rem; color: var(--ink); }
.showcase-list svg { width: 19px; height: 19px; color: var(--primary); flex-shrink: 0; margin-top: 3px; stroke-width: 1.6; }
.showcase-img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand-pale); position: relative;
}
.showcase-img::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5); pointer-events: none;
}

/* ---------- For who ---------- */
.section-dark { background: var(--charcoal); color: #fff; position: relative; overflow: hidden; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-head p { color: rgba(250,247,242,0.7); }
.forwho-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 36px); }
.forwho-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(212,196,168,0.22);
  border-radius: var(--radius-lg); padding: clamp(34px,4vw,52px);
  transition: transform .4s ease, border-color .4s ease, background .4s ease;
}
.forwho-card:hover { transform: translateY(-4px); border-color: rgba(207,172,72,0.5); background: rgba(255,255,255,0.06); }
.forwho-card .tag {
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: var(--tracking-wider); color: var(--sand); margin-bottom: 18px; display: block;
}
.forwho-card h3 { font-size: clamp(1.9rem,3vw,2.5rem); font-weight: 400; margin-bottom: 14px; }
.forwho-card p { color: rgba(250,247,242,0.66); font-size: 0.98rem; margin-bottom: 26px; }
.forwho-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.forwho-list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(250,247,242,0.86); font-size: 0.96rem; }
.forwho-list svg { width: 18px; height: 18px; color: var(--sand); flex-shrink: 0; margin-top: 3px; stroke-width: 1.6; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); position: relative; }
.step { text-align: center; }
.step .step-num {
  width: 70px; height: 70px; margin: 0 auto 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.9rem; color: var(--primary);
  border: 1px solid var(--sand); background: var(--wit);
}
.step h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 12px; }
.step p { color: var(--warm-gray); font-size: 0.96rem; max-width: 300px; margin: 0 auto; }

/* ---------- Guest site / RSVP feature (full bleed) ---------- */
.guest-feature { position: relative; overflow: hidden; }
.guest-feature .showcase-row { align-items: center; }
.guest-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }

/* ---------- Pricing ---------- */
.pricing-tabs { display: flex; justify-content: center; margin-bottom: 56px; }
.pricing-toggle {
  display: inline-flex; background: var(--surface); border: 1px solid var(--sand-pale);
  border-radius: var(--radius-pill); padding: 5px; box-shadow: var(--shadow-sm);
}
.pricing-toggle button {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: var(--tracking-wider); padding: 12px 30px; border: 0; border-radius: var(--radius-pill);
  background: transparent; color: var(--light-gray); cursor: pointer; transition: all .3s ease;
}
.pricing-toggle button.active { background: var(--charcoal); color: #fff; }

.pricing-panel { display: none; }
.pricing-panel.active { display: block; animation: fadeUp .5s ease both; }
.note-hint { text-align: center; font-size: 0.85rem; color: var(--warm-gray); margin-bottom: 40px; }

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.plan {
  background: var(--surface); border: 1px solid var(--sand-pale); border-radius: var(--radius-lg);
  padding: 34px 28px; display: flex; flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.plan.featured { border: 1.5px solid var(--blush); box-shadow: var(--shadow-lg); position: relative; }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blush); color: #fff; font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: var(--tracking-wider);
  padding: 6px 18px; border-radius: var(--radius-pill); white-space: nowrap;
}
.plan-name { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 500; margin-bottom: 6px; }
.plan.featured .plan-name { color: var(--blush); }
.plan-price { font-family: var(--font-serif); font-size: 2.6rem; color: var(--ink); margin-bottom: 4px; }
.plan-price small { font-family: var(--font-sans); font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--light-gray); }
.plan-sub { font-size: 0.82rem; color: var(--warm-gray); min-height: 38px; margin-bottom: 22px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; flex: 1; }
.plan ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--ink); line-height: 1.45; }
.plan ul li svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 3px; stroke-width: 1.8; }
.plan ul li.muted { color: var(--light-gray); }
.plan ul li.hr { display: block; height: 1px; background: var(--sand-pale); margin: 4px 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--sand-pale); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; transition: border-color .3s ease; }
.faq-item.open { border-color: var(--sand); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 28px; background: none; border: 0; cursor: pointer; text-align: left; }
.faq-q h4 { font-size: 1.3rem; font-weight: 500; }
.faq-icon { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 300; color: var(--primary); transition: transform .35s ease; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s ease; }
.faq-a-inner { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0 28px 26px; color: var(--warm-gray); font-size: 0.98rem; line-height: 1.8; }

/* ---------- Final CTA ---------- */
.final-cta { position: relative; text-align: center; overflow: hidden; background: var(--gradient-blush); }
.final-cta .wrap { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 400; letter-spacing: -0.01em; }
.final-cta .serif-italic { color: var(--accent); }
.final-cta p { max-width: 480px; margin: 24px auto 38px; color: var(--accent); font-size: 1.08rem; }
.final-cta .ring-motif { opacity: 0.4; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(250,247,242,0.7); padding: clamp(64px,8vw,96px) 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 52px; width: auto; margin-bottom: 20px; }
.footer-lockup { margin-bottom: 22px; }
.footer-logo { height: 50px; width: auto; display: block; }
.footer-brand p { font-size: 0.92rem; line-height: 1.8; max-width: 300px; color: rgba(250,247,242,0.6); }
.footer-col h5 { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-wider); color: var(--sand); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-col a { color: rgba(250,247,242,0.68); text-decoration: none; font-size: 0.92rem; transition: color .25s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 32px; }
.footer-bottom p { font-size: 0.74rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: rgba(250,247,242,0.4); }
.footer-bottom .tagline { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; text-transform: none; letter-spacing: 0; color: var(--sand); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ring-motif { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-links, .nav-cta .nav-login { display: none; }
  .menu-toggle { display: block; }
  .showcase-row { grid-template-columns: 1fr; gap: 36px; }
  .showcase-row.reverse .showcase-text { order: 0; }
  .forwho-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .mobile-menu {
    display: none; position: absolute; top: 78px; left: 0; width: 100%;
    background: var(--wit); border-bottom: 1px solid var(--sand-pale); box-shadow: var(--shadow-md);
    padding: 24px var(--pad-x); flex-direction: column; gap: 4px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 14px 0; font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: var(--tracking-wider); color: var(--charcoal); text-decoration: none;
    border-bottom: 1px solid var(--sand-pale);
  }
  .mobile-menu a.cta {
    border: 0; margin-top: 10px;
    background: var(--charcoal); color: #fff;
    justify-content: center; padding: 14px 24px;
    border-radius: var(--radius-pill); text-transform: none;
  }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .mockup-bar .url { display: none; }
}

/* ============================================================
   SUBPAGE STYLES (voor-bruidsparen / voor-weddingplanners)
   ============================================================ */

/* Breadcrumb */
.breadcrumb { font-size: 0.72rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--light-gray); font-weight: 600; }
.breadcrumb a { color: var(--warm-gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 8px; color: var(--sand-light); }

/* Audience hero */
.aud-hero { position: relative; padding: 156px 0 0; overflow: hidden; }
.aud-hero .hero-bg { opacity: 0.5; }
.aud-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.aud-hero-inner.center { margin: 0 auto; text-align: center; }
.aud-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.04; letter-spacing: -0.015em; margin: 20px 0 0; }
.aud-hero h1 .accent { color: var(--blush); font-style: italic; }
.aud-hero .lead { margin-top: 24px; max-width: 560px; }
.aud-hero-inner.center .lead { margin-left: auto; margin-right: auto; }
.aud-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.aud-hero-inner.center .aud-hero-actions { justify-content: center; }

/* Value rows (icon + text list, big) */
.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 52px); }
.value { display: flex; gap: 20px; align-items: flex-start; }
.value .v-icon {
  width: 54px; height: 54px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--sand-pale); color: var(--primary-deep);
}
.value .v-icon svg { width: 26px; height: 26px; stroke-width: 1.5; }
.value h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 8px; }
.value p { font-size: 0.96rem; color: var(--warm-gray); line-height: 1.75; }

/* Stat band */
.stat-band { background: var(--charcoal); color: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px,4vw,48px); text-align: center; }
.stat .stat-num { font-family: var(--font-serif); font-size: clamp(2.8rem,5vw,4rem); color: var(--sand); line-height: 1; }
.stat .stat-label { margin-top: 12px; font-size: 0.78rem; letter-spacing: var(--tracking-wider); text-transform: uppercase; color: rgba(250,247,242,0.7); font-weight: 600; }

/* Cross-link card (link to the other audience page) */
.crosslink { background: var(--gradient-blush); text-align: center; }
.crosslink h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 400; color: var(--charcoal); }
.crosslink p { color: var(--accent); margin: 16px auto 30px; max-width: 460px; }

@media (max-width: 820px) {
  .value-list { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (max-width: 560px) {
  /* compact, well-separated stat band on phones */
  .stat-band { padding-top: 40px; padding-bottom: 40px; margin-top: 28px; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .stat .stat-num { font-size: 2.3rem; }
  .stat .stat-label { font-size: 0.6rem; letter-spacing: var(--tracking-wide); margin-top: 8px; }
  /* hero CTAs stack full-width on phones */
  .aud-hero-actions { flex-direction: column; align-items: stretch; }
  .aud-hero-actions .btn { width: 100%; }
  .aud-hero { padding-top: 128px; }
  .aud-hero .mockup { margin-top: 40px !important; }
  /* no floating ring motif behind the hero on phones */
  .aud-hero .ring-motif { display: none; }
}

/* ============================================================
   GATEWAY / CHOICE SCREEN (index.html)
   ============================================================ */
.gateway {
  height: 100vh; height: 100dvh; min-height: 560px;
  display: flex; position: relative; overflow: hidden;
  background: var(--wit);
}

.gw-brand {
  position: absolute; top: clamp(16px, 2.6vh, 26px); left: clamp(16px, 2vw, 30px); z-index: 30;
  display: flex; align-items: center; text-decoration: none;
}
.gw-brand img { height: clamp(40px, 4.6vw, 56px); width: auto; display: block; }

/* floating ring motifs — diagonally tucked into bottom-left + top-right corners */
.gw-ring { position: absolute; pointer-events: none; z-index: 4; opacity: .62; }
.gw-ring svg { width: 100%; height: 100%; }
.gw-ring-bl { width: clamp(280px, 32vw, 470px); aspect-ratio: 3 / 2; left: -70px; bottom: -80px; transform: rotate(-16deg); animation: gw-drift-bl 13s ease-in-out infinite; }
.gw-ring-tr { width: clamp(320px, 37vw, 540px); aspect-ratio: 3 / 2; right: -80px; top: -120px; transform: rotate(14deg); animation: gw-drift-tr 15s ease-in-out infinite; }

/* split panels */
.panel {
  flex: 1; position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; overflow: hidden;
  transition: flex .75s cubic-bezier(.62,.04,.2,1);
}
.panel-left  { background: linear-gradient(170deg, #FFFFFF 0%, #DDC6C6 60%, #D4C6B5 100%); }
.panel-right { background: linear-gradient(190deg, #FFFFFF 0%, #F6EBE4 34%, #EBDFCD 70%, #DDCFB9 100%); }

/* soft feathered seam between the two panels — blurs the boundary, glides with the swipe */
.gw-seam {
  position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 90px; z-index: 3; pointer-events: none;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 35%, #000 65%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 35%, #000 65%, transparent 100%);
  transition: left .75s cubic-bezier(.62,.04,.2,1);
}

.panel-content {
  position: relative; z-index: 3; text-align: center; max-width: 380px;
  padding: 40px clamp(28px, 4vw, 56px);
  transition: opacity .55s ease, transform .6s cubic-bezier(.2,.7,.2,1);
  animation: gw-rise 1s cubic-bezier(.2,.7,.2,1) both;
}
.panel-right .panel-content { animation-delay: .12s; }

.c-eyebrow {
  font-family: var(--font-sans); font-weight: 700; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: var(--tracking-widest); display: block;
}
.panel-left  .c-eyebrow { color: #B26B6B; }
.panel-right .c-eyebrow { color: var(--accent); }

.panel-content h2 {
  font-family: var(--font-serif); font-weight: 400; line-height: 1.28; white-space: nowrap;
  font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin: 14px 0 0; letter-spacing: -0.01em; color: var(--charcoal);
}
.panel-content h2 .it { font-style: italic; }
.panel-left  h2 .it { color: #B86B6B; }
.panel-right h2 .it { color: var(--accent); }

.panel-content p {
  font-size: 1rem; line-height: 1.7; margin: 24px auto 0; max-width: 300px; min-height: 6.8em;
  font-weight: 300; color: var(--accent);
}

.c-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; white-space: nowrap;
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500;
  padding: 14px 32px; border-radius: var(--radius-pill);
  background: var(--charcoal); color: #fff;
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}
.c-link .arrow { transition: transform .35s ease; }
.panel:hover .c-link .arrow { transform: translateX(6px); }
.panel-left:hover  .c-link { background: var(--blush); box-shadow: 0 12px 28px rgba(212,160,160,0.4); }
.panel-right:hover .c-link { background: var(--sand);  box-shadow: 0 12px 28px rgba(196,168,130,0.4); }

/* swipe-over hover: hovered side expands across the other */
.gateway:hover .panel { flex: 1; }
.gateway:hover .panel:hover { flex: 6; }
.gateway:hover .panel:not(:hover) { flex: 0.95; }
.gateway:hover .panel:not(:hover) .panel-content { opacity: 0; transform: translateY(6px); }
.panel:hover .panel-content { transform: translateY(-4px); }

@keyframes gw-rise { from { transform: translateY(26px); } to { transform: translateY(0); } }
@keyframes gw-drift-bl {
  0%, 100% { transform: rotate(-16deg) translate(0, 0); }
  50%      { transform: rotate(-16deg) translate(-14px, 10px); }
}
@keyframes gw-drift-tr {
  0%, 100% { transform: rotate(14deg) translate(0, 0); }
  50%      { transform: rotate(14deg) translate(14px, -10px); }
}

@media (prefers-reduced-motion: reduce) {
  .panel-content { animation: none; }
  .gw-ring { animation: none; }
}

@media (max-width: 720px) {
  .gateway { flex-direction: column; height: auto; min-height: 100dvh; }
  .panel { min-height: 50vh; }
  .gateway:hover .panel, .gateway:hover .panel:hover, .gateway:hover .panel:not(:hover) { flex: 1; }
  .gateway:hover .panel:not(:hover) .panel-content { opacity: 1; transform: none; }
  .gw-seam { display: none; }
  .gw-ring { display: none; }
  .panel-left { padding-top: 60px; }
}

/* ============================================================
   PRODUCT TOUR — interactive tabbed feature gallery
   ============================================================ */
.tour {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(26px, 4vw, 56px); align-items: center;
}
.tour-tabs { display: flex; flex-direction: column; gap: 4px; }
.tour-tab {
  text-align: left; background: transparent; border: 0; cursor: pointer;
  padding: 15px 20px; border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: 2px;
  border-left: 2px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.tour-tab .t-name {
  font-family: var(--font-serif); font-size: 1.32rem; font-weight: 500;
  color: var(--warm-gray); transition: color .3s ease; line-height: 1.2;
}
.tour-tab .t-desc { font-size: 0.85rem; color: var(--light-gray); line-height: 1.5; transition: color .3s ease; }
.tour-tab:hover { background: var(--surface); }
.tour-tab:hover .t-name { color: var(--ink); }
.tour-tab.active {
  background: var(--surface); box-shadow: var(--shadow-sm);
  border-left-color: var(--primary);
}
.tour-tab.active .t-name { color: var(--ink); }
.tour-tab.active .t-desc { color: var(--warm-gray); }

.tour-stage { position: relative; }
.tour-stage .mockup { margin: 0; }
.tour-imgs { position: relative; width: 100%; aspect-ratio: 16 / 10; background: #fff; }
.tour-imgs img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  opacity: 0; transform: scale(1.015);
  transition: opacity .6s ease, transform .9s ease;
}
.tour-imgs img.active { opacity: 1; transform: scale(1); }

/* mobile: tabs become a horizontal chip rail above the frame */
@media (max-width: 860px) {
  .tour { grid-template-columns: 1fr; gap: 24px; }
  .tour-tabs {
    flex-direction: row; gap: 8px; overflow-x: auto; padding-bottom: 8px;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .tour-tabs::-webkit-scrollbar { display: none; }
  .tour-tab {
    flex: 0 0 auto; border-left: 0; border-bottom: 2px solid transparent;
    border-radius: var(--radius-pill); padding: 9px 18px; background: var(--surface);
    box-shadow: var(--shadow-xs, 0 1px 4px rgba(45,41,38,.05));
  }
  .tour-tab .t-name { font-size: 1.02rem; white-space: nowrap; }
  .tour-tab .t-desc { display: none; }
  .tour-tab.active { border-left: 0; background: var(--charcoal); }
  .tour-tab.active .t-name { color: #fff; }
}

/* ============================================================
   PHONE TRIO — guest-site mobile showcase
   ============================================================ */
.phone-trio {
  display: flex; justify-content: center; align-items: flex-end;
  gap: clamp(14px, 2.5vw, 38px);
}
.phone-shot {
  flex: 0 0 auto; width: clamp(168px, 21vw, 232px);
  border: 9px solid var(--charcoal); border-radius: 34px;
  overflow: hidden; background: #fff; box-shadow: var(--shadow-lg);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.phone-shot img { width: 100%; display: block; }
.phone-shot.featured { transform: translateY(-26px); border-width: 10px; box-shadow: var(--shadow-xl); }
.phone-trio:hover .phone-shot { transform: translateY(6px); }
.phone-trio:hover .phone-shot.featured { transform: translateY(-20px); }

.guest-feats {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px); margin-top: clamp(40px, 5vw, 64px);
}
.guest-feat { display: flex; align-items: center; gap: 11px; font-size: 0.96rem; color: var(--ink); }
.guest-feat svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; stroke-width: 1.6; }

@media (max-width: 600px) {
  .phone-trio { justify-content: flex-start; align-items: flex-start; overflow-x: auto; padding: 30px 4px 10px; scrollbar-width: none; }
  .phone-trio::-webkit-scrollbar { display: none; }
  /* all three phones identical height + size on phones */
  .phone-shot { width: 190px; aspect-ratio: 50 / 97; border-width: 9px; }
  .phone-shot.featured { transform: none; border-width: 9px; }
  .phone-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
  .phone-trio:hover .phone-shot, .phone-trio:hover .phone-shot.featured { transform: none; }
}

