/* ==========================================================================
   BINKONUT TIP MERKEZİ — v3 design system
   "Editorial clinical" — Swiss grid precision, Anatolian warmth.
   Tokens → base → type → buttons → shell → footer → atoms.
   Section/component + motion layer lives in extra.css.
   ========================================================================== */

:root {
  /* --- structure / ink ------------------------------------------------ */
  --ink-950: #04141a;
  --ink-900: #061f27;
  --ink-800: #0a2b34;
  --ink-700: #12434d;
  --ink-600: #1b5a64;

  /* --- brand petrol --------------------------------------------------- */
  --petrol-500: #16707a;
  --petrol-400: #2e9099;
  --petrol-300: #6fbfc2;
  --mist-200: #cbe4e1;
  --mist-100: #e8f2f0;

  /* --- warm accent (coral) -------------------------------------------- */
  --coral-700: #a62e16;
  --coral-600: #c33d20;   /* coral for text/icons on paper — 5.0:1 on bone */
  --coral-500: #ff5c39;   /* brand coral: graphics, glows, display scale */
  --coral-400: #ff8260;
  --coral-100: #ffece6;
  /* filled accents carry a white label, so they use the deeper pair (>=4.8:1) */
  --coral-fill-a: #cb4326;
  --coral-fill-b: #a62e16;
  /* whatsapp green, deepened so a white label clears AA */
  --wa-600: #157f45;
  --wa-700: #0f6335;

  /* --- paper ---------------------------------------------------------- */
  --bone: #fcfaf6;
  --sand-100: #f7f2e9;
  --sand-200: #efe7da;
  --white: #ffffff;

  /* --- text ----------------------------------------------------------- */
  --text: #0e2a31;
  --text-mut: #4c6a70;
  --text-soft: #5f7378;
  --text-soft-ink: #8aa3a7;
  --text-on-ink: #f4faf9;
  --text-on-ink-mut: #a8c4c6;

  /* --- lines ---------------------------------------------------------- */
  --line: rgba(6, 31, 39, 0.1);
  --line-2: rgba(6, 31, 39, 0.18);
  --line-3: rgba(6, 31, 39, 0.3);
  --line-ink: rgba(255, 255, 255, 0.13);
  --line-ink-2: rgba(255, 255, 255, 0.26);

  /* --- elevation ------------------------------------------------------ */
  --sh-1: 0 1px 2px rgba(6, 31, 39, 0.05);
  --sh-2: 0 8px 24px -10px rgba(6, 31, 39, 0.16);
  --sh-3: 0 24px 48px -20px rgba(6, 31, 39, 0.24), 0 4px 12px -6px rgba(6, 31, 39, 0.08);
  --sh-4: 0 40px 80px -32px rgba(4, 20, 26, 0.42);
  --sh-accent: 0 16px 34px -14px rgba(223, 69, 38, 0.55);

  /* --- geometry ------------------------------------------------------- */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-full: 999px;
  --wrap-w: 1280px;
  --gut: clamp(20px, 4vw, 56px);

  /* --- type ----------------------------------------------------------- */
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --t-hero: clamp(2.5rem, 6.4vw, 5.1rem);
  --t-h1: clamp(2.1rem, 4.4vw, 3.5rem);
  --t-h2: clamp(1.65rem, 2.9vw, 2.5rem);
  --t-h3: clamp(1.15rem, 1.6vw, 1.4rem);
  --t-body: 1.0625rem;
  --t-sm: 0.9375rem;
  --t-xs: 0.8125rem;
  --t-micro: 0.6875rem;

  /* --- motion --------------------------------------------------------- */
  --e-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --e-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --e-spring: cubic-bezier(0.34, 1.32, 0.64, 1);
  --d-1: 0.18s;
  --d-2: 0.34s;
  --d-3: 0.6s;

  --z-sticky: 60;
  --z-drawer: 90;
  --z-top: 100;
}

/* ---------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  /* clip at the viewport, not on <body>: keeping body's overflow visible means
     the viewport stays the only scroll container (sticky/fixed and
     scroll-behavior keep behaving). */
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.62;
  color: var(--text);
  background: var(--bone);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
img { background: var(--sand-200); }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
a { color: inherit; text-decoration: none; }
b, strong { font-weight: 700; }

