/* ===========================================================
   Homeopatie Brno — MUDr. Hana Hendrychová
   Sage / olive / cream theme
=========================================================== */

:root{
  --sage-950:#1f2818;
  --sage-900:#2a3521;
  --sage-800:#38452c;
  --sage-700:#4a5a3a;
  --sage-600:#5e7248;
  --sage-500:#7c9463;
  --sage-400:#9bb07f;
  --sage-200:#d3ddc0;
  --cream-50:#faf7ee;
  --cream-100:#f4eeda;
  --cream-200:#ece2c4;
  --terracotta-500:#c17a4f;
  --terracotta-600:#a8623a;
  --ink:#26301d;
  --ink-soft:#4d5943;
  --white:#ffffff;
  --shadow-sm:0 2px 10px rgba(38,48,29,.08);
  --shadow-md:0 12px 32px rgba(38,48,29,.14);
  --shadow-lg:0 24px 60px rgba(38,48,29,.20);
  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:28px;
  --radius-pill:999px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Inter',system-ui,sans-serif;
  color:var(--ink);
  background:var(--cream-50);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:'Fraunces',Georgia,serif;
  color:var(--sage-950);
  margin:0 0 .5em;
  line-height:1.15;
  font-weight:600;
}
p{margin:0 0 1em;}
a{color:inherit;text-decoration:none;}
ul{padding-left:1.2em;}
img{max-width:100%;display:block;}
.container{
  width:100%;
  max-width:1120px;
  margin:0 auto;
  padding:0 24px;
}
section{padding:104px 0;position:relative;}
.section-tight{padding:72px 0;}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--sage-600);
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:22px;height:2px;
  background:var(--terracotta-500);
  display:inline-block;
}
.section-head{max-width:680px;margin-bottom:48px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head h2{font-size:clamp(1.8rem,3.4vw,2.5rem);}
.lede{font-size:1.08rem;color:var(--ink-soft);}

/* ---- Buttons ---- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 26px;
  border-radius:var(--radius-pill);
  font-weight:600;
  font-size:.96rem;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn svg{width:17px;height:17px;flex-shrink:0;}
.btn-primary{background:var(--sage-700);color:var(--white);box-shadow:var(--shadow-sm);}
.btn-primary:hover{background:var(--sage-800);transform:translateY(-2px);box-shadow:var(--shadow-md);}
.btn-ghost{background:transparent;border-color:rgba(38,48,29,.18);color:var(--ink);}
.btn-ghost:hover{border-color:var(--sage-600);color:var(--sage-700);}
.btn-outline-light{background:transparent;border-color:rgba(255,255,255,.5);color:var(--white);}
.btn-outline-light:hover{background:rgba(255,255,255,.14);}
.btn-sm{padding:9px 18px;font-size:.86rem;}

/* ===========================================================
   Floating pill navigation
=========================================================== */
.nav-wrap{
  position:fixed;top:18px;left:0;right:0;
  z-index:1000;
  display:flex;justify-content:center;
  padding:0 16px;
  transition:top .3s ease;
}
.pill-nav{
  display:flex;align-items:center;gap:6px;
  background:rgba(250,247,238,.78);
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
  border:1px solid rgba(38,48,29,.08);
  border-radius:var(--radius-pill);
  padding:8px 10px 8px 20px;
  box-shadow:var(--shadow-sm);
  transition:box-shadow .3s ease, background .3s ease, padding .3s ease;
  max-width:100%;
}
.nav-wrap.scrolled .pill-nav{
  box-shadow:var(--shadow-md);
  background:rgba(250,247,238,.94);
}
.pill-logo{
  display:flex;align-items:center;gap:10px;
  font-family:'Fraunces',serif;
  font-weight:600;font-size:1.02rem;
  color:var(--sage-950);
  margin-right:6px;
  white-space:nowrap;
}
.pill-logo .mark{
  width:34px;height:34px;
  border-radius:50%;
  background:linear-gradient(150deg,var(--sage-500),var(--sage-800));
  display:flex;align-items:center;justify-content:center;
  color:var(--cream-50);
  flex-shrink:0;
}
.pill-logo .mark svg{width:18px;height:18px;}
.pill-links{display:flex;align-items:center;gap:2px;}
.pill-links a{
  padding:10px 14px;
  border-radius:var(--radius-pill);
  font-size:.9rem;font-weight:500;
  color:var(--ink-soft);
  transition:background .2s ease, color .2s ease;
  white-space:nowrap;
}
.pill-links a:hover{background:rgba(74,90,58,.08);color:var(--sage-800);}
.pill-links a.active{background:var(--sage-700);color:var(--white);}
.pill-cta{margin-left:8px;}
.pill-toggle{
  display:none;
  width:40px;height:40px;
  align-items:center;justify-content:center;
  border-radius:50%;border:none;background:transparent;
  color:var(--sage-900);cursor:pointer;margin-left:4px;
}
.pill-toggle svg{width:22px;height:22px;}

.mobile-sheet{
  position:fixed;inset:0;z-index:999;
  background:rgba(31,40,24,.5);
  backdrop-filter:blur(4px);
  opacity:0;visibility:hidden;
  transition:opacity .25s ease, visibility .25s ease;
}
.mobile-sheet.open{opacity:1;visibility:visible;}
.mobile-sheet-panel{
  position:absolute;top:86px;left:16px;right:16px;
  background:var(--cream-50);
  border-radius:var(--radius-md);
  padding:18px;
  box-shadow:var(--shadow-lg);
  display:flex;flex-direction:column;gap:4px;
  transform:translateY(-14px);
  transition:transform .25s ease;
}
.mobile-sheet.open .mobile-sheet-panel{transform:translateY(0);}
.mobile-sheet-panel a{
  padding:14px 16px;border-radius:var(--radius-sm);
  font-weight:600;color:var(--ink);
}
.mobile-sheet-panel a:hover{background:var(--cream-200);}
.mobile-sheet-panel .btn{margin-top:8px;}

@media (max-width:900px){
  .pill-links{display:none;}
  .pill-cta{display:none;}
  .pill-toggle{display:flex;}
}

/* ===========================================================
   Hero
=========================================================== */
.hero{
  position:relative;
  padding:172px 0 96px;
  background:
    radial-gradient(1100px 560px at 82% -10%, rgba(124,148,99,.25), transparent 60%),
    radial-gradient(800px 500px at -5% 20%, rgba(193,122,79,.14), transparent 55%),
    var(--cream-50);
  overflow:hidden;
}
.hero .container{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:56px;
  align-items:center;
}
.hero-copy .eyebrow{margin-bottom:18px;}
.hero h1{
  font-size:clamp(2.2rem,4.6vw,3.4rem);
  margin-bottom:20px;
}
.hero h1 em{color:var(--sage-700);font-style:normal;}
.hero-copy p.lede{font-size:1.14rem;max-width:520px;margin-bottom:32px;}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;}
.hero-stats{
  display:flex;gap:32px;margin-top:48px;flex-wrap:wrap;
}
.hero-stat b{
  display:block;font-family:'Fraunces',serif;font-size:1.7rem;color:var(--sage-800);
}
.hero-stat span{font-size:.86rem;color:var(--ink-soft);}

