/* ============================================================
   Clinic 103 - Ink
   Mobile-first design system. Base styles = mobile.
   Enhancements at min-width breakpoints.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@500;700;900&family=Work+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --ink: #000000;
  --paper: #FFFFFF;
  --pine: #187D3C;
  --pine-dark: #0E5A2A;
  --pine-wash: rgba(24, 125, 60, 0.08);
  --ink-soft: rgba(0, 0, 0, 0.62);
  --paper-soft: rgba(255, 255, 255, 0.72);
  --line: rgba(0, 0, 0, 0.14);
  --line-inv: rgba(255, 255, 255, 0.16);
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --container: 1180px;
  --radius: 2px;
  --radius-sm: 999px;
  --shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.45);
  --header-h: 72px;
  --sticky-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
  padding-top: var(--header-h);
  padding-bottom: var(--sticky-h);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0.2px;
}

p { margin: 0; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible { outline: 3px solid var(--pine); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* LAYOUT */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 16px; }
@media (min-width: 480px) { .wrap { padding: 0 20px; } }
@media (min-width: 768px) { .wrap { padding: 0 28px; } }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--pine);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
@media (min-width: 600px) { .eyebrow { font-size: 0.78rem; margin-bottom: 14px; } }
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--pine); flex-shrink: 0; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
  cursor: pointer;
  min-height: 48px;
}
@media (min-width: 600px) { .btn { padding: 14px 26px; font-size: 0.95rem; } }
.btn-solid { background: var(--pine); color: var(--paper); }
.btn-solid:hover { background: var(--pine-dark); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-outline-inv { border: 1.5px solid var(--paper); color: var(--paper); background: transparent; }
.btn-outline-inv:hover { background: var(--paper); color: var(--ink); }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; min-height: 40px; }

/* HEADER */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
#nav.is-scrolled { border-bottom-color: var(--pine); box-shadow: 0 8px 24px -16px rgba(0,0,0,0.7); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 12px;
  height: var(--header-h);
}
@media (min-width: 480px) { .nav-inner { padding: 0 20px; } }
@media (min-width: 860px) { .nav-inner { padding: 0 28px; } }

.nav-logo img { height: 48px; width: auto; display: block; }
@media (min-width: 480px) { .nav-logo img { height: 54px; } }
@media (min-width: 860px) { .nav-logo img { height: 64px; } }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-phone { font-family: var(--font-mono); font-size: 0.82rem; color: var(--paper-soft); display: none; }
.nav-cta { display: none; }
@media (min-width: 860px) { .nav-phone { display: inline-flex; } .nav-cta { display: inline-flex; } .nav-right { gap: 18px; } }

#burger {
  width: 44px; height: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: transparent;
  border: 1px solid var(--line-inv);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
#burger span { display: block; width: 20px; height: 1.5px; background: var(--paper); transition: transform .25s ease, opacity .25s ease; }
#burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#burger.is-open span:nth-child(2) { opacity: 0; }
#burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

#navLinks {
  position: fixed; inset: 0; z-index: 190;
  background: var(--ink);
  padding: 80px 16px 40px;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform .45s cubic-bezier(.6,0,.2,1), opacity .3s ease, visibility 0s linear .45s;
  overflow-y: auto;
}
@media (min-width: 480px) { #navLinks { padding: 90px 20px 40px; } }
@media (min-width: 768px) { #navLinks { padding: 110px 28px 40px; } }
#navLinks.is-open { transform: translateY(0); opacity: 1; visibility: visible; transition: transform .45s cubic-bezier(.6,0,.2,1), opacity .3s ease; }

.navlinks-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line-inv); }
.navlinks-grid a { display: flex; align-items: baseline; gap: 14px; padding: 18px 4px; border-bottom: 1px solid var(--line-inv); font-family: var(--font-display); font-size: clamp(1.4rem, 5vw, 2.6rem); color: var(--paper); transition: color .2s ease, padding-left .2s ease; }
.navlinks-grid a:hover { color: var(--pine); padding-left: 14px; }
.navlinks-grid a .num { font-family: var(--font-mono); font-size: 0.82rem; color: var(--pine); }
@media (min-width: 760px) { .navlinks-grid { grid-template-columns: 1fr 1fr; } .navlinks-grid a:nth-child(odd) { border-right: 1px solid var(--line-inv); } }
.navlinks-cta { max-width: var(--container); margin: 28px auto 0; display: flex; flex-wrap: wrap; gap: 12px; }

