/* Site styles for Dr. Nardus Visser landing page variations */
@import url('colors_and_type.css');

* { box-sizing: border-box; }

/* Each landing page is mounted inside an artboard. Make it self-contained. */
.landing {
  width: 100%;
  background: var(--paper);
  color: var(--fg-1);
  font-family: var(--font-sans);
  --accent: var(--pink-400);
  --accent-strong: var(--pink-500);
  --accent-soft: var(--pink-100);
}

.landing a { color: var(--accent-strong); }

/* ─────────────────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────────────────── */
.btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-1px); box-shadow: 0 12px 32px color-mix(in oklab, var(--accent) 38%, transparent); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--bone); }
.btn-ghost:hover { background: var(--white); border-color: var(--ink); }
.btn-lg { padding: 16px 30px; font-size: 15px; }

/* ─────────────────────────────────────────────────────────
   Header (shared across variants)
   ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 32px;
  padding: 18px 56px;
  background: rgba(251, 248, 243, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in oklab, var(--bone) 40%, transparent);
}
.site-header.on-dark {
  background: rgba(20, 17, 15, 0.55);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.site-header.on-dark .nav-link { color: rgba(251, 248, 243, 0.78); }
.site-header.on-dark .nav-link:hover { color: var(--paper); }
.site-header.on-dark .brand-formal-top { color: var(--paper); }
.site-header.on-dark .brand-script-bottom { color: var(--pink-200); }
.site-header.on-dark .menu-btn { color: var(--paper); }

.brand-lockup {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; border: none;
}
.brand-lockup:hover { border: none; }
.brand-mark { height: 42px; width: auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1; white-space: nowrap; }
.brand-formal-top {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.brand-script-bottom {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent);
  line-height: 0.9;
  margin-top: 3px;
}
.site-nav { display: flex; gap: 32px; margin-left: auto; align-items: center; }
.nav-link {
  font-size: 14px;
  color: var(--fg-2);
  border: none;
  padding: 6px 0;
  text-decoration: none;
  transition: color 140ms var(--ease-out);
}
.nav-link:hover { color: var(--ink); border: none; }

.menu-btn {
  display: none;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink);
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
}

/* ─────────────────────────────────────────────────────────
   Mobile drawer
   ───────────────────────────────────────────────────────── */
.mobile-drawer {
  position: fixed; inset: 0;
  z-index: 50;
  background: rgba(20, 17, 15, 0.4);
  backdrop-filter: blur(6px);
  display: flex; justify-content: flex-end;
  animation: fadeIn 200ms var(--ease-out);
}
.mobile-drawer-panel {
  width: 80%; max-width: 360px;
  background: var(--paper);
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 8px;
  animation: drawerIn 280ms var(--ease-out);
}
@keyframes fadeIn { from {opacity: 0} to {opacity: 1} }
@keyframes drawerIn { from {transform: translateX(20px); opacity: 0} to {transform: translateX(0); opacity: 1} }
.mobile-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.mobile-drawer-close {
  background: transparent; border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.mobile-drawer .nav-link {
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--bone) 40%, transparent);
}
.mobile-drawer .btn { margin-top: 24px; align-self: flex-start; }

/* ─────────────────────────────────────────────────────────
   Eyebrow / shared
   ───────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone);
}
.eyebrow .dot { color: var(--accent); margin: 0 6px; }

.section-rule {
  text-align: center;
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 28px;
  letter-spacing: 0.4em;
  padding: 56px 0 0;
  user-select: none;
}

/* ─────────────────────────────────────────────────────────
   HERO — variant A: Quiet editorial
   ───────────────────────────────────────────────────────── */
.hero-a {
  padding: 96px 56px 120px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 24px;
}
.hero-a .eyebrow { margin-bottom: 4px; }
.hero-a .hero-mark {
  width: 240px; height: auto;
  margin: 8px 0 12px;
  filter: drop-shadow(0 24px 48px rgba(20,17,15,0.06));
}
.hero-a .hero-script {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 132px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  margin: 0;
  padding-bottom: 0.12em;
}
.hero-a .hero-headline {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 720px;
  margin: -28px 0 0;
}
.hero-a .hero-headline em {
  font-style: normal;
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 400;
  font-size: 1.25em;
  line-height: 0.9;
  vertical-align: -0.06em;
  padding: 0 0.05em;
}
.hero-a .lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-2);
  font-weight: 300;
  max-width: 540px;
  margin: 12px 0 0;
}
.hero-a .hero-actions {
  display: flex; gap: 14px; align-items: center; margin-top: 24px;
}
.hero-a .hero-meta {
  margin-top: 40px;
  display: flex; gap: 48px; align-items: center;
  font-size: 13px; color: var(--fg-3);
}
.hero-a .hero-meta strong { color: var(--ink); font-weight: 500; }