.hero-visual{position:relative;}
.hero-photo-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:20px;
  box-shadow:var(--shadow-lg);
  position:relative;
  z-index:2;
}
.hero-photo-frame{
  border-radius:var(--radius-md);
  overflow:hidden;
  aspect-ratio:4/3.6;
  background:linear-gradient(160deg,var(--sage-400),var(--sage-800));
  position:relative;
}
.hero-photo-frame img{
  width:100%;height:100%;object-fit:cover;
  object-position:center 30%;
  filter:saturate(1.05);
}
.hero-photo-caption{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:16px;
}
.hero-photo-caption b{font-family:'Fraunces',serif;color:var(--sage-950);font-size:1.05rem;}
.hero-photo-caption span{font-size:.82rem;color:var(--ink-soft);}
.badge-float{
  position:absolute;
  background:var(--terracotta-500);
  color:var(--white);
  padding:12px 18px;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-md);
  font-size:.85rem;
  font-weight:700;
  z-index:3;
  line-height:1.3;
}
.badge-float.b1{bottom:-18px;left:-24px;}
.badge-float b{display:block;font-family:'Fraunces',serif;font-size:1.4rem;}

@media (max-width:900px){
  .hero .container{grid-template-columns:1fr;}
  .hero{padding-top:150px;}
  .hero-visual{max-width:400px;margin:0 auto;}
}

