/* Med4You — Landing styles
   Paleta i typografia dopasowane do aplikacji mobilnej. */

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

:root {
  --bg: #FAF7F2;
  --bg-warm: #F5EFE4;
  --surface: #FFFFFF;
  --surface-2: #FBF8F2;
  --ink: #1A1411;
  --ink-2: #2B2520;
  --muted: #7A6E62;
  --muted-2: #9B9286;
  --gold: #B08438;          /* primary action */
  --gold-deep: #8E6829;
  --gold-soft: #D4B07A;
  --gold-pale: #EFE2C9;
  --gold-wash: #F8F0DE;
  --border: #E8E0D0;
  --border-strong: #D6CBB6;
  --success: #168F4E;
  --success-soft: #DCEFE0;
  --danger: #C4342B;
  --danger-soft: #FBE6E2;
  --shadow-sm: 0 1px 2px rgba(26,20,17,.05);
  --shadow-md: 0 8px 28px -10px rgba(26,20,17,.18), 0 2px 6px rgba(26,20,17,.04);
  --shadow-lg: 0 30px 80px -30px rgba(26,20,17,.35), 0 10px 30px -15px rgba(26,20,17,.15);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-feature-settings: 'tnum' 1;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
}

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

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ---------- Container ---------- */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 720px) {
  .wrap { padding: 0 18px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 16px -8px rgba(176,132,56,.7);
}
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-secondary:hover { border-color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 14px;
}
.btn-ghost:hover { background: var(--bg-warm); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 16px 26px; font-size: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-color: var(--border); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--gold-deep); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(140deg, var(--gold) 0%, var(--gold-deep) 70%);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 17px;
  font-style: italic;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.1);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(46px, 6.5vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 36px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  align-items: center;
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta-item svg { width: 16px; height: 16px; color: var(--gold); }

/* Hero variant B: split */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 24px 0;
}
.split-side {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 540px;
  position: relative;
}
.split-side + .split-side {
  border-left: 1px solid var(--border);
}
.split-side.specialist {
  background: var(--bg);
}
.split-side.patient {
  background: var(--gold-wash);
}
@media (max-width: 880px) {
  .split-hero { grid-template-columns: 1fr; }
  .split-side + .split-side { border-left: none; border-top: 1px solid var(--border); }
  .split-side { padding: 48px 24px; min-height: auto; }
}
.split-side h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 18px;
}
.split-side p { color: var(--muted); margin: 0 0 24px; max-width: 420px; font-size: 16px; }
.split-bullets { list-style: none; padding: 0; margin: 0 0 28px; font-size: 14px; }
.split-bullets li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  color: var(--ink-2);
  align-items: baseline;
}
.split-bullets li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  flex: 0 0 4px;
  transform: translateY(7px);
}

/* ---------- Sections shared ---------- */
.section {
  padding: 96px 0;
  position: relative;
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
}
.section-warm { background: var(--bg-warm); }
.section-ink { background: var(--ink); color: #F2EBDF; }
.section-ink h2, .section-ink h3 { color: #F8F0DE; }
.section-ink .muted-text { color: #B8AC9C; }

.section-head {
  max-width: 780px;
  margin: 0 0 56px;
}
.section-head.center { margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
  color: inherit;
}
.section-head h2 em { font-style: italic; color: var(--gold-deep); font-weight: 300; }
.section-ink .section-head h2 em { color: var(--gold-soft); }
.section-head p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  max-width: 620px;
  line-height: 1.6;
}
.section-ink .section-head p { color: #B8AC9C; }

/* ---------- Problem strip ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-card {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  background: var(--surface-2);
}
.problem-card:last-child { border-right: none; }
.problem-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 38px;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
}
.problem-card h4 {
  font-size: 16px;
  margin: 0 0 8px;
  font-weight: 600;
}
.problem-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }
@media (max-width: 880px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-card:nth-child(2) { border-right: none; }
  .problem-card:nth-child(1), .problem-card:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 520px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { border-right: none; border-bottom: 1px solid var(--border); }
  .problem-card:last-child { border-bottom: none; }
}

/* ---------- Modules (Estetic / Cosmetic / Med / Dental) ---------- */
.modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .modules { grid-template-columns: 1fr; } }
.module {
  padding: 28px 24px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.module:hover {
  transform: translateY(-3px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-md);
}
.module-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-wash);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.module-icon svg { width: 22px; height: 22px; }
.module h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.module .for { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-deep); margin-bottom: 14px; }
.module p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- Pillars (3 USPs) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 36px 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pillar .pnum {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 64px;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 300;
}
.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  margin: 0 0 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.pillar p { color: var(--muted); margin: 0 0 24px; font-size: 15px; line-height: 1.6; }
.pillar .quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-deep);
  font-size: 17px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: auto;
}

