/* ============================================================
   Harris Family Dentistry — Parkersburg, WV
   "Clinical-Sage" — WV forest-green + warm sand + brass
   Fraunces + Inter Tight
   ============================================================ */

:root {
  --sage:        #243B36;
  --sage-mid:    #2E4B44;
  --sage-dark:   #172A26;
  --sage-cta:    #1A3530;

  --brass:       #B98B5E;
  --brass-bright:#D0A878;
  --brass-deep:  #8A6540;

  --clay:        #C46A5C;

  --paper:       #FAF7F2;
  --paper-2:     #EFE9E0;
  --paper-soft:  #FCFAF6;
  --ivory:       #F4EDE0;
  --rule:        #DDD5C8;
  --sand:        #E8DFD2;
  --sand-soft:   #F0EAE0;

  --ink:         #1E2A28;
  --ink-soft:    #3D4A47;
  --mute:        #6B7570;

  --gold:        #C8993A;

  --display: 'Fraunces', Georgia, serif;
  --body:    'Inter Tight', 'Inter', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

*,*::before,*::after { box-sizing: border-box }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100% }
body {
  margin: 0; font-family: var(--body); font-size: 16px; line-height: 1.65;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto }
a { color: inherit; text-decoration: none }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit }
:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 2px }
::selection { background: var(--sage); color: var(--ivory) }

/* film grain — house signature */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 200;
  opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
@media (prefers-reduced-motion: reduce) { body::after { display: none } }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100;
  background: linear-gradient(90deg, var(--brass), var(--sage)); transition: width .1s linear;
}

/* ---------- type ---------- */
.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--mute); font-weight: 500 }
.kicker { font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-deep); font-weight: 500; display: inline-flex; align-items: center; gap: 9px }
.kicker::before { content: ""; width: 22px; height: 1.5px; background: var(--brass); display: inline-block }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 .4em }
h1 { font-size: clamp(38px, 5.5vw, 78px); line-height: 1.04; letter-spacing: -.02em }
h2 { font-size: clamp(28px, 3.8vw, 50px); line-height: 1.1; letter-spacing: -.015em }
h3 { font-size: clamp(18px, 2vw, 26px); line-height: 1.22 }
h4 { font-size: 18px; line-height: 1.3 }
p { margin: 0 0 1em }
.lead { font-size: clamp(16px, 1.5vw, 20px); line-height: 1.62; color: var(--ink-soft); max-width: 60ch }
em { font-style: italic; color: var(--sage) }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter) }
.wrap-tight { max-width: 1080px; margin-inline: auto; padding-inline: var(--gutter) }
section { padding: clamp(60px, 9vw, 128px) 0 }
.split { display: grid; gap: clamp(28px, 5vw, 72px); grid-template-columns: 1fr 1fr; align-items: center }
@media (max-width: 880px) { .split { grid-template-columns: 1fr } }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; font-family: var(--body);
  font-weight: 500; font-size: 14px; letter-spacing: .03em; border-radius: 999px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease; white-space: nowrap }
.btn--primary { background: var(--sage); color: var(--ivory); box-shadow: 0 8px 22px -10px rgba(36,59,54,.5) }
.btn--primary:hover { background: var(--sage-cta); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(36,59,54,.6) }
.btn--brass { background: var(--brass); color: var(--ink); box-shadow: 0 8px 22px -10px rgba(185,139,94,.6) }
.btn--brass:hover { background: var(--brass-deep); color: var(--ivory); transform: translateY(-2px) }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid rgba(30,42,40,.28) }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink) }
.btn--ghost-light { background: transparent; color: var(--ivory); border: 1px solid rgba(244,237,224,.4) }
.btn--ghost-light:hover { background: var(--ivory); color: var(--sage-dark) }
.btn .arrow { transition: transform .25s ease }
.btn:hover .arrow { transform: translateX(4px) }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221,213,200,.9); transition: box-shadow .3s ease, background .3s ease;
}
.nav.scrolled { box-shadow: 0 6px 24px -16px rgba(36,59,54,.35) }
.nav__inner { max-width: var(--maxw); margin-inline: auto; padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px }
.nav__logo { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 1.15rem; color: var(--sage-dark); font-weight: 400 }
.nav__logo-icon { width: 32px; height: 32px; flex-shrink: 0 }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0 }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--ink-soft); transition: color .2s ease; position: relative }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0; background: var(--brass); transition: width .25s ease }
.nav__links a:hover, .nav__links a.active { color: var(--sage) }
.nav__links a:hover::after, .nav__links a.active::after { width: 100% }
.nav__cta { display: flex; align-items: center; gap: 14px }
.nav__phone { font-family: var(--mono); font-size: 13px; color: var(--sage); font-weight: 500; letter-spacing: .02em }
.nav__toggle { display: none; width: 28px; height: 28px; flex-direction: column; gap: 6px; justify-content: center; align-items: center }
.nav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s ease, opacity .3s ease }
@media (max-width: 980px) {
  .nav__links, .nav__phone { display: none }
  .nav__toggle { display: flex }
  .nav__open .nav__links { display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
    position: fixed; inset: 65px 0 auto 0; background: var(--paper); padding: 28px var(--gutter) 36px;
    border-bottom: 1px solid var(--rule); box-shadow: 0 20px 40px -24px rgba(0,0,0,.2) }
  .nav__open .nav__links a::after { display: none }
  .nav__open .nav__phone { display: block; margin-top: 6px; font-size: 16px }
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; padding: clamp(40px, 6vw, 76px) 0 clamp(48px, 7vw, 96px);
  background:
    radial-gradient(120% 90% at 88% 10%, rgba(185,139,94,.12) 0%, rgba(185,139,94,0) 55%),
    radial-gradient(110% 80% at 0% 100%, rgba(232,223,210,.7) 0%, rgba(232,223,210,0) 60%),
    var(--paper);
}
.hero__inner { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(28px, 5vw, 72px); align-items: center }
.hero__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 26px }
.hero__meta .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 4px rgba(185,139,94,.2); animation: pulse 2.6s ease-in-out infinite }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(185,139,94,.2) } 50% { box-shadow: 0 0 0 8px rgba(185,139,94,.05) } }
.hero__title { margin-bottom: 26px }
.hero__title em { font-style: italic; font-family: var(--display); color: var(--sage) }
.hero__lead { margin-bottom: 34px; max-width: 48ch }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center }
.hero__cta-note { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--mute); text-transform: uppercase }