/* ===========================================================
   Notice bar
=========================================================== */
.notice-bar{
  background:var(--sage-900);
  color:var(--cream-100);
  text-align:center;
  padding:12px 20px;
  font-size:.9rem;
  font-weight:500;
}
.notice-bar strong{color:var(--terracotta-500);}

/* ===========================================================
   Reveal animation
=========================================================== */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease, transform .7s ease;}
.reveal.is-visible{opacity:1;transform:translateY(0);}
.reveal-delay-1{transition-delay:.08s;}
.reveal-delay-2{transition-delay:.16s;}
.reveal-delay-3{transition-delay:.24s;}

/* ===========================================================
   About / bio
=========================================================== */
.about{background:var(--white);}
.about-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:64px;
  align-items:start;
}
.about-visual{
  position:sticky;top:120px;
}
.about-photo{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-md);
  aspect-ratio:4/3.4;
  background:linear-gradient(160deg,var(--sage-400),var(--sage-900));
}
.about-photo img{width:100%;height:100%;object-fit:cover;object-position:center 30%;}
.about-name-card{
  margin-top:18px;
  background:var(--cream-100);
  border-radius:var(--radius-md);
  padding:20px 22px;
}
.about-name-card b{font-family:'Fraunces',serif;font-size:1.1rem;color:var(--sage-950);display:block;}
.about-name-card span{font-size:.88rem;color:var(--ink-soft);}
.course-list{
  list-style:none;padding:0;margin:18px 0 0;
  display:flex;flex-direction:column;gap:10px;
}
.course-list li{
  display:flex;gap:12px;align-items:flex-start;
  font-size:.94rem;color:var(--ink-soft);
  padding:12px 14px;
  background:var(--cream-50);
  border-radius:var(--radius-sm);
}
.course-list svg{width:18px;height:18px;color:var(--sage-600);flex-shrink:0;margin-top:2px;}
.about-copy h3{font-size:1.3rem;margin-top:8px;}
.about-copy .lede{margin-bottom:8px;}

@media (max-width:900px){
  .about-grid{grid-template-columns:1fr;}
  .about-visual{position:static;max-width:420px;}
}

/* ===========================================================
   Philosophy / two-col text sections
=========================================================== */
.philosophy{background:var(--cream-100);}
.split-panels{
  display:grid;grid-template-columns:1fr 1fr;gap:28px;
}
.panel-card{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:32px 30px;
  box-shadow:var(--shadow-sm);
}
.panel-card h3{font-size:1.2rem;display:flex;align-items:center;gap:12px;}
.panel-card .icon-badge{
  width:40px;height:40px;border-radius:12px;
  background:var(--sage-700);color:var(--white);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.panel-card .icon-badge svg{width:20px;height:20px;}
.panel-card p{color:var(--ink-soft);font-size:.96rem;margin-bottom:0;}

@media (max-width:800px){.split-panels{grid-template-columns:1fr;}}

/* ===========================================================
   World / origin section (dark)
=========================================================== */
.origin{
  background:linear-gradient(165deg,var(--sage-950),var(--sage-800));
  color:var(--cream-100);
}
.origin h2,.origin h3{color:var(--white);}
.origin .lede{color:rgba(244,238,218,.82);}
.origin-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:40px;
}
.origin-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-md);
  padding:26px 24px;
}
.origin-card b{
  display:block;font-family:'Fraunces',serif;font-size:1.6rem;color:var(--terracotta-500);margin-bottom:6px;
}
.origin-card p{color:rgba(244,238,218,.78);font-size:.92rem;margin:0;}
.country-chip-row{
  display:flex;flex-wrap:wrap;gap:8px;margin-top:24px;
}
.country-chip{
  padding:7px 14px;border-radius:var(--radius-pill);
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.14);
  font-size:.82rem;color:rgba(244,238,218,.9);
}
@media (max-width:800px){.origin-grid{grid-template-columns:1fr;}}