/* ---------- Specialist features (6-8 grid) ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 880px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  background: var(--surface);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  position: relative;
  transition: background .2s ease;
}
.feat:hover { background: var(--surface-2); }
.feat-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
}
.feat-icon svg { width: 22px; height: 22px; }
.feat h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
}
.feat p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ---------- Patient features (alternating story rows) ---------- */
.patient-rows { display: flex; flex-direction: column; gap: 24px; }
.patient-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 24px 0;
}
.patient-row.reverse { direction: rtl; }
.patient-row.reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .patient-row { grid-template-columns: 1fr; gap: 32px; }
  .patient-row.reverse { direction: ltr; }
}
.patient-copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500;
  margin: 12px 0 14px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.patient-copy p { color: var(--muted); margin: 0; font-size: 16px; line-height: 1.6; max-width: 460px; }

/* ---------- Phone frame ---------- */
.phone {
  --pw: 320px;
  --ph: 660px;
  width: var(--pw);
  height: var(--ph);
  background: #1a1411;
  border-radius: 44px;
  padding: 10px;
  position: relative;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--surface-2);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #1a1411;
  border-radius: 16px;
  z-index: 5;
}
.phone-status {
  position: absolute;
  top: 12px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 26px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  z-index: 4;
  pointer-events: none;
}
.phone-status .right { display: flex; gap: 4px; align-items: center; }

.phone-content {
  padding: 48px 0 0;
  height: 100%;
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}

/* App-mock chrome */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 12px;
  background: var(--surface);
}
.app-header-left { display: flex; align-items: center; gap: 12px; }
.app-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold-soft);
  display: grid; place-items: center;
  font-weight: 600;
  color: var(--gold-deep);
  font-size: 13px;
}
.app-avatar.large { width: 44px; height: 44px; }
.app-header-title { font-weight: 700; font-size: 15px; }
.app-header-sub { font-size: 11px; color: var(--muted); }

.app-icon-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-2);
}
.app-tabs {
  display: flex;
  gap: 6px;
  padding: 10px 14px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow-x: auto;
  scrollbar-width: none;
}
.app-tabs::-webkit-scrollbar { display: none; }
.app-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--bg);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.app-tab svg { width: 14px; height: 14px; }
.app-tab.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.app-list { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  position: relative;
}
.app-card-head { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 8px; }
.app-card-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold-pale);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700; color: var(--gold-deep);
  flex-shrink: 0;
}
.app-card-title { font-weight: 700; font-size: 14px; line-height: 1.2; margin-bottom: 2px; }
.app-card-meta { font-size: 11px; color: var(--muted); }
.app-card-body { font-size: 12px; color: var(--muted); line-height: 1.5; }
.app-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--gold-wash);
  color: var(--gold-deep);
  margin-bottom: 4px;
}
.app-tag.success { background: var(--success-soft); color: var(--success); }
.app-tag.neutral { background: var(--bg-warm); color: var(--muted); }

.app-fab {
  position: absolute;
  bottom: 24px;
  right: 18px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px -8px rgba(176,132,56,.65);
}
.app-fab svg { width: 22px; height: 22px; }