::selection { background: var(--coral-500); color: #fff; }

:focus-visible {
  outline: 2.5px solid var(--coral-500);
  outline-offset: 3px;
  border-radius: 3px;
}

/* thin, brand-tinted scrollbar (WebKit + Firefox) */
* { scrollbar-width: thin; scrollbar-color: var(--petrol-400) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--sand-100); }
::-webkit-scrollbar-thumb { background: var(--petrol-400); border: 3px solid var(--sand-100); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--petrol-500); }

/* ---------------------------------------------------------------- layout -- */
.wrap {
  width: min(100% - (var(--gut) * 2), var(--wrap-w));
  margin-inline: auto;
}

.sec { padding-block: clamp(56px, 8vw, 118px); position: relative; }
.sec + .sec { border-top: 1px solid var(--line); }
.sec--tight { padding-block: clamp(36px, 5vw, 64px); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: fixed; top: -100px; left: 16px; z-index: var(--z-top);
  background: var(--ink-900); color: #fff; padding: 12px 18px;
  border-radius: var(--r-sm); font-size: var(--t-sm); font-weight: 700;
  transition: top var(--d-2) var(--e-out);
}
.skip:focus { top: 16px; }

.btn-ico, .kicker-ico {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}
/* ------------------------------------------------------------ typography -- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  text-wrap: balance;
}
h3, h4 { line-height: 1.22; letter-spacing: -0.015em; }

p { text-wrap: pretty; }

.page-title {
  font-size: var(--t-h1);
  max-width: 26ch;
  margin-bottom: 14px;
}
.sec-title { font-size: var(--t-h2); max-width: 30ch; }
.sec-title--light { color: #fff; }

.leads { font-size: 1.125rem; color: var(--text); max-width: 62ch; }
.muted { color: var(--text-mut); max-width: 62ch; }
.sec-sub { color: var(--text-mut); font-size: var(--t-sm); max-width: 46ch; }
.sec-sub--light { color: var(--text-on-ink-mut); }

/* micro-label used to number almost every block ("01 Birimler") */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--t-micro); font-weight: 800;
  letter-spacing: 0.19em; text-transform: uppercase;
  color: var(--petrol-500);
  margin-bottom: 18px;
}
.kicker-no {
  font-family: var(--sans);
  font-weight: 800; letter-spacing: 0.06em;
  color: var(--ink-900);
  border-bottom: 2px solid var(--coral-500);
  padding-bottom: 1px;
}
.kicker--light { color: var(--petrol-300); }
.kicker--light .kicker-no { color: #fff; }
.kicker--dark { color: var(--petrol-500); }
.kicker-ico { color: var(--coral-500); }

.sec-head { margin-bottom: clamp(28px, 4vw, 56px); }
.sec-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(18px, 3vw, 48px);
  align-items: end;
}
.sec-head--split .sec-sub { justify-self: end; text-align: right; }

/* inline rule that grows on hover — used in lists and links */
.rule { height: 1px; background: var(--line-2); transform-origin: left; }

/* ------------------------------------------------------------ checks/list -- */
.checks { display: grid; gap: 12px; margin: 26px 0 0; }
.checks li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: var(--t-sm); color: var(--text);
}
.checks-ico {
  flex: none; width: 24px; height: 24px; border-radius: var(--r-full);
  background: var(--mist-100); color: var(--petrol-500);
  display: grid; place-items: center; margin-top: 1px;
  border: 1px solid var(--mist-200);
}

.pills { display: flex; flex-wrap: wrap; gap: 8px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 26px; }

/* -------------------------------------------------------------- timeline -- */
.timeline {
  --dot: 11px;
  display: grid; gap: 20px; margin-top: 30px;
  position: relative; padding-left: 22px;
}
.timeline::before {
  content: ""; position: absolute; left: 4px; top: 6px; bottom: 6px;
  width: 1px; background: linear-gradient(var(--line-2), var(--coral-500));
}
.timeline li { display: grid; grid-template-columns: 62px 1fr; gap: 16px; align-items: start; position: relative; }
.timeline .tl-year {
  font-family: var(--serif); font-weight: 600; font-size: 1.3rem;
  color: var(--ink-900); letter-spacing: -0.02em;
}
.timeline .tl-dot {
  position: absolute; left: -22px; top: 8px;
  width: var(--dot); height: var(--dot); border-radius: var(--r-full);
  background: var(--bone); border: 2px solid var(--petrol-400);
}
.timeline .is-now .tl-dot { background: var(--coral-500); border-color: var(--coral-500); box-shadow: 0 0 0 4px var(--coral-100); }
.timeline .tl-tx b { display: block; font-weight: 700; }
.timeline .tl-tx small { color: var(--text-mut); }