/* ===========================================================
   Léčba (treatment) section
=========================================================== */
.treatment{background:var(--white);}
.treatment-grid{
  display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:start;
}
.condition-tags{
  display:flex;flex-wrap:wrap;gap:9px;margin:20px 0 26px;
}
.condition-tag{
  padding:8px 15px;
  background:var(--sage-200);
  color:var(--sage-900);
  border-radius:var(--radius-pill);
  font-size:.84rem;font-weight:600;
}
.flower-card{
  background:var(--cream-100);
  border-radius:var(--radius-lg);
  padding:32px;
}
.flower-card .icon-badge{
  width:48px;height:48px;border-radius:14px;
  background:var(--terracotta-500);color:var(--white);
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;
}
.flower-card .icon-badge svg{width:24px;height:24px;}
.flower-price{
  margin-top:18px;display:flex;align-items:baseline;gap:8px;
  font-family:'Fraunces',serif;color:var(--sage-900);
}
.flower-price b{font-size:1.5rem;}
.flower-price span{font-size:.85rem;color:var(--ink-soft);font-family:'Inter',sans-serif;}

@media (max-width:900px){.treatment-grid{grid-template-columns:1fr;}}

/* ===========================================================
   Léky (medicines) - process steps
=========================================================== */
.medicines{background:var(--cream-100);}
.process-row{
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-bottom:56px;
}
.process-step{
  background:var(--white);border-radius:var(--radius-md);
  padding:26px 22px;box-shadow:var(--shadow-sm);position:relative;
}
.process-step .num{
  width:34px;height:34px;border-radius:50%;
  background:var(--sage-700);color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-family:'Fraunces',serif;font-weight:600;margin-bottom:14px;
}
.process-step h4{font-size:1rem;margin-bottom:6px;}
.process-step p{font-size:.88rem;color:var(--ink-soft);margin:0;}
.rule-list{
  list-style:none;padding:0;margin:0;
  display:grid;grid-template-columns:1fr 1fr;gap:14px;
}
.rule-list li{
  background:var(--white);border-radius:var(--radius-sm);
  padding:16px 18px;font-size:.92rem;color:var(--ink-soft);
  display:flex;gap:10px;align-items:flex-start;
}
.rule-list svg{width:18px;height:18px;color:var(--terracotta-500);flex-shrink:0;margin-top:2px;}