.hero__photo { position: relative }
.hero__panel { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/4.4;
  background: linear-gradient(165deg, var(--sage) 0%, var(--sage-mid) 40%, var(--sage-dark) 100%);
  box-shadow: 0 40px 80px -34px rgba(23,42,38,.5) }
.hero__panel::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 12%, rgba(255,255,255,.12), transparent 60%) }
.hero__panel img { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  height: 100%; width: auto; max-width: none; object-fit: contain; object-position: bottom;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.16)) }
.hero__panel-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 18px; padding: 32px }
.hero__panel-tooth { opacity: .35 }
.hero__seal { position: absolute; top: 18px; left: 18px; background: rgba(250,247,242,.96);
  border-radius: 10px; padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.25); backdrop-filter: blur(4px) }
.hero__seal svg { width: 26px; height: 26px }
.hero__seal-t { font-family: var(--body); font-weight: 600; font-size: 13px; color: var(--sage-dark); line-height: 1.1 }
.hero__seal-t small { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; color: var(--mute); text-transform: uppercase; margin-top: 2px; font-weight: 400 }
.hero__badge { position: absolute; right: -14px; bottom: 30px; background: var(--paper); padding: 16px 20px; border-radius: 12px;
  box-shadow: 0 16px 36px -14px rgba(36,59,54,.35); max-width: 220px }
.hero__badge-row { display: flex; align-items: center; gap: 8px }
.hero__badge-num { font-family: var(--display); font-size: 30px; font-weight: 400; color: var(--sage); line-height: 1 }
.hero__badge-stars { display: flex; gap: 2px; color: var(--gold) }
.hero__badge-stars svg { width: 13px; height: 13px }
.hero__badge-lbl { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); margin-top: 6px }
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr }
  .hero__photo { max-width: 440px; margin: 0 auto; width: 100% }
  .hero__panel { aspect-ratio: 4/4.2 }
  .hero__badge { right: 6px }
}

/* ---------- ticker ---------- */
.ticker { background: var(--sage-dark); color: var(--ivory); overflow: hidden; padding: 16px 0; white-space: nowrap }
.ticker__track { display: inline-flex; gap: 0; align-items: center; animation: scrollx 42s linear infinite; will-change: transform }
.ticker:hover .ticker__track { animation-play-state: paused }
@keyframes scrollx { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.ticker__item { font-family: var(--mono); font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,237,224,.88); padding: 0 26px; display: inline-flex; align-items: center; gap: 26px }
.ticker__item::after { content: "●"; color: var(--brass); font-size: 7px }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; flex-wrap: wrap; white-space: normal; justify-content: center; gap: 14px 0 } }

/* ---------- about ---------- */
.about { background: var(--paper) }
.about__photo { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 5/6;
  background: linear-gradient(165deg, var(--sand) 0%, var(--sage) 130%);
  box-shadow: 0 30px 64px -30px rgba(36,59,54,.4) }
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center }
.about__photo--portrait { background: linear-gradient(170deg, var(--sand-soft), var(--sage-mid) 160%) }
.about__photo--portrait img { object-fit: contain; object-position: bottom center }
.about__quote { font-family: var(--display); font-style: italic;
  font-size: clamp(19px, 1.8vw, 25px); line-height: 1.5; color: var(--sage-dark); padding: 18px 0; margin: 24px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule) }