/* ---------------------------------------------------------------- reveal -- */
.reveal, [data-reveal] {
  opacity: 0;
  transition:
    opacity var(--d-3) var(--e-out),
    transform 0.7s var(--e-out),
    filter 0.7s var(--e-out),
    clip-path 0.8s var(--e-out);
  transition-delay: calc(var(--delay, 0) * 90ms);
  will-change: transform, opacity;
}
[data-reveal="up"] { transform: translate3d(0, 26px, 0); }
[data-reveal="fade"] { transform: translate3d(0, 14px, 0) scale(0.985); filter: blur(6px); }
[data-reveal="lines"] { opacity: 1; transform: none; }
[data-reveal="lines"] .ht-line { display: block; }
[data-reveal="lines"] .ht-line {
  clip-path: inset(0 0 105% 0);
  transform: translate3d(0, 0.35em, 0);
  opacity: 0;
  transition: clip-path 0.9s var(--e-out), transform 0.9s var(--e-out), opacity 0.5s linear;
}
[data-reveal="lines"].is-in .ht-line { clip-path: inset(-20% -5% -20% -5%); transform: none; opacity: 1; }
[data-reveal="lines"].is-in .ht-line:nth-child(2) { transition-delay: 0.12s; }

[data-reveal].is-in, .reveal.is-in {
  opacity: 1; transform: none; filter: none;
}
[data-delay="1"] { --delay: 1; }
[data-delay="2"] { --delay: 2; }
[data-delay="3"] { --delay: 3; }
[data-delay="4"] { --delay: 4; }

/* legacy hook kept so old markup keeps working */
.reveal.vis, .reveal.visible { opacity: 1; transform: none; }
/* --------------------------------------------------------------- buttons -- */
.btn {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: var(--r-full);
  font-weight: 700; font-size: var(--t-sm); letter-spacing: -0.005em;
  overflow: hidden; white-space: nowrap;
  transition: transform var(--d-1) var(--e-out), box-shadow var(--d-2) var(--e-out),
              background-color var(--d-2) var(--e-out), border-color var(--d-2) var(--e-out),
              color var(--d-2) var(--e-out);
}
/* sheen sweep — one of the few decorative touches, kept to buttons only */
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, 0.36) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 0.75s var(--e-out);
}
.btn:hover::after { transform: translateX(130%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.985); }
.btn .btn-ico { transition: transform var(--d-2) var(--e-out); }
.btn:hover .btn-ico { transform: translateX(3px); }

.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: var(--t-xs); }
.btn-xs { padding: 6px 13px; font-size: var(--t-micro); letter-spacing: 0.04em; text-transform: uppercase; }
.btn-block { width: 100%; }

.btn-accent, .btn-gold {
  background: linear-gradient(140deg, var(--coral-fill-a), var(--coral-fill-b));
  color: #fff;
  box-shadow: var(--sh-accent);
}
.btn-accent:hover, .btn-gold:hover {
  box-shadow: 0 22px 42px -16px rgba(223, 69, 38, 0.62);
}
.btn-ink { background: var(--ink-800); color: #fff; box-shadow: var(--sh-2); }
.btn-ink:hover { background: var(--ink-900); box-shadow: var(--sh-3); }
.btn-wa { background: var(--wa-600); color: #fff; box-shadow: 0 14px 30px -14px rgba(21, 127, 69, 0.6); }
.btn-wa:hover { background: var(--wa-700); }
.btn-line { background: var(--white); color: var(--ink-800); border-color: var(--line-2); }
.btn-line:hover { border-color: var(--ink-800); }
.btn-ghost { background: rgba(255, 255, 255, 0.07); color: #fff; border-color: var(--line-ink-2); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.6); }
.btn-call {
  background: var(--ink-900); color: #fff; border-color: var(--line-ink);
  padding: 11px 18px; font-size: var(--t-xs); letter-spacing: 0.02em;
}
.btn-call:hover { background: var(--coral-600); border-color: var(--coral-600); }

/* text link with an underline that draws in from the left */
.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: var(--t-sm);
  padding-bottom: 4px; position: relative;
}
.link-arrow::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform var(--d-2) var(--e-out);
}
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow svg { transition: transform var(--d-2) var(--e-out); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow--light { color: #fff; }
/* ----------------------------------------------------------------- shell -- */
.scroll-rule {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 130; pointer-events: none;
}
.scroll-rule span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--petrol-400), var(--coral-500) 70%, var(--coral-400));
  box-shadow: 0 0 12px rgba(255, 92, 57, 0.5);
}