/* HERO */
.hero { padding: 28px 0 44px; background: var(--paper); }
@media (min-width: 600px) { .hero { padding: 40px 0 56px; } }
@media (min-width: 960px) { .hero { padding: 60px 0 80px; } }

.hero-inner { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 960px) { .hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: 60px; } }

.hero h1 { font-size: clamp(2rem, 9vw, 4.6rem); margin-bottom: 12px; line-height: 1.0; }
@media (min-width: 600px) { .hero h1 { margin-bottom: 18px; } }

.hero-sub { font-size: 0.95rem; color: var(--ink-soft); max-width: 52ch; margin-bottom: 22px; line-height: 1.6; }
@media (min-width: 600px) { .hero-sub { font-size: 1.05rem; margin-bottom: 30px; } }

.hero-ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
@media (min-width: 420px) { .hero-ctas { flex-direction: row; flex-wrap: wrap; } }
.hero-ctas .btn { width: 100%; justify-content: center; }
@media (min-width: 420px) { .hero-ctas .btn { width: auto; } }

.hero-stats { display: flex; flex-wrap: wrap; gap: 18px 28px; }
.hero-stat b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--pine); }
@media (min-width: 600px) { .hero-stat b { font-size: 2rem; } }
.hero-stat span { font-size: 0.78rem; color: var(--ink-soft); }

.hero-media { position: relative; }
.hero-photo { aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
@media (min-width: 600px) { .hero-photo { aspect-ratio: 4/3; } }
@media (min-width: 960px) { .hero-photo { aspect-ratio: 4/5; } }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  right: 12px; bottom: -12px; left: auto;
  background: var(--ink); color: var(--paper);
  padding: 12px 14px;
  border-radius: var(--radius);
  max-width: 170px;
  box-shadow: var(--shadow);
}
@media (min-width: 600px) { .hero-badge { left: -16px; right: auto; bottom: -16px; padding: 18px 22px; max-width: 230px; } }
.hero-badge b { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--pine); }
@media (min-width: 600px) { .hero-badge b { font-size: 1.8rem; } }
.hero-badge span { font-size: 0.72rem; color: var(--paper-soft); }