.about__credits { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; margin-top: 24px }
.about__cred-l { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--mute) }
.about__cred-v { font-family: var(--body); font-weight: 500; font-size: 15px; color: var(--ink); margin-top: 4px }

/* ---------- services ---------- */
.services { background: var(--paper-2) }
.services__head { display: flex; justify-content: space-between; align-items: end; gap: 36px; margin-bottom: 56px }
.services__head h2 { max-width: 18ch; margin: 0 }
.services__head p { max-width: 38ch; color: var(--ink-soft); margin: 0 }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule) }
@media (max-width: 880px) { .services__head { flex-direction: column; align-items: start } .services__grid { grid-template-columns: 1fr } }
.service { background: var(--paper-2); padding: 40px 32px; display: flex; flex-direction: column; gap: 16px; transition: background .35s ease; position: relative }
.service:hover { background: var(--paper) }
.service__num { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--brass-deep) }
.service__icon { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; color: var(--sage);
  background: rgba(185,139,94,.12); border-radius: 12px; transition: background .35s ease, color .35s ease }
.service:hover .service__icon { background: var(--sage); color: var(--ivory) }
.service__title { font-family: var(--display); font-weight: 400; font-size: 21px; letter-spacing: -.01em; margin: 0 }
.service__copy { font-size: 14.5px; line-height: 1.62; color: var(--ink-soft); margin: 0 }
.service__link { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-deep);
  display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; transition: gap .25s ease }
.service__link:hover { gap: 13px }

/* ---------- tech band ---------- */
.tech { background: linear-gradient(160deg, var(--sage-dark) 0%, #0D1E1B 100%); color: var(--ivory); position: relative; overflow: hidden }
.tech::before { content: ""; position: absolute; inset: 0; opacity: .4;
  background: radial-gradient(60% 80% at 85% 20%, rgba(185,139,94,.25), transparent 60%) }
.tech__inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center }
.tech h2 { color: var(--ivory) }
.tech__copy { color: rgba(244,237,224,.82); max-width: 50ch }
.tech__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px }
.tech__list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: rgba(244,237,224,.9) }
.tech__list svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--brass-bright); margin-top: 2px }
.tech__card { background: rgba(255,255,255,.05); border: 1px solid rgba(244,237,224,.14); border-radius: 16px; padding: 38px; backdrop-filter: blur(6px) }
.tech__scan { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-bright) }
.tech__big { font-family: var(--display); font-weight: 400; font-size: clamp(40px, 5vw, 64px); color: var(--ivory); line-height: 1; margin: 14px 0 6px }
.tech__sub { color: rgba(244,237,224,.7); font-size: 14px }
.tech__divider { height: 1px; background: rgba(244,237,224,.14); margin: 26px 0 }
@media (max-width: 880px) { .tech__inner { grid-template-columns: 1fr; gap: 36px } }

/* ---------- offers ---------- */
.offers { background: var(--sand-soft) }
.offers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px }
@media (max-width: 880px) { .offers__grid { grid-template-columns: 1fr } }
.offer { background: var(--paper); border: 1px solid var(--rule); border-radius: 16px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px; position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease }
.offer:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -26px rgba(36,59,54,.3) }
.offer::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--brass), var(--sage)) }
.offer__tag { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-deep) }
.offer__big { font-family: var(--display); font-weight: 400; font-size: 42px; color: var(--sage); line-height: 1 }
.offer__title { font-family: var(--display); font-weight: 400; font-size: 19px; color: var(--ink); margin: 0 }
.offer__copy { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.55 }
.offer__fine { font-size: 11px; color: var(--mute); margin-top: auto; line-height: 1.4 }

/* ---------- hours ribbon ---------- */
.hours-ribbon { background: var(--sand); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule) }
.hours-ribbon__inner { display: grid; grid-template-columns: auto repeat(7, 1fr); align-items: stretch }
.hours-ribbon__lbl { padding: 24px 28px; font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage); border-right: 1px solid var(--rule); display: flex; align-items: center; background: var(--sand-soft) }
.hours-cell { padding: 22px 16px; border-right: 1px solid var(--rule); display: flex; flex-direction: column; gap: 6px }
.hours-cell:last-child { border-right: none }
.hours-cell.closed { background: rgba(36,59,54,.04) }
.hours-cell__day { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--mute) }
.hours-cell__time { font-family: var(--body); font-weight: 500; font-size: 14px; color: var(--sage-dark); letter-spacing: -.01em }
.hours-cell.closed .hours-cell__time { color: var(--mute); font-style: italic; font-family: var(--display); font-weight: 400 }
@media (max-width: 880px) {
  .hours-ribbon__inner { grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule) }
  .hours-ribbon__lbl { grid-column: 1/-1; border-right: none }
  .hours-cell { background: var(--sand); border-right: none }
}