/* cursor-follow warmth — additive blend keeps it invisible on paper, alive on ink */
.spotlight {
  position: fixed; top: 0; left: 0; z-index: 2;
  width: 560px; height: 560px; margin: -280px 0 0 -280px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 120, 80, 0.13), rgba(255, 92, 57, 0) 62%);
  mix-blend-mode: plus-lighter;
  opacity: 0; transition: opacity 0.5s var(--e-soft);
}
body.has-pointer .spotlight { opacity: 1; }

.topbar {
  background: var(--ink-950);
  color: var(--text-on-ink);
  border-bottom: 1px solid var(--line-ink);
  position: relative; z-index: 3;
}
.topbar-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 42px; padding-block: 6px;
  font-size: var(--t-micro); letter-spacing: 0.07em; text-transform: uppercase; font-weight: 700;
}
.status { display: flex; align-items: center; gap: 12px; min-width: 0; }
.status-txt { color: #fff; white-space: nowrap; }
.status-hours {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--text-on-ink-mut); text-transform: none; letter-spacing: 0.01em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.status-div { width: 1px; height: 13px; background: var(--line-ink-2); }
.status-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #35d07f;
  animation: pulseDot 2.4s var(--e-soft) infinite; flex: none;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(53, 208, 127, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(53, 208, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(53, 208, 127, 0); }
}
.topbar-nav { display: flex; align-items: center; gap: 14px; }
.tl-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-ink-2); }
.lang { display: flex; gap: 4px; }
.lang a { padding: 4px 9px; border-radius: var(--r-full); border: 1px solid transparent; transition: all var(--d-1) var(--e-out); }
.lang a[aria-current="true"] { background: var(--coral-600); color: #fff; border-color: var(--coral-600); }
.lang a:not([aria-current="true"]):hover { border-color: var(--line-ink-2); color: #fff; }

.shell {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(252, 250, 246, 0.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--d-2) var(--e-out), background-color var(--d-2) var(--e-out);
}
.shell.is-stuck {
  background: rgba(252, 250, 246, 0.95);
  box-shadow: 0 14px 40px -26px rgba(6, 31, 39, 0.35);
}
.shell-in {
  position: relative;
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center; gap: clamp(16px, 2.4vw, 40px);
  min-height: 76px;
  transition: min-height var(--d-2) var(--e-out);
}
.shell.is-stuck .shell-in { min-height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 15px;
  box-shadow: var(--sh-2);
  transition: transform var(--d-2) var(--e-spring);
}
.brand:hover .brand-mark { transform: rotate(-5deg) scale(1.05); }
.brand-tx { display: grid; gap: 1px; }
.brand-word {
  font-family: var(--sans); font-size: 1.16rem; font-weight: 800;
  letter-spacing: 0.16em; color: var(--ink-900); line-height: 1.1;
}
.brand-sub {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--petrol-500);
}
.brand-sub i { width: 3px; height: 3px; border-radius: 50%; background: var(--coral-500); }
.shell.is-stuck .brand-sub { opacity: 0.75; }

.nav { display: flex; align-items: stretch; gap: 4px; }
.nav-cell { display: flex; }
.nav-link {
  display: flex; align-items: center;
  padding: 10px 14px; border-radius: var(--r-sm);
  position: relative; transition: background-color var(--d-1) var(--e-out), color var(--d-1);
}
.nav-txt { font-size: var(--t-sm); font-weight: 700; color: var(--ink-900); }
.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--coral-500); transform: scaleX(0); transform-origin: left;
  transition: transform var(--d-2) var(--e-out);
}
.nav-link:hover { background: var(--mist-100); }
.nav-link:hover::after, .nav-link.is-on::after { transform: scaleX(1); }

