/* ============================================================
   trwn — Subpage modules (voor-bruidsparen / voor-weddingplanners)
   Loads AFTER colors_and_type.css + landing.css.
   Reuses landing chrome (.site-header,.nav,.btn,.footer,.reveal,.sec-head)
   and adds the page-specific modules in the same modern style.
   ============================================================ */

/* eyebrow (sand, tracked) used inside sec-head + sections */
.eyebrow {
  font-family: var(--font-sans); font-weight: 700; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: var(--tracking-wider); color: var(--trwn-blush);
  display: inline-block;
}
.sec-head .lead, .lead {
  font-family: var(--font-marketing-sans); font-weight: 300;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem); line-height: 1.75; color: rgba(45,41,38,0.64);
}
.sec-head .lead { margin-top: 18px; }
.btn-block { display: flex; width: 100%; }

/* ---------- Audience hero ---------- */
.aud-hero { position: relative; padding: 138px 0 80px; overflow: hidden; }
.aud-hero .hero-bg { display: none; }
.aud-hero .ring-motif { display: none; }
.aud-hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.aud-hero-grid .aud-hero-inner { max-width: 560px; }
.aud-hero-visual .mockup { margin: 0; }
.aud-hero-inner { max-width: 740px; }
.breadcrumb { font-family: var(--font-sans); font-size: 0.82rem; color: var(--trwn-light-gray); display: flex; gap: 10px; align-items: center; }
.breadcrumb a { color: var(--trwn-warm-gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--trwn-blush); }
.aud-hero h1 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.8rem, 5.4vw, 4.4rem); line-height: 1.03; letter-spacing: -0.015em; color: var(--trwn-charcoal); margin-top: 14px; }
.aud-hero h1 .accent { color: var(--trwn-blush); }
.aud-hero .lead { margin-top: 24px; max-width: 580px; }
.aud-hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* ---------- Browser mockup ---------- */
.mockup { border-radius: var(--radius-xl); overflow: hidden; background: #fff; border: 1px solid var(--trwn-sand-pale); box-shadow: var(--shadow-lg); }
.mockup-bar { display: flex; align-items: center; gap: 8px; padding: 12px 18px; background: var(--trwn-cream); border-bottom: 1px solid var(--trwn-sand-pale); }
.mockup-bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--trwn-sand-light); }
.mockup-bar span:nth-child(2) { background: var(--trwn-blush-light); }
.mockup-bar span:nth-child(3) { background: var(--trwn-sage); }
.mockup-bar .url { margin-left: 14px; font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--trwn-light-gray); }
.mockup img { width: 100%; display: block; }

/* ---------- Value list ---------- */
.value-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.6vw, 36px); }
.value { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--trwn-sand-pale); border-radius: var(--radius-xl); padding: clamp(24px, 2.6vw, 32px); transition: transform .4s ease, box-shadow .4s ease; }
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value .v-icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; background: var(--trwn-blush-pale); color: var(--trwn-blush); display: flex; align-items: center; justify-content: center; }
.value .v-icon svg { width: 26px; height: 26px; stroke-width: 1.5; }
.value h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.35rem; color: var(--trwn-charcoal); margin-bottom: 7px; }
.value p { font-family: var(--font-marketing-sans); font-weight: 300; font-size: 0.95rem; line-height: 1.65; color: rgba(45,41,38,0.62); }