/* ---------- team ---------- */
.team { background: var(--paper) }
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px }
@media (max-width: 880px) { .team__grid { grid-template-columns: 1fr 1fr } }
@media (max-width: 520px) { .team__grid { grid-template-columns: 1fr } }
.member { display: flex; flex-direction: column }
.member__photo { aspect-ratio: 1/1; border-radius: 14px; overflow: hidden;
  background: linear-gradient(165deg, var(--sand-soft), var(--sage) 180%); margin-bottom: 18px; position: relative }
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s ease }
.member:hover .member__photo img { transform: scale(1.04) }
.member__name { font-family: var(--display); font-weight: 400; font-size: 18px; color: var(--ink); margin: 0 }
.member__role { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-deep); margin-top: 5px }

/* ---------- gallery soon ---------- */
.gallery-soon { background: linear-gradient(160deg, var(--sage-dark), #0D1E1B) }
.gallery-soon .wrap { position: relative }
.gallery-soon__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center }
.gallery-soon h2, .gallery-soon .kicker { color: var(--ivory) }
.gallery-soon .kicker { color: var(--brass-bright) }
.gallery-soon__copy { color: rgba(244,237,224,.78); max-width: 48ch }
.gallery-soon__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.gallery-soon__ph { aspect-ratio: 4/3; border: 1px dashed rgba(244,237,224,.3); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(244,237,224,.5);
  background: rgba(255,255,255,.03) }
.gallery-soon__ph svg { width: 34px; height: 34px; opacity: .55; color: var(--brass-bright) }
@media (max-width: 880px) { .gallery-soon__inner { grid-template-columns: 1fr } }

/* ---------- first visit steps ---------- */
.first-visit { background: var(--paper-2) }
.first-visit__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border-top: 1px solid var(--rule); margin-top: 48px }
@media (max-width: 880px) { .first-visit__steps { grid-template-columns: 1fr 1fr } }
@media (max-width: 560px) { .first-visit__steps { grid-template-columns: 1fr } }
.step { background: var(--paper-2); padding: 32px 26px; display: flex; flex-direction: column; gap: 14px }
.step__n { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-deep) }
.step__t { font-family: var(--display); font-weight: 400; font-size: 18px; color: var(--ink); margin: 0 }
.step__c { font-size: 14px; line-height: 1.58; color: var(--ink-soft); margin: 0 }

/* ---------- insurance ---------- */
.insurance { background: var(--sand-soft) }
.insurance__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px }
@media (max-width: 880px) { .insurance__grid { grid-template-columns: 1fr } }
.insurance__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px }
.insurance__list li { font-family: var(--mono); font-size: 12px; letter-spacing: .03em; color: var(--ink-soft);
  padding: 11px 0; border-bottom: 1px solid var(--rule); display: flex; align-items: center; gap: 10px }
.insurance__list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brass) }

/* ---------- reviews ---------- */
.reviews { background: var(--paper) }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px }
@media (max-width: 880px) { .reviews__grid { grid-template-columns: 1fr } }
.review { padding: 32px 28px; background: var(--paper-2); border: 1px solid var(--rule); border-radius: 14px;
  display: flex; flex-direction: column; gap: 18px; transition: transform .3s ease, box-shadow .3s ease }
.review:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -28px rgba(36,59,54,.3) }
.review__stars { display: flex; gap: 3px; color: var(--gold) }
.review__stars svg { width: 15px; height: 15px }
.review__copy { font-family: var(--display); font-style: italic; font-weight: 400; font-size: 17.5px; line-height: 1.5; color: var(--ink); letter-spacing: -.005em; margin: 0 }
.review__meta { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--mute);
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--rule); display: flex; align-items: center; gap: 10px }
.review__g { width: 16px; height: 16px; flex-shrink: 0 }
.reviews__cta { display: flex; gap: 12px; justify-content: center; margin-top: 48px; flex-wrap: wrap }

/* ---------- faq ---------- */
.faq { background: var(--paper-2) }
.faq__list { margin-top: 48px; border-top: 1px solid var(--rule) }
.faq__item { border-bottom: 1px solid var(--rule) }
.faq__q { width: 100%; text-align: left; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--display); font-weight: 400; font-size: clamp(18px, 2vw, 22px); color: var(--ink); transition: color .2s ease }
.faq__q:hover { color: var(--sage) }
.faq__icon { width: 30px; height: 30px; flex-shrink: 0; border: 1px solid var(--rule); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: transform .3s ease, background .3s ease, border-color .3s ease }
.faq__icon svg { width: 11px; height: 11px; transition: transform .3s ease }
.faq__item.open .faq__icon { background: var(--sage); border-color: var(--sage); color: var(--ivory) }
.faq__item.open .faq__icon svg { transform: rotate(45deg) }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease;
  font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); max-width: 66ch }