.shell-actions { display: flex; align-items: center; gap: 10px; }
.burger {
  display: none; align-items: center; gap: 10px;
  padding: 11px 15px; border-radius: var(--r-full);
  background: var(--ink-900); color: #fff;
  font-size: var(--t-micro); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
}
.burger-bars { display: grid; gap: 5px; width: 18px; }
.burger-bars i { display: block; height: 1.8px; background: #fff; border-radius: 2px; transition: transform var(--d-2) var(--e-out), width var(--d-2) var(--e-out); }
.burger-bars i:last-child { width: 12px; margin-left: auto; }
.burger:hover .burger-bars i:last-child { width: 18px; }
.burger[aria-expanded="true"] .burger-bars i:first-child { transform: translateY(3.4px) rotate(45deg); }
.burger[aria-expanded="true"] .burger-bars i:last-child { width: 18px; transform: translateY(-3.4px) rotate(-45deg); }

/* ---- full-width departments mega panel ---- */
.panel {
  position: absolute; left: 0; right: 0; top: calc(100% - 2px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-4);
  padding: 12px;
  opacity: 0; visibility: hidden;
  transform: translateY(-10px) scale(0.995);
  transform-origin: top center;
  transition: opacity var(--d-2) var(--e-out), transform var(--d-2) var(--e-out), visibility var(--d-2);
  z-index: 5;
}
.nav-cell.has-panel:hover .panel,
.nav-cell.has-panel:focus-within .panel {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; }
.panel-item {
  display: grid; grid-template-columns: 30px 34px minmax(0, 1fr);
  gap: 12px; align-items: start;
  padding: 12px 14px; border-radius: var(--r-md);
  transition: background-color var(--d-1) var(--e-out);
}
.panel-item:hover { background: var(--sand-100); }
.panel-no {
  font-size: var(--t-micro); font-weight: 800; letter-spacing: 0.1em;
  color: var(--text-soft); padding-top: 3px;
}
.panel-ico {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: var(--mist-100); color: var(--petrol-500);
  border: 1px solid var(--mist-200);
  transition: background-color var(--d-2), color var(--d-2), transform var(--d-2) var(--e-spring);
}
.panel-item:hover .panel-ico { background: var(--coral-600); color: #fff; border-color: var(--coral-600); transform: rotate(-6deg); }
.panel-tx b { display: block; font-size: var(--t-sm); font-weight: 700; color: var(--ink-900); }
.panel-tx small { display: block; font-size: var(--t-xs); color: var(--text-mut); line-height: 1.45; margin-top: 2px; }
.panel-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 10px; padding: 12px 16px;
  background: var(--ink-950); color: #fff; border-radius: var(--r-md);
}
.panel-foot-link { display: inline-flex; align-items: center; gap: 8px; font-size: var(--t-xs); font-weight: 700; color: var(--coral-400); margin-left: auto; }
.panel-foot-link:hover { color: #fff; }
/* ---------------------------------------------------------------- drawer -- */
.drawer {
  position: fixed; inset: 0; z-index: var(--z-drawer);
  background: var(--ink-950); color: #fff;
  transform: translateX(101%);
  transition: transform 0.52s var(--e-out);
  overflow-y: auto; overscroll-behavior: contain;
}
.drawer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-ink) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.5;
  mask-image: radial-gradient(120% 80% at 100% 0%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 80% at 100% 0%, #000 10%, transparent 75%);
}
.drawer.is-open { transform: none; }
.drawer-in {
  position: relative;
  width: min(100% - (var(--gut) * 2), 620px);
  margin-inline: auto; padding: 26px 0 44px;
  display: grid; gap: 20px;
}
.drawer-kicker {
  font-size: var(--t-micro); font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--petrol-300);
}
.drawer-nav { display: grid; border-top: 1px solid var(--line-ink); }
.drawer-link {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: center; gap: 14px;
  padding: 15px 4px; border-bottom: 1px solid var(--line-ink);
  font-size: clamp(1.3rem, 4.6vw, 1.75rem); font-weight: 800; letter-spacing: -0.02em;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s var(--e-out), transform 0.5s var(--e-out), color var(--d-1);
}
.drawer.is-open .drawer-link { opacity: 1; transform: none; transition-delay: calc(var(--i, 0) * 55ms + 130ms); }
.drawer-link:hover, .drawer-link:focus-visible { color: var(--coral-400); }
.drawer-no { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; color: var(--coral-500); }
.drawer-link svg { color: var(--text-on-ink-mut); }
.drawer-link:hover svg { color: var(--coral-400); }
.drawer-depts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; }
.drawer-depts a {
  display: flex; align-items: baseline; gap: 10px;
  padding: 11px 10px; border-radius: var(--r-sm);
  font-size: var(--t-sm); font-weight: 600; color: var(--text-on-ink-mut);
  transition: background-color var(--d-1), color var(--d-1);
}
.drawer-depts a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.drawer-depts .drawer-no { flex: none; }
.drawer-foot { display: grid; gap: 10px; margin-top: 6px; }
.drawer-status {
  display: flex; align-items: center; gap: 10px; margin-top: 6px;
  font-size: var(--t-micro); font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-on-ink-mut);
}