/* ─────────────────────────────────────────────────────────
   HERO — variant B: Asymmetric magazine
   ───────────────────────────────────────────────────────── */
.hero-b {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  padding: 80px 56px 100px;
  align-items: center;
  position: relative;
}
.hero-b .hero-text { display: flex; flex-direction: column; gap: 22px; max-width: 580px; }
.hero-b .eyebrow { margin-bottom: 6px; }
.hero-b .hero-headline {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 88px;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.hero-b .hero-headline .script {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 400;
  font-size: 1.18em;
  line-height: 0.85;
  padding-bottom: 0.12em;
  vertical-align: -0.02em;
}
.hero-b .lead {
  font-size: 18px; line-height: 1.65;
  color: var(--fg-2); font-weight: 300;
  max-width: 460px;
}
.hero-b .hero-actions { display: flex; gap: 14px; align-items: center; margin-top: 12px; }
.hero-b .hero-art {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-b .hero-art img {
  width: 100%; max-width: 520px; height: auto;
  filter: drop-shadow(0 32px 64px rgba(20,17,15,0.08));
}
.hero-b .hero-art::before {
  content: '';
  position: absolute;
  inset: -10% -10% -10% 5%;
  background: radial-gradient(closest-side at 60% 50%, var(--pink-50), transparent 70%);
  z-index: -1;
}

.hero-b-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 32px 56px 80px;
  border-top: 1px solid color-mix(in oklab, var(--bone) 50%, transparent);
}
.hero-b-stat {
  padding: 16px 24px;
  display: flex; flex-direction: column; gap: 6px;
  border-left: 1px solid color-mix(in oklab, var(--bone) 50%, transparent);
}
.hero-b-stat:first-child { border-left: none; padding-left: 0; }
.hero-b-stat .num {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 44px;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.hero-b-stat .num .accent { color: var(--accent); font-family: var(--font-display); font-weight: 400; }
.hero-b-stat .label { font-size: 13px; color: var(--fg-2); line-height: 1.5; max-width: 220px; }

/* ─────────────────────────────────────────────────────────
   HERO — variant C: Full-bleed bloom
   ───────────────────────────────────────────────────────── */
.hero-c-wrap {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero-c {
  min-height: 760px;
  padding: 140px 56px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  position: relative;
  z-index: 2;
}
.hero-c-bg {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.hero-c-bg img {
  width: 90%;
  max-width: 900px;
  height: auto;
  opacity: 0.42;
  filter: brightness(1.05) saturate(1.1);
  /* knockout mark only — already transparent bg */
}
.hero-c-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 45%, transparent, rgba(20,17,15,0.55) 80%),
    linear-gradient(180deg, rgba(20,17,15,0.3) 0%, rgba(20,17,15,0) 30%, rgba(20,17,15,0) 70%, rgba(20,17,15,0.7) 100%);
}
.hero-c .eyebrow { color: rgba(251, 248, 243, 0.7); }
.hero-c .eyebrow .dot { color: var(--pink-300); }
.hero-c .hero-headline {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 76px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--paper);
  max-width: 880px;
  margin: 0;
}
.hero-c .hero-headline .script {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--pink-300);
  font-weight: 400;
  font-size: 1.4em;
  line-height: 0.85;
  padding: 0 0.04em;
  vertical-align: -0.04em;
}
.hero-c .lead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(251, 248, 243, 0.78);
  font-weight: 300;
  max-width: 560px;
  margin: 8px 0 0;
}
.hero-c .hero-actions { display: flex; gap: 14px; align-items: center; margin-top: 24px; }
.hero-c .btn-ghost {
  background: transparent;
  border: 1px solid rgba(251,248,243,0.3);
  color: var(--paper);
}
.hero-c .btn-ghost:hover { background: rgba(251,248,243,0.08); border-color: rgba(251,248,243,0.6); }
.hero-c .btn-primary { background: var(--paper); color: var(--ink); }
.hero-c .btn-primary:hover { background: var(--white); transform: translateY(-1px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }

.hero-c-foot {
  position: relative; z-index: 2;
  padding: 28px 56px 40px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(251, 248, 243, 0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-c-foot strong { color: var(--paper); font-weight: 500; }

/* ─────────────────────────────────────────────────────────
   Reveal-on-scroll (used inside artboard scroll containers)
   ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }

/* ─────────────────────────────────────────────────────────
   Testimonials
   ───────────────────────────────────────────────────────── */
.testimonials {
  background: var(--cream);
  padding: 120px 56px;
}
.testimonials.on-paper { background: var(--paper); }
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials .section-head {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  margin-bottom: 64px;
}
.testimonials h2 {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 640px;
}
.testimonials h2 .script {
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 400;
  font-size: 1.2em;
  vertical-align: -0.04em;
  padding: 0 0.05em;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 30px 28px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.t-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.t-quote-mark {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  line-height: 0.5;
  height: 24px;
}
.t-card blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 300;
}
.t-card cite {
  font-style: normal;
  font-size: 13px;
  color: var(--fg-3);
  display: flex; flex-direction: column; gap: 2px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid color-mix(in oklab, var(--bone) 40%, transparent);
}
.t-card cite strong {
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
}

.testimonials-foot {
  margin-top: 48px;
  display: flex; justify-content: center; align-items: center; gap: 24px;
  font-size: 13px;
  color: var(--fg-2);
}
.testimonials-foot .stars {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 4px;
}

/* ─────────────────────────────────────────────────────────
   Location & hours
   ───────────────────────────────────────────────────────── */
.location {
  padding: 120px 56px;
  background: var(--paper);
}
.location.on-cream { background: var(--cream); }
.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-text { display: flex; flex-direction: column; gap: 20px; }
.location-text h2 {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.location-text h2 .script {
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 400;
  font-size: 1.2em;
  vertical-align: -0.04em;
}
.location-text address {
  font-style: normal;
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-2);
  font-weight: 300;
}
.location-text address strong {
  color: var(--ink);
  font-weight: 500;
}
.hours-table {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 14px 32px;
  margin-top: 8px;
  font-size: 15px;
}
.hours-table dt {
  color: var(--fg-2);
  font-weight: 300;
}
.hours-table dd {
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
}
.hours-table .closed { color: var(--fg-3); font-style: italic; }
.hours-table .today dt,
.hours-table .today dd { color: var(--accent-strong); font-weight: 500; }

.location-meta {
  display: flex; gap: 32px; margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in oklab, var(--bone) 50%, transparent);
}
.location-meta .row { display: flex; flex-direction: column; gap: 4px; }
.location-meta .row .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-3);
}
.location-meta .row .val {
  font-size: 16px;
  color: var(--ink);
  font-weight: 400;
}
.location-meta .row a {
  color: var(--accent-strong);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.location-meta .row a:hover { border-bottom-color: var(--accent-strong); }

/* Map placeholder card */
.location-map {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, var(--pink-50) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, var(--green-50) 0%, transparent 50%),
    var(--cream);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
}
.location-map.on-cream {
  background:
    radial-gradient(circle at 30% 30%, var(--pink-50) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, var(--green-50) 0%, transparent 50%),
    var(--paper);
}
.location-map svg.map-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.55;
}
.location-map .pin {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.location-map .pin-dot {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px color-mix(in oklab, var(--accent) 18%, transparent),
              0 0 0 16px color-mix(in oklab, var(--accent) 8%, transparent);
  position: relative;
}
.location-map .pin-dot::before {
  content: '';
  position: absolute;
  inset: 6px;
  background: var(--white);
  border-radius: 999px;
}
.location-map .pin-card {
  background: var(--white);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 2px;
  min-width: 200px;
  text-align: center;
}
.location-map .pin-card strong { font-weight: 500; }
.location-map .pin-card span { font-size: 12px; color: var(--fg-3); }

/* ─────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────── */
.site-footer {
  padding: 80px 56px 36px;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  right: -120px; top: -80px;
  width: 480px; height: 480px;
  background-image: url('assets/flower-heart-logo-transparent.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 320px; }
.footer-mark { width: 56px; height: auto; margin-bottom: 8px; }
.footer-brand .name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--paper);
}
.footer-brand .script {
  font-family: var(--font-display);
  color: var(--pink-300);
  font-size: 32px;
  line-height: 0.9;
  margin-top: -4px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(251, 248, 243, 0.68);
  margin-top: 8px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h6 {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink-300);
  margin: 0 0 4px;
}
.footer-col a, .footer-col p {
  font-size: 14px;
  color: rgba(251, 248, 243, 0.78);
  line-height: 1.65;
  text-decoration: none;
  border: none;
}
.footer-col a:hover { color: var(--paper); border: none; }
.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(251, 248, 243, 0.1);
  font-size: 12px;
  color: rgba(251, 248, 243, 0.5);
}
.footer-base .legal { display: flex; gap: 24px; }
.footer-base .legal a { color: rgba(251, 248, 243, 0.5); border: none; }
.footer-base .legal a:hover { color: var(--paper); border: none; }