.faq__item.open .faq__a { max-height: 460px; padding: 0 0 28px }

/* ---------- book CTA ---------- */
.book { background: linear-gradient(160deg, var(--sage-dark), #0D1E1B); color: var(--ivory); position: relative; overflow: hidden }
.book::before { content: ""; position: absolute; inset: 0; opacity: .5; background: radial-gradient(50% 70% at 90% 30%, rgba(185,139,94,.25), transparent 60%) }
.book .wrap { position: relative }
.book h2 { color: var(--ivory); max-width: 18ch; margin: 0 0 .3em }
.book p { color: rgba(244,237,224,.8); max-width: 46ch }
.book__embed { background: rgba(255,255,255,.06); border: 1px dashed rgba(244,237,224,.28); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px; padding: 40px 28px; text-align: center }
.book__embed-lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-bright) }
.book__embed-t { font-family: var(--display); font-weight: 400; font-size: 22px; color: var(--ivory) }
.book__embed-c { font-size: 14px; color: rgba(244,237,224,.72); max-width: 38ch }

/* ---------- visit ---------- */
.visit { background: var(--paper) }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start }
@media (max-width: 880px) { .visit__grid { grid-template-columns: 1fr } }
.visit__map { aspect-ratio: 5/4; border-radius: 12px; overflow: hidden; background: var(--sand); border: 1px solid var(--rule); box-shadow: 0 24px 50px -30px rgba(36,59,54,.3) }
.visit__map iframe { width: 100%; height: 100%; border: 0; display: block }
.visit__details dl { display: grid; grid-template-columns: auto 1fr; gap: 16px 28px; margin: 0 }
.visit__details dt { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); padding-top: 4px }
.visit__details dd { margin: 0; font-size: 15.5px; color: var(--ink); line-height: 1.55 }
.visit__details dd a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px }

/* ---------- footer ---------- */
footer { background: var(--sage-dark); color: rgba(244,237,224,.7); padding: 80px 0 32px }
.foot__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px }
@media (max-width: 880px) { .foot__top { grid-template-columns: 1fr 1fr } }
@media (max-width: 560px) { .foot__top { grid-template-columns: 1fr } }
.foot__brand-name { font-family: var(--display); font-size: 1.25rem; color: var(--ivory); margin-bottom: 12px }
.foot__col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(244,237,224,.5); margin: 0 0 18px; font-weight: 500 }
.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px }
.foot__col a, .foot__col li { color: rgba(244,237,224,.82); font-size: 14px; transition: color .2s ease }
.foot__col a:hover { color: var(--brass-bright) }
.foot__bot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding-top: 30px;
  border-top: 1px solid rgba(244,237,224,.1); font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; color: rgba(244,237,224,.4); text-transform: uppercase }
.foot__credit a { color: var(--brass-bright) }
.foot__shijil { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; color: rgba(244,237,224,.35); text-align: center; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(244,237,224,.08) }
.foot__shijil a { color: rgba(244,237,224,.5) }

/* ---------- reveal (fail-open) ---------- */
.reveal { transition: opacity .8s ease, transform .8s ease }
.reveal--hidden { opacity: 0; transform: translateY(22px) }
.reveal--visible { opacity: 1; transform: translateY(0) }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--hidden, .reveal--visible { transition: none !important; opacity: 1 !important; transform: none !important }
  * { scroll-behavior: auto !important }
}

/* ---------- inner page hero ---------- */
.page-hero { padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 7vw, 84px); position: relative; overflow: hidden;
  background: radial-gradient(110% 90% at 90% 0%, rgba(185,139,94,.12), transparent 55%),
    linear-gradient(180deg, var(--paper), var(--sand-soft)); border-bottom: 1px solid var(--rule) }
.page-hero__crumb { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); margin-bottom: 24px }
.page-hero__crumb a { color: var(--sage) }
.page-hero h1 { max-width: 18ch; margin-bottom: 24px }
.page-hero__lead { max-width: 56ch }

/* helpers */
.muted { color: var(--mute) }
.center { text-align: center }
.mt-1 { margin-top: 10px } .mt-2 { margin-top: 20px } .mt-3 { margin-top: 30px } .mt-4 { margin-top: 40px }
.mb-3 { margin-bottom: 30px } .mb-4 { margin-bottom: 40px }
.mx-auto { margin-inline: auto }

/* ---------- page-hero fix ---------- */
.page-hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) }
.page-hero__sub { font-size: clamp(16px, 1.8vw, 18px); color: var(--ink-soft); max-width: 58ch; margin-top: 12px }