@media (max-width:900px){.process-row{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.process-row,.rule-list{grid-template-columns:1fr;}}

/* ===========================================================
   V ordinaci (visit steps timeline)
=========================================================== */
.visit{background:var(--white);}
.timeline{
  position:relative;
  padding-left:40px;
  display:flex;flex-direction:column;gap:36px;
}
.timeline::before{
  content:"";position:absolute;left:11px;top:6px;bottom:6px;width:2px;
  background:var(--sage-200);
}
.timeline-item{position:relative;}
.timeline-item::before{
  content:"";position:absolute;left:-40px;top:2px;
  width:24px;height:24px;border-radius:50%;
  background:var(--sage-700);
  border:4px solid var(--cream-50);
  box-shadow:0 0 0 2px var(--sage-200);
}
.timeline-item h4{font-size:1.1rem;margin-bottom:8px;}
.timeline-item p{color:var(--ink-soft);margin:0;}

/* ===========================================================
   Pricing
=========================================================== */
.pricing{background:var(--cream-100);}
.price-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
.price-card{
  background:var(--white);border-radius:var(--radius-lg);
  padding:32px 28px;box-shadow:var(--shadow-sm);
  display:flex;flex-direction:column;
}
.price-card.featured{
  background:linear-gradient(165deg,var(--sage-800),var(--sage-950));
  color:var(--white);
  box-shadow:var(--shadow-md);
}
.price-card.featured h3,.price-card.featured .price-note{color:var(--white);}
.price-card h3{font-size:1.05rem;margin-bottom:4px;}
.price-card .price-amount{
  font-family:'Fraunces',serif;font-size:2.1rem;color:var(--sage-800);margin:10px 0;
}
.price-card.featured .price-amount{color:var(--terracotta-500);}
.price-card .price-note{font-size:.85rem;color:var(--ink-soft);margin-bottom:18px;}
.price-card ul{list-style:none;padding:0;margin:0 0 20px;display:flex;flex-direction:column;gap:8px;font-size:.9rem;flex-grow:1;}
.price-card ul li{display:flex;gap:8px;align-items:flex-start;}
.price-card ul svg{width:16px;height:16px;color:var(--terracotta-500);flex-shrink:0;margin-top:3px;}
.price-card.featured ul svg{color:var(--sage-400);}
.price-disclaimer{
  margin-top:28px;font-size:.86rem;color:var(--ink-soft);
  background:var(--white);padding:16px 20px;border-radius:var(--radius-sm);
}
@media (max-width:900px){.price-grid{grid-template-columns:1fr;}}

/* ===========================================================
   Accordion (FAQ / Listárna)
=========================================================== */
.accordion{display:flex;flex-direction:column;gap:12px;}
.accordion-item{
  background:var(--white);
  border:1px solid rgba(38,48,29,.1);
  border-radius:var(--radius-md);
  overflow:hidden;
}
.accordion-trigger{
  width:100%;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:20px 24px;
  background:none;border:none;text-align:left;
  font-family:'Fraunces',serif;font-size:1.02rem;color:var(--sage-950);
  cursor:pointer;
}
.accordion-trigger .meta{
  font-family:'Inter',sans-serif;font-size:.78rem;font-weight:600;
  color:var(--sage-600);display:block;margin-top:2px;
}
.accordion-trigger .plus{
  width:30px;height:30px;border-radius:50%;background:var(--cream-100);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  position:relative;transition:transform .3s ease, background .3s ease;
}
.accordion-trigger .plus::before,.accordion-trigger .plus::after{
  content:"";position:absolute;background:var(--sage-800);border-radius:2px;
}
.accordion-trigger .plus::before{width:12px;height:2px;}
.accordion-trigger .plus::after{width:2px;height:12px;}
.accordion-item.open .accordion-trigger .plus{transform:rotate(135deg);background:var(--terracotta-500);}
.accordion-item.open .accordion-trigger .plus::before,
.accordion-item.open .accordion-trigger .plus::after{background:var(--white);}
.accordion-panel{
  max-height:0;overflow:hidden;
  transition:max-height .35s ease;
}
.accordion-panel-inner{
  padding:0 24px 22px;color:var(--ink-soft);font-size:.95rem;
}
.accordion-panel-inner p:last-child{margin-bottom:0;}

.listarna-note{
  background:var(--cream-100);
  border-radius:var(--radius-md);
  padding:20px 24px;margin-bottom:28px;
  font-size:.94rem;color:var(--ink-soft);
  display:flex;gap:14px;align-items:flex-start;
}
.listarna-note svg{width:22px;height:22px;color:var(--sage-600);flex-shrink:0;margin-top:2px;}

/* ===========================================================
   Contact
=========================================================== */
.contact{background:var(--white);}
.contact-grid{
  display:grid;grid-template-columns:.95fr 1.05fr;gap:48px;align-items:start;
}
.contact-info-card{
  background:var(--cream-100);
  border-radius:var(--radius-lg);
  padding:36px 32px;
}
.contact-row{
  display:flex;gap:16px;align-items:flex-start;
  padding:16px 0;border-bottom:1px solid rgba(38,48,29,.08);
}
.contact-row:last-child{border-bottom:none;padding-bottom:0;}
.contact-row:first-child{padding-top:0;}
.contact-row .icon-badge{
  width:42px;height:42px;border-radius:12px;
  background:var(--sage-700);color:var(--white);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.contact-row .icon-badge svg{width:20px;height:20px;}
.contact-row b{display:block;font-size:.95rem;color:var(--sage-950);margin-bottom:2px;}
.contact-row span,.contact-row a{font-size:.92rem;color:var(--ink-soft);}
.contact-row a:hover{color:var(--sage-700);}

.hours-table{width:100%;border-collapse:collapse;margin-top:8px;}
.hours-table td{padding:9px 0;font-size:.92rem;border-bottom:1px solid rgba(38,48,29,.06);color:var(--ink-soft);}
.hours-table tr:last-child td{border-bottom:none;}
.hours-table td:last-child{text-align:right;font-weight:600;color:var(--ink);}
.hours-table tr.today td{color:var(--sage-800);font-weight:700;}
.hours-table tr.today td:first-child::before{
  content:"● ";color:var(--terracotta-500);
}

.map-card{
  border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm);
  aspect-ratio:16/11;background:var(--cream-200);
}
.map-card iframe{width:100%;height:100%;border:0;display:block;}
.access-card{
  background:var(--cream-100);
  border-radius:var(--radius-md);
  padding:22px 24px;margin-top:20px;
  display:flex;gap:14px;align-items:flex-start;
}
.access-card svg{width:22px;height:22px;color:var(--sage-600);flex-shrink:0;margin-top:2px;}
.access-card b{display:block;font-size:.92rem;color:var(--sage-950);margin-bottom:3px;}
.access-card p{font-size:.88rem;color:var(--ink-soft);margin:0;}
.access-cards{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:20px;}

@media (max-width:900px){
  .contact-grid{grid-template-columns:1fr;}
  .access-cards{grid-template-columns:1fr;}
}

/* ===========================================================
   Footer
=========================================================== */
footer{
  background:var(--sage-950);
  color:rgba(244,238,218,.75);
  padding:56px 0 28px;
}
.footer-top{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:32px;
  padding-bottom:36px;border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand{display:flex;align-items:center;gap:12px;color:var(--white);font-family:'Fraunces',serif;font-size:1.15rem;}
.footer-brand .mark{
  width:38px;height:38px;border-radius:50%;
  background:linear-gradient(150deg,var(--sage-500),var(--sage-800));
  display:flex;align-items:center;justify-content:center;color:var(--white);
}
.footer-brand .mark svg{width:19px;height:19px;}
.footer-links{display:flex;gap:36px;flex-wrap:wrap;}
.footer-col h5{
  color:var(--white);font-size:.82rem;text-transform:uppercase;letter-spacing:.08em;
  margin:0 0 12px;font-family:'Inter',sans-serif;font-weight:700;
}
.footer-col a{display:block;font-size:.9rem;padding:5px 0;color:rgba(244,238,218,.75);}
.footer-col a:hover{color:var(--white);}
.footer-bottom{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
  padding-top:24px;font-size:.84rem;
}
.footer-bottom a{color:rgba(244,238,218,.75);}
.footer-bottom a:hover{color:var(--white);}

@media (max-width:700px){.footer-top{flex-direction:column;}}

/* ===========================================================
   Legal page
=========================================================== */
.legal-page{padding:170px 0 100px;}
.back-link{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.9rem;font-weight:600;color:var(--sage-700);margin-bottom:24px;
}
.back-link svg{width:16px;height:16px;}
.legal-meta{
  display:inline-block;font-size:.8rem;color:var(--ink-soft);
  background:var(--cream-100);padding:6px 14px;border-radius:var(--radius-pill);margin-bottom:18px;
}
.legal-page h1{font-size:2rem;margin-bottom:20px;}
.legal-page h2{font-size:1.25rem;margin-top:36px;}
.legal-page p,.legal-page li{color:var(--ink-soft);font-size:.98rem;}
.legal-page ul{margin-bottom:1em;}

/* Scrollbar niceties */
::selection{background:var(--sage-400);color:var(--sage-950);}