/* TICKER */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; white-space: nowrap; background: var(--paper); margin-top: 36px; }
.ticker-track { display: inline-block; padding: 13px 0; animation: tickerScroll 28s linear infinite; }
.ticker-track span { font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-soft); margin: 0 14px; }
.ticker-track span.dot { color: var(--pine); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS */
.section { padding: 48px 0; }
@media (min-width: 600px) { .section { padding: 68px 0; } }
@media (min-width: 900px) { .section { padding: 96px 0; } }

.section-head { max-width: 640px; margin-bottom: 26px; }
@media (min-width: 600px) { .section-head { margin-bottom: 40px; } }
@media (min-width: 900px) { .section-head { margin-bottom: 52px; } }
.section-head h2 { font-size: clamp(1.65rem, 5vw, 2.7rem); }
.section-head p { color: var(--ink-soft); margin-top: 10px; font-size: 0.95rem; }
@media (min-width: 600px) { .section-head p { font-size: 1.05rem; } }

/* WHY */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 480px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card { background: var(--paper); padding: 22px 18px; }
@media (min-width: 600px) { .why-card { padding: 32px 26px; } }
.why-card .num { font-family: var(--font-mono); color: var(--pine); font-size: 0.8rem; display: block; margin-bottom: 12px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
@media (min-width: 600px) { .why-card h3 { font-size: 1.28rem; } }
.why-card p { color: var(--ink-soft); font-size: 0.88rem; }

/* FEATURED */
.section-ink { background: var(--ink); color: var(--paper); }
.section-ink .section-head p { color: var(--paper-soft); }
.section-ink .eyebrow { color: var(--pine); }
.featured-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .featured-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .featured-grid { grid-template-columns: repeat(3, 1fr); } }
.f-card { background: #0a0a0a; border: 1px solid var(--line-inv); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.f-photo { position: relative; aspect-ratio: 16/9; overflow: hidden; }
@media (min-width: 480px) { .f-photo { aspect-ratio: 4/3; } }
@media (min-width: 640px) { .f-photo { aspect-ratio: 4/5; } }
.f-photo img { width: 100%; height: 100%; object-fit: cover; }
.f-chip { position: absolute; top: 12px; left: 12px; background: var(--pine); color: var(--paper); font-family: var(--font-mono); font-size: 0.68rem; padding: 5px 10px; border-radius: var(--radius-sm); }
.f-badge { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.7); color: var(--paper); font-size: 0.68rem; padding: 5px 10px; border-radius: var(--radius-sm); border: 1px solid var(--line-inv); }
.f-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
@media (min-width: 600px) { .f-body { padding: 26px; } }
.f-cat { font-family: var(--font-mono); font-size: 0.7rem; color: var(--pine); }
.f-body h3 { font-size: 1.25rem; }
@media (min-width: 600px) { .f-body h3 { font-size: 1.5rem; } }
.f-body p { color: var(--paper-soft); font-size: 0.88rem; flex: 1; }
.f-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.f-price { font-family: var(--font-mono); font-size: 1rem; color: var(--paper); }
.f-link { display: inline-flex; align-items: center; gap: 6px; background: var(--pine); color: var(--paper); padding: 10px 16px; border-radius: var(--radius-sm); font-size: 0.84rem; font-weight: 600; transition: background .15s ease; }
.f-link:hover { background: var(--pine-dark); }
.featured-cta { margin-top: 24px; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 820px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.p-step { position: relative; padding-top: 8px; }
.p-num { font-family: var(--font-display); font-size: 2.6rem; color: var(--pine); line-height: 1; display: block; margin-bottom: 10px; }
@media (min-width: 600px) { .p-num { font-size: 3.4rem; } }
.p-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
@media (min-width: 600px) { .p-step h3 { font-size: 1.4rem; } }
.p-step p { color: var(--ink-soft); font-size: 0.92rem; }

/* SERVICES */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
@media (min-width: 600px) { .filters { margin-bottom: 36px; } }
.filter { padding: 9px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line); font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); transition: all .15s ease; }
.filter.is-active, .filter:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.service-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 500px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.s-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; background: var(--paper); transition: border-color .2s ease, transform .2s ease; }
.s-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.s-photo { aspect-ratio: 4/3; overflow: hidden; background: #eee; }
.s-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.s-card:hover .s-photo img { transform: scale(1.03); }
.s-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
@media (min-width: 600px) { .s-body { padding: 22px; gap: 10px; } }
.s-cat { font-family: var(--font-mono); font-size: 0.66rem; color: var(--pine); }
.s-body h3 { font-size: 1.05rem; }
@media (min-width: 600px) { .s-body h3 { font-size: 1.3rem; } }
.s-body p { color: var(--ink-soft); font-size: 0.86rem; flex: 1; }
.s-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 2px; }
.s-tag { font-family: var(--font-mono); font-size: 0.7rem; padding: 4px 9px; border-radius: var(--radius-sm); }
.s-tag.price { background: var(--pine-wash); color: var(--pine-dark); font-weight: 600; }
.s-tag.time { background: rgba(0,0,0,0.05); color: var(--ink-soft); }
.s-foot { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.s-book { flex: 1; text-align: center; background: var(--ink); color: var(--paper); padding: 11px 10px; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 600; transition: background .15s ease; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.s-book:hover { background: var(--pine); }
.s-detail { flex: 1; text-align: center; border: 1.5px solid var(--line); padding: 10px; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); transition: border-color .15s ease, color .15s ease; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.s-detail:hover { border-color: var(--ink); color: var(--ink); }

/* TEAM */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 480px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.t-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.t-photo { aspect-ratio: 1/1; overflow: hidden; background: var(--ink); }
.t-photo img { width: 100%; height: 100%; object-fit: cover; }
.t-avatar { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 4rem; color: var(--pine); background: #0a0a0a; }
.t-body { padding: 16px; }
@media (min-width: 600px) { .t-body { padding: 22px; } }
.t-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.t-role { font-family: var(--font-mono); font-size: 0.72rem; color: var(--pine); display: block; margin-bottom: 10px; }
.t-body p { color: var(--ink-soft); font-size: 0.86rem; margin-bottom: 12px; }
.t-ig { font-size: 0.82rem; font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 2px; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 480px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
.g-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.g-item img { width: 100%; height: 100%; object-fit: cover; }
.g-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px; background: linear-gradient(to top, rgba(0,0,0,0.78), transparent); color: var(--paper); font-size: 0.82rem; font-style: italic; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 600px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
.r-card { background: var(--paper); padding: 20px; }
@media (min-width: 600px) { .r-card { padding: 30px; } }
.stars { color: var(--pine); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.88rem; }
.r-quote { font-size: 0.95rem; margin-bottom: 16px; }
.r-who { display: flex; align-items: center; gap: 10px; }
.r-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; flex-shrink: 0; }
.r-name { font-weight: 600; font-size: 0.86rem; }
.r-treat { font-size: 0.76rem; color: var(--ink-soft); }

/* FAQ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 4px; text-align: left; font-size: 0.96rem; font-weight: 600; min-height: 56px; }
@media (min-width: 600px) { .faq__q { padding: 24px 4px; font-size: 1.08rem; } }
.faq__q .plus { font-family: var(--font-mono); font-size: 1.2rem; color: var(--pine); transition: transform .25s ease; flex-shrink: 0; }
.faq-item.is-open .faq__q .plus { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 4px 18px; color: var(--ink-soft); max-width: 70ch; font-size: 0.92rem; }

/* CTA BAND */
.cta-band { background: var(--ink); color: var(--paper); padding: 56px 0; text-align: center; }
@media (min-width: 600px) { .cta-band { padding: 90px 0; } }
.cta-band h2 { font-size: clamp(1.8rem, 6vw, 3rem); max-width: 16ch; margin: 0 auto 14px; }
.cta-band p { color: var(--paper-soft); max-width: 52ch; margin: 0 auto 26px; font-size: 0.95rem; }
@media (min-width: 600px) { .cta-band p { font-size: 1.05rem; margin-bottom: 34px; } }
.cta-ctas { display: flex; flex-direction: column; align-items: stretch; gap: 12px; justify-content: center; margin-bottom: 20px; padding: 0 16px; }
@media (min-width: 420px) { .cta-ctas { flex-direction: row; flex-wrap: wrap; align-items: center; padding: 0; } }
.cta-fine { font-family: var(--font-mono); font-size: 0.72rem; color: var(--paper-soft); }

/* FOOTER */
footer { background: var(--ink); color: var(--paper); padding-top: 48px; }
@media (min-width: 600px) { footer { padding-top: 70px; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; border-bottom: 1px solid var(--line-inv); }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; } }
.footer-logo img { height: 62px; margin-bottom: 14px; }
.footer-about { color: var(--paper-soft); font-size: 0.88rem; max-width: 34ch; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line-inv); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; transition: background .15s ease, border-color .15s ease; }
.footer-social a:hover { background: var(--pine); border-color: var(--pine); }
.footer-col h4 { font-family: var(--font-mono); font-weight: 500; font-size: 0.76rem; color: var(--pine); margin-bottom: 14px; }
.footer-col li { margin-bottom: 10px; font-size: 0.88rem; color: var(--paper-soft); }
.footer-col a:hover { color: var(--paper); }
.footer-map { width: 100%; border: 0; height: 220px; filter: grayscale(1) invert(0.92) contrast(0.9); }
@media (min-width: 820px) { .footer-map { height: 450px; } }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; padding: 18px 0; font-size: 0.76rem; color: var(--paper-soft); }
.footer-bottom a { color: var(--pine); }

/* BACK TO TOP */
#toTop { position: fixed; right: 16px; bottom: 80px; z-index: 150; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s; border: 1px solid var(--line-inv); font-size: 1.1rem; }
#toTop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .25s ease, transform .25s ease; }

/* STICKY BAR */
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 180; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--ink); border-top: 2px solid var(--pine); height: var(--sticky-h); }
.sticky-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 6px 4px; color: var(--paper); font-size: 0.62rem; font-weight: 700; border-right: 1px solid var(--line-inv); letter-spacing: 0.04em; text-transform: uppercase; transition: background .15s ease; }
.sticky-bar a:last-child { border-right: none; }
.sticky-bar a:active, .sticky-bar a:hover { background: rgba(255,255,255,0.06); }
.sticky-bar a.primary { background: var(--pine); }
.sticky-bar a.primary:hover { background: var(--pine-dark); }
.sticky-bar img { width: 22px; height: 22px; object-fit: contain; display: block; }
.sticky-bar svg { width: 20px; height: 20px; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