/* ---------- section head ---------- */
.section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); max-width: 640px; margin-inline: auto }
.section-head h2 { margin-bottom: 14px }
.section-head p { color: var(--ink-soft); max-width: 52ch; margin-inline: auto }

/* ---------- cta-strip ---------- */
.cta-strip { background: linear-gradient(160deg, var(--sage-dark), #0D1E1B); color: var(--ivory); padding: clamp(48px,7vw,80px) 0; position: relative; overflow: hidden }
.cta-strip::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 70% at 90% 30%, rgba(185,139,94,.22), transparent 60%); pointer-events:none }
.cta-strip .wrap { position: relative }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap }
.cta-strip__text h2 { color: var(--ivory); max-width: 22ch; margin: 0 0 .2em }
.cta-strip__text .kicker { color: var(--brass-bright) }
.cta-strip__actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap }
@media (max-width: 700px) { .cta-strip__inner { flex-direction: column; align-items: flex-start } }

/* ---------- svc-detail (services page) ---------- */
.svc-detail { padding: clamp(64px,9vw,112px) 0; border-bottom: 1px solid var(--rule) }
.svc-detail--alt { background: var(--paper-2) }
.svc-detail--highlight { background: linear-gradient(160deg, var(--sage-dark), #0D1E1B); color: var(--ivory) }
.svc-detail--highlight .kicker { color: var(--brass-bright) }
.svc-detail--highlight h2 { color: var(--ivory) }
.svc-detail--highlight p { color: rgba(244,237,224,.82) }
.svc-detail--highlight .svc-list li { color: rgba(244,237,224,.85); border-color: rgba(244,237,224,.15) }
.svc-detail__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: center }
@media (max-width: 860px) { .svc-detail__inner { grid-template-columns: 1fr } }
.svc-detail__visual { border-radius: 16px; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(36,59,54,.22) }
.svc-detail__visual svg { width: 100%; height: auto; display: block }
.svc-detail__text h2 { margin: .2em 0 .8em }
.svc-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 0 }
.svc-list li { padding: 8px 0; border-bottom: 1px solid var(--rule); font-size: 15px; color: var(--ink-soft); padding-left: 18px; position: relative }
.svc-list li::before { content:"→"; position: absolute; left: 0; color: var(--brass); font-size: 12px; top: 10px }
.svc-laser-badge { background: rgba(185,139,94,.12); border: 1px solid rgba(185,139,94,.3); border-radius: 10px; padding: 18px 22px; margin-bottom: 28px }
.svc-laser-badge p { font-size: 14px; color: rgba(244,237,224,.72); margin: 0 }
.emergency-cta-group { display: flex; gap: 16px; flex-wrap: wrap }

/* ---------- about bio ---------- */
.about-bio { padding: clamp(64px,9vw,112px) 0; border-bottom: 1px solid var(--rule) }
.about-bio__inner { display: grid; grid-template-columns: 380px 1fr; gap: clamp(40px,6vw,80px); align-items: start }
@media (max-width: 900px) { .about-bio__inner { grid-template-columns: 1fr } }
.about-bio__portrait svg { width: 100%; height: auto; border-radius: 16px; display: block; box-shadow: 0 30px 60px -20px rgba(36,59,54,.25) }
.about-bio__credentials { margin-top: 20px; padding: 20px 22px; background: var(--paper-2); border-radius: 10px; border: 1px solid var(--rule) }
.about-bio__credentials ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 6px }
.about-bio__credentials li { font-size: 13.5px; color: var(--ink-soft); padding-left: 14px; position: relative }
.about-bio__credentials li::before { content:"·"; position:absolute; left:0; color: var(--brass) }
.about-bio__lead { font-size: clamp(18px,2vw,20px); color: var(--ink); font-weight: 400; margin-bottom: 20px; line-height: 1.55 }
.about-bio__content h2 { margin: .2em 0 .6em }
.about-bio__content p { color: var(--ink-soft); margin-bottom: 16px }
.about-values { display: flex; flex-direction: column; gap: 24px; margin-top: 32px }
.about-value { display: flex; gap: 18px; align-items: flex-start }
.about-value__icon { flex-shrink: 0; width: 40px; height: 40px }
.about-value__icon svg { width: 40px; height: 40px }
.about-value strong { display: block; font-size: 16px; margin-bottom: 4px; color: var(--ink) }
.about-value p { font-size: 14.5px; color: var(--ink-soft); margin: 0 }

/* ---------- team ---------- */
.team-section { padding: clamp(64px,9vw,112px) 0; background: var(--paper-2); border-bottom: 1px solid var(--rule) }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px }
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr 1fr } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr } }
.team-card { background: var(--paper); border-radius: 14px; overflow: hidden; border: 1px solid var(--rule); box-shadow: 0 4px 20px -8px rgba(36,59,54,.1) }
.team-card__img svg { width: 100%; height: auto; display: block }
.team-card__info { padding: 22px 24px }
.team-card__info strong { display: block; font-size: 18px; font-family: var(--display); margin-bottom: 4px; color: var(--ink) }
.team-card__info span { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--brass); margin-bottom: 10px }
.team-card__info p { font-size: 14px; color: var(--ink-soft); margin: 0 }