.scrim {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(4, 20, 26, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity var(--d-2) var(--e-out);
}
.scrim.is-on { opacity: 1; }
body.nav-open { overflow: hidden; }

/* ------------------------------------------------------------ shell fluid -- */
@media (max-width: 1180px) {
  .status-hours { display: none; }
  .panel-tx small { display: none; }
}
@media (max-width: 1040px) {
  /* the number needs the room the wider nav is using — icon-only from here down */
  .btn-call span { display: none; }
  .btn-call { padding: 13px; }
  .brand-sub { display: none; }
}
@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .shell-in { grid-template-columns: minmax(0, 1fr) auto; min-height: 68px; }
  .shell.is-stuck .shell-in { min-height: 62px; }
}
@media (max-width: 620px) {
  .topbar-in { justify-content: center; }
  .btn-call { display: none; }
  .drawer-depts { grid-template-columns: 1fr; }
}
/* --------------------------------------------------------------- ticker -- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--sand-100);
  overflow: hidden; padding-block: 15px;
}
.ticker-track { display: flex; width: max-content; animation: tick 46s linear infinite; }
.ticker-set { display: flex; flex: none; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 11px;
  padding-inline: 24px;
  font-size: var(--t-micro); font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--petrol-500);
  white-space: nowrap;
}
.ticker-item svg { color: var(--coral-600); }
.ticker-item::after {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--line-3); margin-left: 24px;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tick { to { transform: translate3d(-50%, 0, 0); } }

/* --------------------------------------------------------------- footer -- */
.foot { background: var(--ink-950); color: var(--text-on-ink); position: relative; overflow: hidden; }
.foot::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 55% at 100% 0%, rgba(255, 92, 57, 0.16), transparent 62%);
}
.foot-grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.5fr) minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(26px, 3vw, 54px);
  padding-block: clamp(46px, 6vw, 88px);
}
.foot-brand { display: grid; gap: 18px; align-content: start; }
.foot-logo { display: inline-flex; align-items: center; gap: 13px; }
.foot-mark { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; box-shadow: var(--sh-2); }
.foot-word b {
  display: block; font-size: 1.15rem; font-weight: 800; letter-spacing: 0.16em;
  color: #fff; line-height: 1.15;
}
.foot-word small {
  display: block; font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--petrol-300);
}
.foot-desc { font-size: var(--t-sm); color: var(--text-on-ink-mut); max-width: 42ch; }
.foot-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.foot-pills li {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: var(--r-full);
  border: 1px solid var(--line-ink); background: rgba(255, 255, 255, 0.04);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; color: var(--text-on-ink-mut);
}
.foot-pills svg { color: var(--coral-400); }
.foot-cta { display: flex; flex-wrap: wrap; gap: 10px; }