/* ---------- Product tour ---------- */
.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.3rem; font-weight: 500; color: var(--trwn-warm-gray); transition: color .3s ease; line-height: 1.2; }
.tour-tab .t-desc { font-family: var(--font-sans); font-size: 0.85rem; color: var(--trwn-light-gray); line-height: 1.5; transition: color .3s ease; }
.tour-tab:hover { background: #fff; }
.tour-tab:hover .t-name { color: var(--trwn-charcoal); }
.tour-tab.active { background: #fff; box-shadow: var(--shadow-sm); border-left-color: var(--trwn-blush); }
.tour-tab.active .t-name { color: var(--trwn-charcoal); }
.tour-tab.active .t-desc { color: var(--trwn-warm-gray); }
.tour-stage { position: relative; }
.tour-imgs { position: relative; width: 100%; aspect-ratio: 16 / 10; background: var(--trwn-cream); }
.tour-imgs img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0; transform: scale(1.015); transition: opacity .6s ease, transform .9s ease; }
.tour-imgs img.active { opacity: 1; transform: scale(1); }

/* ---------- Phone trio ---------- */
.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(--trwn-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-family: var(--font-sans); font-size: 0.96rem; color: var(--trwn-charcoal); }
.guest-feat svg { width: 20px; height: 20px; color: var(--trwn-blush); flex-shrink: 0; stroke-width: 1.6; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.plan { background: #fff; border: 1px solid var(--trwn-sand-pale); border-radius: var(--radius-xl); padding: 32px 26px; display: flex; flex-direction: column; transition: transform .4s ease, box-shadow .4s ease; }
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.plan.featured { border: 1.5px solid var(--trwn-blush); box-shadow: var(--shadow-lg); position: relative; }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--trwn-blush); color: #fff; font-family: var(--font-sans); 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.65rem; font-weight: 500; margin-bottom: 6px; color: var(--trwn-charcoal); }
.plan.featured .plan-name { color: var(--trwn-blush); }
.plan-price { font-family: var(--font-serif); font-size: 2.5rem; color: var(--trwn-charcoal); margin-bottom: 4px; }
.plan-price small { font-family: var(--font-sans); font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--trwn-light-gray); }
.plan-sub { font-family: var(--font-marketing-sans); font-weight: 300; font-size: 0.85rem; color: var(--trwn-warm-gray); min-height: 38px; margin-bottom: 22px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan ul li { display: flex; gap: 10px; align-items: flex-start; font-family: var(--font-sans); font-size: 0.9rem; color: var(--trwn-charcoal); line-height: 1.45; }
.plan ul li svg { width: 16px; height: 16px; color: var(--trwn-blush); flex-shrink: 0; margin-top: 3px; stroke-width: 1.8; }
.plan ul li.hr { display: block; height: 1px; background: var(--trwn-sand-pale); margin: 4px 0; padding: 0; }

/* ---------- Stat band (planners) ---------- */
.stat-band { background: var(--trwn-charcoal); color: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); text-align: center; }
.stat .stat-num { font-family: var(--font-serif); font-weight: 400; font-size: clamp(3rem, 6vw, 4.6rem); color: var(--trwn-sand); line-height: 1; }
.stat .stat-label { font-family: var(--font-marketing-sans); font-weight: 300; font-size: 0.98rem; color: rgba(250,247,242,0.7); margin-top: 12px; }

/* ---------- Showcase row (planners guest-website) ---------- */
.showcase-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.showcase-text .eyebrow { color: var(--trwn-blush); }
.showcase-text h3 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--trwn-charcoal); margin: 14px 0 16px; }
.showcase-text p { font-family: var(--font-marketing-sans); font-weight: 300; font-size: 1rem; line-height: 1.8; color: rgba(45,41,38,0.64); max-width: 460px; }
.showcase-list { list-style: none; margin: 24px 0 0; display: flex; flex-direction: column; gap: 13px; }
.showcase-list li { display: flex; align-items: flex-start; gap: 12px; font-family: var(--font-sans); font-size: 0.96rem; color: var(--trwn-charcoal); }
.showcase-list svg { width: 19px; height: 19px; color: var(--trwn-blush); flex-shrink: 0; margin-top: 3px; stroke-width: 1.6; }
.showcase-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--trwn-sand-pale); }

/* ---------- Section-head alias ---------- */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--trwn-sand-pale); border-radius: var(--radius-lg); background: #fff; overflow: hidden; transition: border-color .3s ease; }
.faq-item.open { border-color: var(--trwn-blush-light); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 26px; background: none; border: 0; cursor: pointer; text-align: left; }
.faq-q h4 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; color: var(--trwn-charcoal); }
.faq-icon { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 300; color: var(--trwn-blush); 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 26px 24px; font-family: var(--font-marketing-sans); font-weight: 300; color: var(--trwn-warm-gray); font-size: 0.98rem; line-height: 1.8; }

/* ---------- Crosslink ---------- */
.crosslink { text-align: center; background: linear-gradient(180deg, #FCF1F1 0%, var(--trwn-blush-pale) 100%); }
.crosslink .eyebrow { color: var(--trwn-accent); }
.crosslink h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--trwn-charcoal); margin: 14px 0 16px; }
.crosslink p { font-family: var(--font-marketing-sans); font-weight: 300; font-size: 1.05rem; color: rgba(45,41,38,0.64); max-width: 460px; margin: 0 auto 30px; }

.nowrap-head { white-space: nowrap; }

/* section-head alias (subpages use .section-head; matches landing .sec-head) */
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(44px, 5vw, 72px); }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2rem, 3.8vw, 3rem); line-height: 1.12; color: var(--trwn-charcoal); letter-spacing: -0.005em; margin-top: 6px; }
.section-head .lead { margin-top: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) { .value-list { grid-template-columns: repeat(2, 1fr); } .plans { grid-template-columns: repeat(2, 1fr); } .aud-hero-grid { grid-template-columns: 1fr; gap: 44px; } .aud-hero-grid .aud-hero-inner { max-width: 640px; } }
@media (max-width: 860px) {
  .showcase-row { grid-template-columns: 1fr; gap: 36px; }
  .tour { grid-template-columns: 1fr; gap: 24px; }
  .tour-tabs { flex-direction: row; gap: 8px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; min-width: 0; }
  .tour-tabs::-webkit-scrollbar { display: none; }
  .tour-tab { flex: 0 0 auto; border-left: 0; border-radius: var(--radius-pill); padding: 9px 18px; background: #fff; box-shadow: var(--shadow-xs); }
  .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(--trwn-charcoal); }
  .tour-tab.active .t-name { color: #fff; }
}
@media (max-width: 620px) {
  .value-list { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .aud-hero-actions { flex-direction: column; align-items: stretch; }
  .aud-hero-actions .btn { width: 100%; }
  .nowrap-head { white-space: normal; }
  .phone-trio { justify-content: center; gap: 10px; padding: 24px 0 6px; }
  .phone-shot { width: 30%; border-width: 5px; border-radius: 18px; }
  .phone-shot.featured { transform: none; border-width: 6px; }
  .phone-trio:hover .phone-shot, .phone-trio:hover .phone-shot.featured { transform: none; }
  .guest-feats { flex-direction: column; align-items: flex-start; gap: 14px; }
  .stat-band { padding-top: 48px; padding-bottom: 48px; }
  .stat .stat-num { font-size: 2.6rem; }
}
