/* ============================================================
   Sage Dental Studio — site stylesheet
   Type: Fraunces (display) / IBM Plex Sans (body) / IBM Plex Mono (labels)
   ============================================================ */

:root{
  --ink:      #16241f;
  --paper:    #eef1ea;
  --paper-2:  #e3e8de;
  --deep:     #1f3a33;
  --deep-2:   #16302a;
  --sage:     #6f8f7a;
  --sage-2:   #567163;
  --brick:    #ba4a3a;
  --brick-2:  #a13d2f;
  --muted:    #55655c;
  --line:     rgba(22,36,31,.14);
  --line-lt:  rgba(238,241,234,.22);

  --font-display: "Fraunces", serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --container: 1120px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  line-height:1.08;
  margin:0 0 .5em;
  letter-spacing:-.01em;
}
p{ margin:0 0 1em; }
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}
.eyebrow{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--sage-2);
  display:inline-flex;
  align-items:center;
  gap:.55em;
  margin-bottom:14px;
}


/* focus visibility */
a:focus-visible, button:focus-visible{
  outline:2.5px solid var(--brick);
  outline-offset:3px;
  border-radius:2px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ---------------- icons ---------------- */
.icon{
  width:1em; height:1em;
  stroke:currentColor;
  fill:none;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex-shrink:0;
}

/* ---------------- instrument rule (signature divider) ---------------- */
.tool-rule{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  overflow:hidden;
  color:var(--sage);
  opacity:.55;
  margin:0;
  height:34px;
}
.tool-rule svg{ width:30px; height:30px; flex-shrink:0; margin:0 22px; }
.tool-rule .rule-line{
  height:1px; flex:1 1 auto; background:var(--line);
}
.on-deep .tool-rule{ color:var(--paper); opacity:.35; }
.on-deep .tool-rule .rule-line{ background:var(--line-lt); }

/* ---------------- header ---------------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(238,241,234,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 28px;
  max-width:var(--container);
  margin:0 auto;
}
.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none; color:var(--ink);
}
.brand-mark{ width:34px; height:34px; color:var(--deep); }
.brand-text{ line-height:1.2; }
.brand-name{
  font-family:var(--font-display);
  font-weight:600;
  font-size:19px;
  letter-spacing:-.01em;
}
.brand-role{
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted);
}
nav.main-nav{
  display:flex; align-items:center; gap:30px;
}
nav.main-nav a{
  text-decoration:none;
  font-size:15px;
  color:var(--muted);
  position:relative;
  padding:4px 0;
}
nav.main-nav a:hover{ color:var(--ink); }
nav.main-nav a[aria-current="page"]{ color:var(--ink); }
nav.main-nav a[aria-current="page"]::after{
  content:""; position:absolute; left:0; right:0; bottom:-3px; height:2px; background:var(--brick);
}
.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--brick); color:var(--paper) !important;
  font-family:var(--font-mono);
  font-size:13px;
  padding:9px 16px!important;
  border-radius:3px;
  text-decoration:none;
  white-space:nowrap;
}
.nav-cta:hover{ background:var(--brick-2); }
.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width:40px; height:40px; align-items:center; justify-content:center;
  color:var(--ink);
}
.nav-toggle svg{ width:22px; height:22px; }

@media (max-width:860px){
  nav.main-nav{
    position:fixed; inset:64px 0 0 0;
    background:var(--paper);
    flex-direction:column;
    align-items:flex-start;
    padding:26px 28px;
    gap:22px;
    transform:translateX(100%);
    transition:transform .35s ease;
    border-top:1px solid var(--line);
  }
  nav.main-nav.open{ height: fit-content; transform:translateX(0); }
  nav.main-nav a{ font-size:20px; }
  .nav-toggle{ display:inline-flex; }
  .nav-cta{ margin-top:6px; }
}

/* ---------------- buttons ---------------- */
.btn{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--font-mono);
  font-size:14px;
  letter-spacing:.02em;
  padding:13px 22px;
  border-radius:3px;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
}
.btn svg{ width:16px; height:16px; }
.btn-primary{ background:var(--brick); color:var(--paper); }
.btn-primary:hover{ background:var(--brick-2); }
.btn-outline{ border-color:currentColor; color:var(--paper); }
.btn-outline:hover{ background:var(--line-lt); }
.btn-outline.on-light{ color:var(--ink); border-color:var(--ink); }
.btn-outline.on-light:hover{ background:var(--paper-2); }
.btn-row{ display:flex; flex-wrap:wrap; gap:14px; }