.foot-h {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--sans); font-size: var(--t-micro); font-weight: 800;
  letter-spacing: 0.19em; text-transform: uppercase; color: #fff;
  padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--line-ink);
}
.foot-h-no { color: var(--coral-500); }
.foot-list { display: grid; gap: 0; }
.foot-list li + li { border-top: 1px solid rgba(255, 255, 255, 0.05); }
.foot-list a {
  display: flex; gap: 11px; align-items: baseline;
  padding: 7px 0; font-size: var(--t-xs); color: var(--text-on-ink-mut);
  transition: color var(--d-1), transform var(--d-1) var(--e-out);
}
.foot-list a:hover { color: #fff; transform: translateX(3px); }
.foot-list .no { flex: none; color: var(--petrol-300); font-weight: 800; font-size: 0.6875rem; letter-spacing: 0.08em; font-variant-numeric: tabular-nums; }

.foot-hours { font-size: var(--t-xs); }
.foot-hours tr { border-bottom: 1px solid var(--line-ink); }
.foot-hours tr:last-child { border-bottom: 0; }
.foot-hours th, .foot-hours td { padding: 9px 0; text-align: left; font-weight: 600; }
.foot-hours th { color: var(--text-on-ink-mut); font-weight: 600; }
.foot-hours td { text-align: right; color: #fff; font-variant-numeric: tabular-nums; }
.foot-hours tr.is-shut td { color: var(--text-soft-ink); }
.foot-hours .is-em th, .foot-hours .is-em td { color: #ffb59f; }
.foot-hours .is-em th { display: inline-flex; align-items: center; gap: 7px; }
.foot-note { margin-top: 14px; font-size: 0.7rem; color: var(--text-soft-ink); }

.foot-meta { display: grid; gap: 16px; }
.foot-meta li { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 12px; }
.foot-meta-ico { color: var(--coral-400); padding-top: 2px; }
.foot-meta b {
  display: block; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--petrol-300);
  margin-bottom: 3px;
}
.foot-meta span, .foot-meta a { font-size: var(--t-xs); color: var(--text-on-ink-mut); }
.foot-meta a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.foot-pages { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.foot-pages a {
  padding: 6px 11px; border-radius: var(--r-full);
  border: 1px solid var(--line-ink); font-size: 0.7rem; font-weight: 700;
  color: var(--text-on-ink-mut); transition: all var(--d-1) var(--e-out);
}
.foot-pages a:hover { border-color: var(--coral-500); color: #fff; background: rgba(255, 92, 57, 0.14); }

.foot-base {
  position: relative;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  align-items: center; justify-content: space-between;
  padding-block: 20px 26px;
  border-top: 1px solid var(--line-ink);
  font-size: 0.72rem; color: var(--text-soft-ink);
}
.foot-disclaimer { max-width: 62ch; }
.foot-top {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-on-ink-mut);
  transition: color var(--d-1);
}
.foot-top:hover { color: #fff; }
/* --------------------------------------------------- floating utilities -- */
.fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 70;
  width: 56px; height: 56px; border-radius: var(--r-full);
  display: grid; place-items: center;
  background: var(--wa-600); color: #fff;
  box-shadow: 0 20px 40px -16px rgba(21, 127, 69, 0.7);
  transition: transform var(--d-2) var(--e-spring), background-color var(--d-2);
}
.fab:hover { transform: scale(1.07) rotate(-4deg); background: #178f47; }
.fab-ring {
  position: absolute; inset: 0; border-radius: inherit;
  border: 2px solid rgba(21, 127, 69, 0.6);
  animation: fabRing 2.6s var(--e-soft) infinite;
}
@keyframes fabRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.to-top {
  position: fixed; right: 30px; bottom: 96px; z-index: 70;
  width: 44px; height: 44px; border-radius: var(--r-full);
  display: grid; place-items: center;
  background: var(--white); color: var(--ink-800);
  border: 1px solid var(--line-2); box-shadow: var(--sh-2);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--d-2), transform var(--d-2) var(--e-out), visibility var(--d-2), background-color var(--d-1);
}
.to-top.is-on { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }

.quickbar { display: none; }

/* ------------------------------------------------------------- page head -- */
.page-head {
  position: relative; overflow: hidden;
  background: var(--ink-950); color: var(--text-on-ink);
  padding-block: clamp(40px, 6vw, 82px) clamp(38px, 5vw, 70px);
  isolation: isolate;
}
.page-head-grid {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(var(--line-ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-ink) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
  mask-image: linear-gradient(180deg, #000, transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 88%);
}
.page-head-halo {
  position: absolute; z-index: -1; width: 620px; height: 620px;
  right: -120px; top: -320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 92, 57, 0.3), transparent 66%);
}
.page-head-in { position: relative; }
.page-head .page-title { color: #fff; max-width: 30ch; }
.page-sub { color: var(--text-on-ink-mut); max-width: 60ch; font-size: 1.05rem; }
.page-head-mark {
  position: absolute; right: clamp(-10px, 3vw, 60px); bottom: -0.16em;
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(5rem, 15vw, 13rem); line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: -0.04em; pointer-events: none; user-select: none;
}
.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
  font-size: var(--t-micro); font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--text-soft);
  margin-bottom: 20px;
}
.crumbs a { color: var(--text-on-ink-mut); transition: color var(--d-1); }
.crumbs a:hover { color: #fff; }
.crumbs span[aria-current] { color: var(--coral-400); }
/* ----------------------------------------------------------------- atoms -- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: var(--r-full);
  border: 1px solid var(--line-2); background: var(--white);
  font-size: var(--t-xs); font-weight: 700; color: var(--ink-800);
  transition: all var(--d-1) var(--e-out);
}
.chip span {
  font-size: 0.6875rem; font-weight: 800; color: var(--text-mut);
  background: var(--sand-100); border-radius: var(--r-full); padding: 2px 7px;
}
.chip:hover { border-color: var(--ink-800); transform: translateY(-2px); }
.chip.is-on { background: var(--ink-900); border-color: var(--ink-900); color: #fff; box-shadow: var(--sh-2); }
.chip.is-on span { background: rgba(255, 255, 255, 0.16); color: #fff; }

.hours { margin-top: 34px; }
.hours caption {
  caption-side: bottom; text-align: left;
  font-size: 0.72rem; color: var(--text-mut); padding-top: 12px;
}
.hours tr { border-bottom: 1px solid var(--line); }
.hours th, .hours td { padding: 13px 0; text-align: left; font-size: var(--t-sm); }
.hours th { font-weight: 700; color: var(--ink-900); display: flex; align-items: center; gap: 9px; }
.hours td { text-align: right; color: var(--text-mut); font-variant-numeric: tabular-nums; }
.hours tr.is-shut td { color: var(--text-soft); }
.hours tr.is-em { border-bottom: 0; }
.hours tr.is-em th, .hours tr.is-em td { color: var(--coral-600); font-weight: 800; }
.hours tr.is-em th svg { color: var(--coral-500); }

.sheet { border-top: 1px solid var(--line-2); }
.sheet-row {
  display: grid; grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
  gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line);
  transition: background-color var(--d-2), padding-left var(--d-2) var(--e-out);
}
.sheet-row:hover { background: var(--sand-100); padding-left: 14px; }
.sheet dt {
  font-size: var(--t-micro); font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--petrol-500);
}
.sheet dd { font-size: var(--t-sm); color: var(--ink-900); }
.sheet dd a { border-bottom: 1px solid var(--line-2); }
.sheet dd a:hover { border-color: var(--coral-500); color: var(--coral-600); }

/* ----------------------------------------------------- footer/utility MQ -- */
@media (max-width: 1040px) {
  .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .fab, .to-top { display: none; }
  .quickbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .qb {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 15px 12px; border-radius: var(--r-full);
    font-size: var(--t-sm); font-weight: 800; color: #fff;
    box-shadow: 0 16px 30px -14px rgba(6, 31, 39, 0.5);
  }
  .qb-call { background: linear-gradient(140deg, var(--coral-fill-a), var(--coral-fill-b)); }
  .qb-wa { background: var(--wa-600); }
  .foot { padding-bottom: 76px; }
  .sec-head--split { grid-template-columns: 1fr; align-items: start; }
  .sec-head--split .sec-sub { justify-self: start; text-align: left; }
}
@media (max-width: 620px) {
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-list li + li { border-top-color: rgba(255, 255, 255, 0.08); }
  .foot-base { flex-direction: column; align-items: flex-start; }
  .sheet-row { grid-template-columns: 1fr; gap: 6px; }
}