/* ---------- philosophy quote ---------- */
.philosophy { padding: clamp(56px,8vw,100px) 0; background: var(--sage); }
.philosophy__inner { max-width: 800px; margin: 0 auto; text-align: center }
.philosophy__quote { margin: 0; padding: 0; color: var(--ivory) }
.philosophy__mark { font-family: var(--display); font-size: clamp(64px,10vw,120px); color: var(--brass); line-height: 0.6; display: block; margin-bottom: 24px }
.philosophy__quote p { font-family: var(--display); font-style: italic; font-size: clamp(20px,2.5vw,28px); font-weight: 300; line-height: 1.5; color: rgba(244,237,224,.9); max-width: 38ch; margin: 0 auto 24px }
.philosophy__quote cite { font-style: normal; font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-bright) }

/* ---------- steps (new patient) ---------- */
.steps-section { padding: clamp(64px,9vw,112px) 0; border-bottom: 1px solid var(--rule) }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr } }
.step-card { padding: 28px; background: var(--paper-2); border-radius: 14px; border: 1px solid var(--rule) }
.step-card__num { font-family: var(--display); font-size: 48px; font-weight: 300; color: var(--brass); opacity: .6; line-height: 1; margin-bottom: 16px }
.step-card__body strong { display: block; font-size: 17px; margin-bottom: 8px; color: var(--ink) }
.step-card__body p { font-size: 14px; color: var(--ink-soft); margin: 0 }
.step-card__body a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px }

/* ---------- what to bring ---------- */
.bring-section { padding: clamp(64px,9vw,112px) 0; background: var(--paper-2); border-bottom: 1px solid var(--rule) }
.bring-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start }
@media (max-width: 860px) { .bring-section__inner { grid-template-columns: 1fr } }
.bring-section__text h2 { margin: .2em 0 .8em }
.bring-checklist { display: flex; flex-direction: column; gap: 0 }
.bring-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--rule) }
.bring-icon { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px }
.bring-icon svg { width: 22px; height: 22px }
.bring-item strong { display: block; font-size: 15.5px; margin-bottom: 2px; color: var(--ink) }
.bring-item span { font-size: 14px; color: var(--ink-soft) }
.bring-section__callout { display: flex; flex-direction: column; gap: 18px }
.callout-card { padding: 28px 30px; border-radius: 14px; border: 1px solid var(--rule) }
.callout-card--sage { background: var(--sage); color: var(--ivory) }
.callout-card--sage h3 { color: var(--ivory); margin: .2em 0 .5em; font-size: clamp(18px,2vw,22px) }
.callout-card--sage p { color: rgba(244,237,224,.8); font-size: 14.5px; margin: 0 }
.callout-card--brass { background: var(--ivory); border-color: var(--brass) }
.callout-card--brass h3 { color: var(--sage); margin: .2em 0 .5em; font-size: clamp(18px,2vw,22px) }
.callout-card--brass p { color: var(--ink-soft); font-size: 14.5px; margin: 0 }

/* ---------- insurance (new patient) ---------- */
.insurance-section { padding: clamp(64px,9vw,112px) 0; border-bottom: 1px solid var(--rule) }
.insurance-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 36px }
@media (max-width: 860px) { .insurance-grid { grid-template-columns: 1fr 1fr } }
@media (max-width: 560px) { .insurance-grid { grid-template-columns: 1fr } }
.ins-card { padding: 28px; background: var(--paper-2); border-radius: 14px; border: 1px solid var(--rule) }
.ins-card__icon { display: block; margin-bottom: 16px }
.ins-card__icon svg { width: 48px; height: 48px }
.ins-card strong { display: block; font-size: 16.5px; margin-bottom: 8px; color: var(--ink) }
.ins-card p { font-size: 14px; color: var(--ink-soft); margin: 0 }
.insurance-note { font-size: 15px; color: var(--ink-soft); text-align: center; max-width: 52ch; margin: 0 auto }
.insurance-note a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px }

/* ---------- faq (on new-patient page) ---------- */
.faq { padding: clamp(64px,9vw,112px) 0; background: var(--paper-2); border-bottom: 1px solid var(--rule) }
.faq__list { border-top: 1px solid var(--rule); max-width: 800px; margin: 0 auto }