.app-fab-secondary {
  position: absolute;
  bottom: 24px;
  left: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
}

/* Year bar in app */
.app-year {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 8px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  font-weight: 500;
}
.app-year-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  position: relative;
}
.app-year-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Mockups gallery ---------- */
.mockups-band {
  display: flex;
  gap: 28px;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;
}
.mockups-band .phone {
  --pw: 280px;
  --ph: 580px;
}
.mockups-band .phone:nth-child(odd) {
  transform: translateY(-20px);
}
@media (max-width: 720px) {
  .mockups-band .phone { --pw: 240px; --ph: 500px; }
  .mockups-band .phone:nth-child(odd) { transform: none; }
}

/* ---------- Security ---------- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .security-grid { grid-template-columns: 1fr; } }
.sec-card {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.025);
}
.sec-card .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(212,176,122,.12);
  color: var(--gold-soft);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.sec-card h4 { margin: 0 0 6px; font-size: 15px; color: #F8F0DE; font-weight: 600; }
.sec-card p { margin: 0; font-size: 13px; color: #B8AC9C; line-height: 1.55; }

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--border);
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-q .plus {
  width: 28px; height: 28px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  font-size: 16px;
  color: var(--muted);
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, margin .25s ease;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 680px;
}
.faq-item.open .faq-a {
  max-height: 320px;
  margin-top: 14px;
}

/* ---------- Final CTA ---------- */
.cta-final {
  padding: 100px 0;
  background: var(--bg-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(176,132,56,.10), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(212,176,122,.08), transparent 60%);
  pointer-events: none;
}
.cta-final h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 400;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  position: relative;
}
.cta-final h2 em { font-style: italic; color: var(--gold-deep); }
.cta-final p { font-size: 17px; color: var(--muted); margin: 0 0 32px; position: relative; }
.cta-final .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Footer ---------- */
.footer {
  padding: 56px 0 40px;
  background: var(--ink);
  color: #B8AC9C;
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer .logo { color: #F8F0DE; }
.footer-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #F8F0DE;
  margin: 0 0 14px;
  font-weight: 600;
}
.footer-col a { display: block; color: #B8AC9C; padding: 4px 0; transition: color .15s ease; }
.footer-col a:hover { color: #F8F0DE; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #88806F;
}

/* Audience switch — used in nav for variant B */
.audience-switch {
  display: inline-flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  font-size: 13px;
  gap: 2px;
}
.audience-switch button {
  padding: 7px 14px;
  border: none;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  color: var(--muted);
  transition: all .15s ease;
}
.audience-switch button.active {
  background: var(--ink);
  color: #fff;
}

/* Tag-line strip for trust under hero */
.trust-strip {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  justify-content: center;
}
.trust-strip strong { color: var(--ink); font-weight: 600; }
.trust-divider {
  width: 1px; height: 14px; background: var(--border);
}

/* Floating pill tag */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold-wash);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--gold-pale);
}
.pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Comparison slider */
.compare-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/5;
  user-select: none;
  cursor: ew-resize;
  background: #d6cbb6;
  box-shadow: var(--shadow-md);
}
.compare-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.compare-after {
  clip-path: inset(0 0 0 50%);
}
.compare-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.compare-handle::after {
  content: "⟷";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid; place-items: center;
  font-size: 18px;
  box-shadow: 0 6px 14px -4px rgba(0,0,0,.3);
}
.compare-label {
  position: absolute;
  top: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255,255,255,.92);
  color: var(--ink);
}
.compare-label.before { left: 14px; }
.compare-label.after { right: 14px; background: var(--gold); color: #fff; }

/* Animated underline link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--gold-deep);
  font-size: 14px;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 2px;
  transition: gap .2s ease, color .15s ease;
}
.link-arrow:hover { gap: 10px; color: var(--ink); }

/* Decorative serif quote */
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-style: italic;
  line-height: 1.25;
  font-weight: 300;
  letter-spacing: -0.01em;
}