/* ---------------- hero ---------------- */
.hero{
  background:var(--deep);
  color:var(--paper);
  position:relative;
  overflow:hidden;
  padding:74px 0 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:40px;
  align-items:center;
  padding-bottom:56px;
}
.hero h1{
  font-size:clamp(38px,5.4vw,62px);
  color:var(--paper);
}
.hero h1 em{ font-style:italic; color:#cddccb; }
.hero .lede{
  font-size:18px;
  color:#d4ded2;
  max-width:46ch;
  margin-bottom:28px;
}
.hero-badges{
  display:flex; flex-wrap:wrap; gap:10px 22px;
  margin-top:30px;
  font-family:var(--font-mono);
  font-size:12.5px;
  color:#b9c7b6;
}
.hero-badges span{ display:flex; align-items:center; gap:7px; }
.hero-badges svg{ width:15px; height:15px; }

.hero-art{ position:relative; }
.smile-arc{ width:100%; height:auto; color:#3f5c53; }
.smile-arc .accent{ color:var(--paper); }

@media (max-width:860px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-art{ order:-1; max-width:280px; margin:0 auto 10px; }
}

/* ---------------- sections ---------------- */
section{ padding:78px 0; }
.section-head{ max-width:60ch; margin-bottom:44px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ color:var(--muted); font-size:17px; }
h2{ font-size:clamp(28px,3.4vw,40px); }

.on-deep{ background:var(--deep); color:var(--paper); }
.on-deep h2, .on-deep h3{ color:var(--paper); }
.on-deep p{ color:#cfdaca; }
.on-deep .section-head p{ color:#cfdaca; }

/* service / feature cards */
.grid{ display:grid; gap:22px; }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:860px){
  .grid-3{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; }
}

.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:6px;
  padding:30px 26px;
}
.on-deep .card{
  background:rgba(238,241,234,.05);
  border-color:var(--line-lt);
}
.card .icon-wrap{
  width:46px; height:46px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--paper-2);
  color:var(--deep);
  margin-bottom:18px;
}
.on-deep .card .icon-wrap{ background:rgba(238,241,234,.1); color:var(--paper); }
.card .icon-wrap svg{ width:22px; height:22px; }
.card h3{ font-size:20px; margin-bottom:8px; }
.card p{ color:var(--muted); font-size:15.5px; margin:0; }
.on-deep .card p{ color:#c7d3c2; }

/* banner strip */
.strip{
  background:var(--paper-2);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.strip .container{
  display:flex; flex-wrap:wrap; gap:26px 44px;
  align-items:center; justify-content:space-between;
  padding-top:30px; padding-bottom:30px;
}
.strip-item{ display:flex; align-items:center; gap:12px; font-size:15px; }
.strip-item .icon-wrap{
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--paper); color:var(--deep); flex-shrink:0;
}
.strip-item .icon-wrap svg{ width:18px; height:18px; }
.strip-item strong{ display:block; font-size:15px; }
.strip-item span.sub{ color:var(--muted); font-size:13.5px; }

/* area badges */
.area-badges{ display:flex; flex-wrap:wrap; gap:12px; }
.area-badge{
  font-family:var(--font-mono);
  font-size:13.5px;
  letter-spacing:.03em;
  border:1px solid var(--line);
  padding:9px 16px;
  border-radius:100px;
  display:inline-flex; align-items:center; gap:8px;
}
.area-badge svg{ width:14px; height:14px; color:var(--sage-2); }

/* CTA band */
.cta-band{
  background:var(--brick);
  color:#fbeeeb;
  text-align:center;
}
.cta-band h2{ color:#fff; }
.cta-band p{ color:#f6dbd5; max-width:50ch; margin:0 auto 28px; }
.cta-band .btn-row{ justify-content:center; }
.cta-band .btn-outline{ border-color:#fbeeeb; color:#fbeeeb; }
.cta-band .btn-outline:hover{ background:rgba(255,255,255,.12); }
.cta-band .btn-primary{ background:var(--ink); }
.cta-band .btn-primary:hover{ background:#0d1815; }

/* two-column content */
.split{
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;
}
@media (max-width:860px){ .split{ grid-template-columns:1fr; gap:32px; } }

.quote-mark{
  font-family:var(--font-display);
  font-size:52px;
  color:var(--sage);
  line-height:1;
  margin-bottom:6px;
}

/* list with checks */
.check-list{ list-style:none; margin:0; padding:0; display:grid; gap:14px; }
.check-list li{ display:flex; gap:12px; align-items:flex-start; }
.check-list svg{ width:19px; height:19px; color:var(--sage-2); margin-top:3px; flex-shrink:0; }

/* timeline-free numbered steps -> using tool icon markers instead */
.steps{ display:grid; gap:26px; }
.step{ display:flex; gap:20px; }
.step .marker{
  width:46px; height:46px; border-radius:50%;
  background:var(--deep); color:var(--paper);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.step .marker svg{ width:21px; height:21px; }
.step h3{ font-size:18px; margin-bottom:4px; }
.step p{ color:var(--muted); margin:0; font-size:15.5px; }

/* contact page */
.contact-grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:50px;
}
@media (max-width:860px){ .contact-grid{ grid-template-columns:1fr; } }

.contact-card{
  border:1px solid var(--line);
  border-radius:6px;
  padding:26px;
  display:flex; gap:16px; align-items:flex-start;
  margin-bottom:16px;
  background:var(--paper);
}
.contact-card .icon-wrap{
  width:42px; height:42px; border-radius:50%;
  background:var(--paper-2); color:var(--deep);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-card .icon-wrap svg{ width:19px; height:19px; }
.contact-card h3{ font-size:16.5px; margin-bottom:3px; font-family:var(--font-body); font-weight:600; }
.contact-card a.value{ font-family:var(--font-mono); font-size:15px; color:var(--deep); text-decoration:none; }
.contact-card a.value:hover{ text-decoration:underline; }
.contact-card p{ margin:4px 0 0; color:var(--muted); font-size:14px; }

form.reach-form{
  display:grid; gap:16px;
  background:var(--paper-2);
  border:1px solid var(--line);
  border-radius:6px;
  padding:28px;
}
.reach-form label{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
  display:block;
  margin-bottom:6px;
}
.reach-form input, .reach-form textarea{
  width:100%;
  font-family:var(--font-body);
  font-size:15px;
  padding:11px 13px;
  border:1px solid var(--line);
  border-radius:4px;
  background:var(--paper);
  color:var(--ink);
}
.reach-form textarea{ resize:vertical; min-height:110px; }
.reach-form input:focus, .reach-form textarea:focus{
  outline:2px solid var(--sage); outline-offset:1px;
}
.form-note{ font-size:13px; color:var(--muted); margin-top:-2px; }

/* faq */
.faq-item{ border-bottom:1px solid var(--line); padding:22px 0; }
.faq-item h3{ font-size:17px; margin-bottom:8px; }
.faq-item p{ color:var(--muted); margin:0; }

/* ---------------- booking page ---------------- */
.booking-shell{
  display:grid;
  grid-template-columns:1.3fr .95fr;
  gap:44px;
  align-items:start;
}
@media (max-width:900px){ .booking-shell{ grid-template-columns:1fr; } }

.booking-panel{
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--paper);
  padding:28px;
}
.booking-step-label{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--sage-2);
  margin-bottom:10px;
  display:flex; align-items:center; gap:8px;
}
.booking-step-label .num{
  width:20px; height:20px; border-radius:50%;
  background:var(--deep); color:var(--paper);
  display:inline-flex; align-items:center; justify-content:center;
  font-size:11px;
}

.service-search{
  position:relative;
  margin-bottom:14px;
}
.service-search svg{
  position:absolute; left:13px; top:50%; transform:translateY(-50%);
  width:16px; height:16px; color:var(--muted); pointer-events:none;
}
.service-search input{
  width:100%;
  font-family:var(--font-body);
  font-size:15px;
  padding:11px 13px 11px 38px;
  border:1px solid var(--line);
  border-radius:4px;
  background:var(--paper);
  color:var(--ink);
}
.service-search input:focus{ outline:2px solid var(--sage); outline-offset:1px; }

.service-options.scrollable{
  max-height:360px;
  overflow-y:auto;
  padding-right:6px;
  margin-bottom:6px;
}
.service-group-label{
  font-family:var(--font-mono);
  font-size:11px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--sage-2);
  margin:16px 0 8px;
}
.service-group-label:first-child{ margin-top:2px; }
.service-options.scrollable .service-option{ margin-bottom:8px; }
.service-option-other{
  border-top:1px dashed var(--line);
  padding-top:14px;
  margin-top:10px;
}
.other-field{ margin-top:6px; margin-bottom:14px; }

.service-empty{
  color:var(--muted);
  font-size:14.5px;
  padding:20px 4px;
  text-align:center;
}
.service-option{
  display:flex; align-items:center; justify-content:space-between;
  border:1px solid var(--line);
  border-radius:6px;
  padding:14px 16px;
  cursor:pointer;
  background:var(--paper);
}
.service-option input{ accent-color:var(--brick); margin-right:12px; }
.service-option .label-row{ display:flex; align-items:center; }
.service-option .name{ font-size:15.5px; }
.service-option .duration{
  font-family:var(--font-mono); font-size:12.5px; color:var(--muted);
}
.service-option.selected{
  border-color:var(--brick);
  background:rgba(186,74,58,.05);
}

.date-row{
  display:flex; gap:10px; overflow-x:auto; padding-bottom:10px; margin-bottom:22px;
  scrollbar-width:thin;
}
.date-chip{
  flex:0 0 auto;
  border:1px solid var(--line);
  border-radius:8px;
  padding:12px 16px;
  text-align:center;
  cursor:pointer;
  background:var(--paper);
  min-width:64px;
}
.date-chip .dow{ font-family:var(--font-mono); font-size:11px; text-transform:uppercase; color:var(--muted); }
.date-chip .dom{ font-family:var(--font-display); font-size:20px; font-weight:600; margin-top:2px; }
.date-chip.selected{ border-color:var(--brick); background:rgba(186,74,58,.06); }
.date-chip.disabled{ opacity:.35; cursor:not-allowed; }

.slot-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:8px;
}
.slot-btn{
  flex:0 0 auto;
  width:84px;
  box-sizing:border-box;
  font-family:var(--font-mono);
  font-size:13.5px;
  padding:10px 8px;
  border:1px solid var(--line);
  border-radius:5px;
  background:var(--paper);
  cursor:pointer;
  text-align:center;
}
.slot-btn:hover{ border-color:var(--sage); }
.slot-btn.selected{ background:var(--deep); color:var(--paper); border-color:var(--deep); }
.slot-empty{
  font-size:14.5px; color:var(--muted); padding:18px 0;
}

.booking-summary{
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--deep);
  color:var(--paper);
  padding:26px;
  position:sticky;
  top:96px;
}
@media (max-width:900px){
  .booking-summary{ position:static; }
  .booking-panel{ padding:22px 18px; }
  .booking-progress .plabel{ display:none; }
  .progress-line{ margin-bottom:0; }
  .slot-btn{ width:96px; }
  .date-chip{ min-width:56px; padding:10px 12px; }
  .booking-nav-row{ flex-wrap:wrap; }
}
.booking-summary h3{ color:var(--paper); font-size:19px; margin-bottom:16px; }
.summary-line{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 0;
  border-bottom:1px solid var(--line-lt);
  font-size:14.5px;
}
.summary-line span:first-child{ color:#a9bda3; font-family:var(--font-mono); font-size:12px; text-transform:uppercase; letter-spacing:.06em; }
.summary-line.empty span:last-child{ color:#8ea497; }
.booking-summary .btn-row{ margin-top:20px; flex-direction:column; }
.booking-summary .btn{ justify-content:center; width:100%; }
.booking-note{ font-size:12.5px; color:#a9bda3; margin-top:16px; line-height:1.5; }

.confirm-banner{
  display:none;
  background:var(--sage);
  color:#0e1a16;
  border-radius:6px;
  padding:16px 18px;
  font-size:14.5px;
  margin-top:16px;
  align-items:flex-start;
  gap:10px;
}
.confirm-banner.show{ display:flex; }

/* progress steps */
.booking-progress{
  display:flex; align-items:center;
  margin-bottom:32px;
}
.progress-step{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  flex:0 0 auto;
}
.progress-step .dot{
  width:30px; height:30px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1.5px solid var(--line);
  font-family:var(--font-mono); font-size:13px;
  color:var(--muted);
  background:var(--paper);
}
.progress-step .plabel{
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--muted);
  white-space:nowrap;
}
.progress-step.active .dot{ border-color:var(--brick); background:var(--brick); color:var(--paper); }
.progress-step.active .plabel{ color:var(--ink); }
.progress-step.done .dot{ border-color:var(--sage-2); background:var(--sage-2); color:var(--paper); }
.progress-line{ flex:1 1 auto; height:1px; background:var(--line); margin:0 4px 20px; min-width:12px; }

/* booking nav row (back / next / submit) */
.booking-nav-row{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid var(--line);
}
.booking-nav-row .btn-outline.on-light{ border-color:var(--line); color:var(--ink); }
.booking-nav-row .btn-outline.on-light:hover{ background:var(--paper-2); }
.booking-nav-row #step-next,
.booking-nav-row #booking-submit{ margin-left:auto; }

/* form field helpers (booking step 4) */
.field-label{
  font-family:var(--font-mono);
  font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--muted); display:block; margin-bottom:6px;
}
.field-input{
  width:100%;
  font-family:var(--font-body);
  font-size:15px;
  padding:11px 13px;
  border:1px solid var(--line);
  border-radius:4px;
  background:var(--paper);
  color:var(--ink);
}
.field-input:focus{ outline:2px solid var(--sage); outline-offset:1px; }

/* month calendar */
.calendar-wrap{
  border:1px solid var(--line);
  border-radius:8px;
  padding:18px 18px 8px;
  background:var(--paper);
}
.calendar-header{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:14px;
}
.calendar-month-label{
  font-family:var(--font-display);
  font-weight:600;
  font-size:18px;
}
.cal-nav-btn{
  width:34px; height:34px; border-radius:50%;
  border:1px solid var(--line);
  background:var(--paper);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  color:var(--ink);
}
.cal-nav-btn:hover{ border-color:var(--sage); }
.cal-nav-btn:disabled{ opacity:.3; cursor:not-allowed; }
.cal-nav-btn:disabled:hover{ border-color:var(--line); }
.cal-nav-btn svg{ width:16px; height:16px; }

.calendar-dow-row{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:4px;
  margin-bottom:6px;
}
.calendar-dow-row span{
  text-align:center;
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--muted);
  padding-bottom:4px;
}
.calendar-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:4px;
  margin-bottom:10px;
}
.cal-cell{
  aspect-ratio:1 / 1;
  min-height:0;
}
.cal-cell.pad{ visibility:hidden; }
.cal-day-btn{
  width:100%; height:100%;
  border:1px solid transparent;
  border-radius:6px;
  background:transparent;
  font-family:var(--font-body);
  font-size:14.5px;
  color:var(--ink);
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.cal-day-btn:hover{ border-color:var(--sage); }
.cal-day-btn.today{ font-weight:600; color:var(--sage-2); }
.cal-day-btn.selected{ background:var(--deep); border-color:var(--deep); color:var(--paper); }
.cal-day-btn:disabled{
  color:var(--line);
  cursor:not-allowed;
  background:transparent;
  border-color:transparent;
}
.cal-day-btn:disabled:hover{ border-color:transparent; }

@media (max-width:520px){
  .cal-day-btn{ font-size:13px; }
  .calendar-wrap{ padding:14px 10px 6px; }
  .slot-btn{ width:calc(50% - 5px); }
}

.confirm-banner svg{ width:20px; height:20px; flex-shrink:0; margin-top:1px; }

footer.site-footer{
  background:var(--deep-2);
  color:#c7d3c2;
  padding:56px 0 30px;
}
.footer-grid{
  display:grid; grid-template-columns:1.3fr .8fr .8fr .9fr; gap:40px;
  padding-bottom:36px;
  border-bottom:1px solid var(--line-lt);
  margin-bottom:22px;
}
@media (max-width:760px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:14px; color:var(--paper); }
.footer-brand svg{ width:26px; height:26px; }
.footer-brand span{ font-family:var(--font-display); font-size:18px; font-weight:600; }
.footer-col h4{
  font-family:var(--font-mono);
  font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  color:#8ea497; margin-bottom:14px; font-weight:500;
}
.footer-col ul{ list-style:none; margin:0; padding:0; display:grid; gap:9px; }
.footer-col a{ text-decoration:none; color:#c7d3c2; font-size:14.5px; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px;
  font-size:13px; color:#8ea497;
}