/* ---------- location (visit page) ---------- */
.location-section { padding: clamp(64px,9vw,112px) 0; border-bottom: 1px solid var(--rule) }
.location-section__inner { display: grid; grid-template-columns: 1fr 420px; gap: clamp(40px,5vw,64px); align-items: start }
@media (max-width: 960px) { .location-section__inner { grid-template-columns: 1fr } }
.location-map { border-radius: 12px; overflow: hidden; box-shadow: 0 24px 50px -20px rgba(36,59,54,.2) }
.location-info { display: flex; flex-direction: column; gap: 16px }
.location-card { padding: 22px 24px; background: var(--paper-2); border-radius: 12px; border: 1px solid var(--rule) }
.location-address { font-style: normal; font-size: 18px; line-height: 1.5; color: var(--ink); margin: 6px 0 16px; font-weight: 500 }
.location-phone { font-family: var(--display); font-size: 26px; color: var(--sage); display: block; margin: 4px 0 8px }
.location-note { font-size: 13px; color: var(--mute); margin: 0 }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px }
.hours-table th, .hours-table td { text-align: left; padding: 8px 4px; border-bottom: 1px solid var(--rule); font-size: 14.5px }
.hours-table th { color: var(--mute); font-weight: 500; padding-right: 28px }
.hours-table td { color: var(--ink) }
.hours-closed th, .hours-closed td { color: var(--mute); font-style: italic }
.location-card--parking p { font-size: 14px; color: var(--ink-soft); margin: 6px 0 0 }
.btn--sm { padding: 8px 16px; font-size: 13px; margin-top: 6px; display: inline-flex }

/* ---------- contact/book form (visit page) ---------- */
.contact-section { padding: clamp(64px,9vw,112px) 0; background: var(--paper-2); border-bottom: 1px solid var(--rule) }
.contact-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start }
@media (max-width: 860px) { .contact-section__inner { grid-template-columns: 1fr } }
.contact-section__text h2 { margin: .2em 0 .6em }
.contact-section__text p { color: var(--ink-soft); font-size: 15px }
.contact-section__text a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px }
.contact-reassurance { background: rgba(196,106,92,.08); border: 1px solid rgba(196,106,92,.22); border-radius: 10px; padding: 14px 18px; margin-top: 20px }
.contact-reassurance p { font-size: 13px; color: var(--ink-soft); margin: 0 }
.form { background: var(--paper); border: 1px solid var(--rule); border-radius: 14px; padding: clamp(24px,4vw,40px); box-shadow: 0 8px 30px -10px rgba(36,59,54,.1) }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr } }
.form__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px }
.form__field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); letter-spacing: .02em }
.form__field input, .form__field select, .form__field textarea {
  padding: 12px 16px; border: 1px solid var(--rule); border-radius: 8px; background: var(--paper-soft);
  font: inherit; font-size: 15px; color: var(--ink); outline: none; transition: border-color .2s ease }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus { border-color: var(--sage) }
.form__field textarea { resize: vertical; min-height: 100px }
.form__privacy { font-size: 12.5px; color: var(--mute); line-height: 1.6; margin-bottom: 20px; padding: 14px 16px; background: var(--paper-2); border-radius: 8px; border: 1px solid var(--rule) }
.form__privacy p { margin: 0 }
.btn--block { width: 100%; justify-content: center }

/* ---------- footer inner pages ---------- */
.foot { background: var(--sage-dark); color: rgba(244,237,224,.7) }
.foot__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,7vw,80px) var(--gutter) clamp(32px,4vw,48px); display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; align-items: start }
@media (max-width: 800px) { .foot__inner { grid-template-columns: 1fr 1fr } }
@media (max-width: 500px) { .foot__inner { grid-template-columns: 1fr } }
.foot__brand { display: flex; align-items: flex-start; gap: 14px }
.foot__brand strong { display: block; font-family: var(--display); font-size: 18px; color: var(--ivory); margin-bottom: 4px }
.foot__brand span { font-size: 13px; color: rgba(244,237,224,.55) }
.foot__nav { display: flex; flex-direction: column; gap: 10px }
.foot__nav a { font-size: 14px; color: rgba(244,237,224,.75); transition: color .2s ease }
.foot__nav a:hover { color: var(--brass-bright) }
.foot__contact a { font-family: var(--display); font-size: 22px; color: var(--brass-bright); display: block; margin-bottom: 10px }
.foot__contact address { font-style: normal; font-size: 14px; color: rgba(244,237,224,.72); line-height: 1.6; margin-bottom: 8px }
.foot__hours-mini { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(244,237,224,.45); margin: 0 }
.foot__legal { max-width: var(--maxw); margin: 0 auto; padding: 18px var(--gutter) 32px; border-top: 1px solid rgba(244,237,224,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; color: rgba(244,237,224,.4); text-transform: uppercase }
.foot__legal .foot__shijil { text-transform: none; font-size: 10px; border: none; padding: 0; margin: 0 }
.foot__legal .foot__shijil a { color: rgba(244,237,224,.5) }
