/* ==========================================================================
   Tokens
   ========================================================================== */
:root {
  --bg: #f8f9f4;
  --band: #f0f0e5;
  --tile: #e8ebd5;
  --line: #e1e4d4;
  --ink: #0f1a15;
  --muted: #59645d;
  --forest: #083b33;
  --forest-hover: #06302a;
  --focus: #1f7a5c;
  --rust: #b9764a;
  --rust-tile: #f1e2d1;

  --font-head: 'Vastago Grotesk', 'Inter Tight', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --gutter: 16px;
  --content: 1280px;
  --section-y: 72px;
  --radius-hero: 24px;
}
@media (min-width: 768px)  { :root { --gutter: 24px; --section-y: 96px; --radius-hero: 28px; } }
@media (min-width: 1100px) { :root { --gutter: 32px; --section-y: 120px; } }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-body); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, p, ol, ul, figure { margin: 0; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 6px; }

.container { width: min(100% - 2 * var(--gutter), var(--content)); margin-inline: auto; }
.ico { width: 22px; height: 22px; flex: none; }
.ico * { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ico--sm { width: 18px; height: 18px; }

.kicker { font-size: 14px; color: var(--muted); font-weight: 500; }
.h2 {
  font-family: var(--font-head); font-weight: 500; text-wrap: balance;
  font-size: clamp(32px, 8.6vw, 48px); line-height: 1.05; letter-spacing: -0.038em;
}
.section-head .h2 { margin-top: 12px; max-width: 18ch; }
.section-head p.lead { margin-top: 16px; max-width: 46ch; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 48px; padding: 0 22px; border: 0; border-radius: 999px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.005em; line-height: 1;
  white-space: nowrap; cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}
.btn:active { transform: scale(.98); }
.btn .ico { width: 18px; height: 18px; }
.btn--forest { background: var(--forest); color: #fff; }
.btn--forest:hover { background: var(--forest-hover); }
.btn--light { background: #fff; color: var(--forest); }
.btn--light:hover { background: #eef2ea; }
.btn--line { background: #fff; color: var(--forest); border: 1px solid var(--line); }
.btn--line:hover { background: var(--bg); }
.btn--glass { background: rgba(255,255,255,.2); color: #fff; border: 1px solid rgba(255,255,255,.32); }
.btn--glass:hover { background: rgba(255,255,255,.3); }
.btn--sm { height: 42px; padding: 0 18px; font-size: 14px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { position: relative; z-index: 30; padding: 14px 0; }
.site-header__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-size: clamp(15px, 4.4vw, 20px); font-weight: 700; letter-spacing: -0.03em; color: var(--forest); white-space: nowrap; }
.logo svg { width: 32px; height: 32px; flex: none; }
@media (min-width: 420px) { .logo svg { width: 34px; height: 34px; } }

.nav { display: none; }
.nav a { font-size: 14.5px; font-weight: 500; opacity: .8; transition: opacity .15s; }
.nav a:hover { opacity: 1; }
.header-cta { display: none; }

.menu-btn {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  background: #fff; border: 1px solid var(--line);
}
.menu-btn svg { width: 20px; height: 20px; }
.menu-btn path { stroke: var(--forest); stroke-width: 1.8; stroke-linecap: round; fill: none; transition: transform .25s ease, opacity .2s ease; transform-origin: center; }
.menu-btn[aria-expanded="true"] .l1 { transform: translateY(4px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .l2 { opacity: 0; }
.menu-btn[aria-expanded="true"] .l3 { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 8px;
  box-shadow: 0 24px 48px -16px rgba(8,59,51,.22);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a.link { display: block; padding: 14px 14px; font-size: 18px; font-weight: 500; letter-spacing: -0.01em; border-radius: 14px; }
.mobile-menu a.link:active { background: var(--bg); }
.mobile-menu .btn { width: 100%; margin-top: 6px; height: 52px; }

@media (min-width: 900px) {
  .site-header { padding: 18px 0; }
  .site-header__inner { display: grid; grid-template-columns: 1fr auto 1fr; }
  .nav { display: flex; gap: 32px; }
  .header-cta { display: flex; justify-content: flex-end; }
  .menu-btn, .mobile-menu { display: none; }
}

/* ==========================================================================
   Hero: photo with progressive blur
   ========================================================================== */
.hero { position: relative; }
.hero__media {
  position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius-hero);
  min-height: clamp(520px, 74svh, 620px); display: flex; align-items: flex-end; background: #1d3a2c;
}
.hero__img {
  position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%;
  object-fit: cover; object-position: 55% 35%;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to top, rgba(4,30,22,.88) 0%, rgba(4,30,22,.64) 34%, rgba(4,30,22,.16) 62%, rgba(4,30,22,0) 78%);
}
.hero__blur { position: absolute; left: 0; right: 0; bottom: 0; height: 70%; z-index: -2; pointer-events: none; }
.hero__blur i { position: absolute; inset: 0; display: none; }
/* Mobile: one light blur layer (cheap on phones) */
.hero__blur i:nth-child(2) {
  display: block;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 55%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 55%);
}

.hero__content { position: relative; width: 100%; padding: 24px 20px 28px; color: #fff; animation: hero-in .9s .15s cubic-bezier(.2,.7,.2,1) both; }
.hero__title {
  margin-top: 14px;
  font-family: var(--font-head); font-weight: 500; text-wrap: balance; max-width: 13ch;
  font-size: clamp(38px, 10.4vw, 64px); line-height: 1.03; letter-spacing: -0.035em;
}
.hero__pill {
  display: inline-flex; align-items: center; height: 30px; padding: 0 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: -0.005em; color: #fff;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.hero__lead { margin-top: 16px; max-width: 36ch; font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.88); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.hero__actions .btn { padding: 0 15px; }
.hero__actions .btn--light { flex: 1 1 auto; }

@keyframes hero-in   { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (min-width: 768px) {
  .hero__content { padding: 48px 48px 52px; max-width: 860px; }
  .hero__title { max-width: 18ch; }
  .hero__lead { font-size: 17px; max-width: 44ch; }
  .hero__actions .btn { padding: 0 22px; }
  .hero__actions .btn--light { flex: 0 0 auto; }
}
@media (min-width: 1100px) {
  .hero__media { min-height: clamp(620px, 82svh, 740px); }
  .hero__blur { height: 68%; }
  .hero__blur i { display: block; }
  .hero__blur i:nth-child(1) {
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 45%, transparent 62%);
            mask-image: linear-gradient(to bottom, transparent 0%, #000 25%, #000 45%, transparent 62%);
  }
  .hero__blur i:nth-child(2) {
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 30%, #000 55%, #000 72%, transparent 88%);
            mask-image: linear-gradient(to bottom, transparent 30%, #000 55%, #000 72%, transparent 88%);
  }
  .hero__blur i:nth-child(3) {
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 55%, #000 80%);
            mask-image: linear-gradient(to bottom, transparent 55%, #000 80%);
  }
  .btn--glass { -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4); }
  .hero__content { padding: 64px 64px 56px; }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services { background: var(--band); padding-block: var(--section-y); margin-top: var(--section-y); }
.svc-grid { display: grid; gap: 10px; margin-top: 36px; grid-template-columns: minmax(0, 1fr); }
.svc { display: flex; align-items: flex-start; gap: 16px; background: #fff; border-radius: 22px; padding: 18px; }
.svc__icon { width: 48px; height: 48px; border-radius: 14px; background: var(--tile); color: var(--forest); display: grid; place-items: center; flex: none; }
.svc__icon .ico { width: 24px; height: 24px; }
.svc h3 { font-family: var(--font-head); font-size: 18px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; padding-top: 2px; }
.svc p { margin-top: 5px; font-size: 15px; line-height: 1.5; color: var(--muted); }
@media (min-width: 600px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }
@media (min-width: 1000px) {
  .svc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 48px; }
  .svc { flex-direction: column; gap: 40px; padding: 22px; min-height: 236px; border-radius: 26px; }
  .svc h3 { font-size: 19px; }
  .svc__icon { width: 52px; height: 52px; border-radius: 16px; }
  .svc__icon .ico { width: 27px; height: 27px; }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { padding-top: var(--section-y); }
.gallery__head { margin-bottom: 24px; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }

.see-all {
  display: none; align-items: center; gap: 6px; flex: none;
  font-size: 14.5px; font-weight: 600; color: var(--forest); padding-bottom: 3px;
  border-bottom: 1px solid transparent; transition: border-color .15s ease, gap .15s ease;
}
.see-all .ico { width: 17px; height: 17px; transition: transform .15s ease; }
.see-all:hover { border-color: currentColor; gap: 9px; }
.see-all--under { display: inline-flex; margin-top: 20px; }

.gal-rail {
  display: flex; gap: 12px; padding: 4px var(--gutter) 10px;
  overflow-x: auto; scroll-snap-type: x proximity; scroll-padding-left: var(--gutter);
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.gal-rail::-webkit-scrollbar { display: none; }
.gal-card {
  position: relative; flex: 0 0 auto; scroll-snap-align: start;
  width: 172px; height: 220px; border-radius: 20px; overflow: hidden;
  display: flex; align-items: flex-end; padding: 14px;
  isolation: isolate; transition: transform .2s ease;
}
.gal-card:hover { transform: translateY(-3px); }
.gal-card:active { transform: translateY(0) scale(.98); }
.gal-card__wm { position: absolute; top: 50%; left: 50%; width: 96px; height: 96px; transform: translate(-50%,-46%); opacity: .16; }
.gal-card__wm * { stroke-width: 1.1; }
.gal-card__label {
  position: relative; font-family: var(--font-head); font-size: 15px; font-weight: 600;
  letter-spacing: -0.015em; line-height: 1.2;
}
.gal-card--1, .gal-card--4, .gal-card--7 { background: var(--forest); color: #fff; }
.gal-card--1 .gal-card__wm, .gal-card--4 .gal-card__wm, .gal-card--7 .gal-card__wm { stroke: #fff; }
.gal-card--2, .gal-card--6 { background: var(--rust-tile); color: #5c3a20; }
.gal-card--2 .gal-card__wm, .gal-card--6 .gal-card__wm { stroke: var(--rust); }
.gal-card--3, .gal-card--5 { background: var(--tile); color: var(--forest); }
.gal-card--3 .gal-card__wm, .gal-card--5 .gal-card__wm { stroke: var(--forest); }
.gal-card--8 {
  width: 220px; color: #fff;
  background: linear-gradient(155deg, var(--forest) 0%, var(--forest-hover) 55%, var(--rust) 145%);
}
.gal-card--8 .gal-card__wm { stroke: #fff; opacity: .22; width: 120px; height: 120px; }

@media (min-width: 640px) {
  .see-all { display: inline-flex; }
  .see-all--under { display: none; }
  .gal-card { width: 220px; height: 260px; padding: 18px; }
  .gal-card--8 { width: 280px; }
  .gal-card__label { font-size: 17px; }
}
@media (min-width: 1000px) {
  .gal-rail { gap: 16px; }
  .gal-card { width: 248px; height: 288px; border-radius: 24px; }
  .gal-card--8 { width: 320px; }
}

/* ---------- Gallery page (gallery.html) ---------- */
.page-intro { padding-top: 28px; padding-bottom: var(--section-y); }
.back-link {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14.5px; font-weight: 600;
  color: var(--muted); margin-bottom: 22px;
}
.back-link .ico { width: 17px; height: 17px; }
.back-link:hover { color: var(--forest); }
.page-intro h1 {
  font-family: var(--font-head); font-weight: 500; text-wrap: balance; max-width: 16ch;
  font-size: clamp(32px, 8.6vw, 48px); line-height: 1.05; letter-spacing: -0.038em;
}
.page-intro p.lead { margin-top: 16px; max-width: 50ch; color: var(--muted); }

.gal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding-bottom: var(--section-y); }
.gal-grid .gal-card { width: 100%; height: auto; aspect-ratio: 4 / 5; }
.gal-grid .gal-card--8 { grid-column: span 2; aspect-ratio: 21 / 10; }
.gal-grid .gal-card__wm { width: 30%; height: 30%; }
@media (min-width: 640px) {
  .gal-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gal-grid .gal-card--8 { grid-column: span 3; aspect-ratio: 21 / 8; }
}
@media (min-width: 1000px) { .gal-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

/* ==========================================================================
   About
   ========================================================================== */
.about { padding-top: var(--section-y); }
.about__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: center; }
.about__media { position: relative; }
.about__photo { aspect-ratio: 4 / 4.6; width: 100%; object-fit: cover; object-position: center 20%; border-radius: 24px; background: #cfd8c4; }
.about__chip {
  position: absolute; left: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px 10px 12px; border-radius: 999px; font-size: 14px; font-weight: 600; color: #fff;
  background: rgba(8,40,30,.45); border: 1px solid rgba(255,255,255,.3);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px -14px rgba(8,59,51,.45);
}
.about__chip .ico { width: 18px; height: 18px; }
.about__title { margin-top: 12px; max-width: 16ch; }
.about__lead { margin-top: 16px; max-width: 44ch; color: var(--muted); }

.features { list-style: none; padding: 0; margin: 32px 0 0; }
.feature { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.feature:first-child { padding-top: 0; }
.feature__icon { width: 48px; height: 48px; border-radius: 14px; background: var(--tile); color: var(--forest); display: grid; place-items: center; }
.feature__icon .ico { width: 24px; height: 24px; }
.feature h3 { font-family: var(--font-head); font-size: 18px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; }
.feature p { margin-top: 6px; font-size: 15px; line-height: 1.55; color: var(--muted); }
@media (min-width: 900px) {
  .about__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 88px; }
  .about__photo { aspect-ratio: 1 / 1.1; border-radius: 28px; }
  .about__chip { left: 20px; bottom: 20px; }
  .about__title { max-width: 14ch; }
  .feature { padding: 24px 0; }
}

/* ==========================================================================
   Process
   ========================================================================== */
.process { padding-top: var(--section-y); }
.steps { list-style: none; padding: 0; margin: 36px 0 0; display: grid; gap: 0; }
.step { position: relative; display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding-bottom: 28px; }
.step:last-child { padding-bottom: 0; }
.step::before { content: ""; position: absolute; left: 21px; top: 48px; bottom: 4px; width: 1px; background: var(--line); }
.step:last-child::before { display: none; }
.step__n {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--forest); color: #fff; font-family: var(--font-head); font-size: 17px; font-weight: 600;
}
.step h3 { font-family: var(--font-head); font-size: 19px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; padding-top: 9px; }
.step p { margin-top: 6px; font-size: 15px; color: var(--muted); max-width: 40ch; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; margin-top: 56px; }
  .step { display: block; padding-bottom: 0; }
  .step::before { left: 60px; right: -16px; top: 21px; bottom: auto; width: auto; height: 1px; }
  .step h3 { margin-top: 24px; padding-top: 0; }
}

/* ==========================================================================
   Instagram band
   ========================================================================== */
.social { padding-top: var(--section-y); }
.social__card {
  display: grid; gap: 22px; align-items: center; background: #fff; border: 1px solid var(--line);
  border-radius: 26px; padding: 26px 22px;
}
.social__icon { width: 52px; height: 52px; border-radius: 16px; background: var(--tile); color: var(--forest); display: grid; place-items: center; }
.social__icon .ico { width: 26px; height: 26px; }
.social__card h2 { font-family: var(--font-head); font-size: clamp(24px, 6vw, 32px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.1; margin-top: 18px; }
.social__card p { margin-top: 8px; color: var(--muted); max-width: 44ch; }
.social__card .btn { width: 100%; }
@media (min-width: 768px) {
  .social__card { grid-template-columns: 1fr auto; padding: 36px 40px; gap: 32px; }
  .social__card .btn { width: auto; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-sec { background: var(--band); padding-block: var(--section-y); margin-top: var(--section-y); }
.faq-grid { display: grid; gap: 32px; }
.faq { display: grid; gap: 10px; }
.faq details { background: #fff; border-radius: 20px; padding: 0 20px; }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 0; font-family: var(--font-head); font-size: 17px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { width: 20px; height: 20px; color: var(--forest); }
.faq summary .v { transform-origin: 12px 12px; transition: transform .2s ease; }
.faq details[open] summary .v { transform: scaleY(0); }
.faq details p { padding: 0 0 20px; font-size: 15.5px; color: var(--muted); max-width: 58ch; }
.faq details a { color: var(--forest); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 900px) {
  .faq-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; align-items: start; }
  .faq-grid .section-head { position: sticky; top: 100px; }
}

/* ==========================================================================
   Contact + footer
   ========================================================================== */
.contact { padding: var(--section-y) 0 24px; }
.contact__card { background: var(--forest); color: #fff; border-radius: var(--radius-hero); padding: 36px 22px 24px; }
.contact__grid { display: grid; gap: 32px; }
.contact__title {
  font-family: var(--font-head); font-weight: 500; text-wrap: balance;
  font-size: clamp(32px, 8.6vw, 52px); line-height: 1.04; letter-spacing: -0.038em; max-width: 14ch;
}
.contact__lead { margin-top: 16px; max-width: 40ch; color: rgba(255,255,255,.78); }
.contact__list { display: grid; gap: 10px; }
.tile {
  display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 20px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); transition: background-color .2s;
}
.tile:hover { background: rgba(255,255,255,.14); }
.tile__icon { width: 46px; height: 46px; border-radius: 14px; background: #fff; color: var(--forest); display: grid; place-items: center; flex: none; }
.tile__icon .ico { width: 22px; height: 22px; }
.tile small { display: block; font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.3; }
.tile strong { display: block; font-family: var(--font-head); font-size: 19px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; overflow-wrap: anywhere; }
.tile .mail { font-size: 15px; letter-spacing: -0.01em; overflow-wrap: normal; }
.tile--static { cursor: default; }
.tile--static:hover { background: rgba(255,255,255,.08); }

.footer-bar {
  display: flex; flex-direction: column; gap: 16px; margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16); font-size: 14px; color: rgba(255,255,255,.7);
}
.footer-bar nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-bar a:hover { color: #fff; }
.footer-bar .logo { color: #fff; font-size: 18px; }
.footer-bar .logo svg { width: 30px; height: 30px; }
.footer-bar .logo svg rect { fill: #fff; }
.footer-bar .logo svg path { stroke: var(--forest); }
@media (min-width: 900px) {
  .contact__card { padding: 64px 56px 28px; }
  .contact__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
  .tile { padding: 20px; }
  .tile strong { font-size: 22px; }
  .tile .mail { font-size: 20px; }
  .footer-bar { flex-direction: row; align-items: center; justify-content: space-between; margin-top: 64px; }
}
.site-end { height: 24px; }
@media (max-width: 899px) { .site-end { height: calc(8px + env(safe-area-inset-bottom, 0px)); } }

/* ---------- Mobile call bar ---------- */
.callbar {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); z-index: 40;
  display: grid; grid-template-columns: 1.5fr 1fr 46px; gap: 8px; padding: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  box-shadow: 0 14px 30px -12px rgba(8,59,51,.35);
  transform: translateY(140%); visibility: hidden; transition: transform .35s cubic-bezier(.2,.7,.2,1), visibility 0s .35s;
}
.callbar.is-on { transform: none; visibility: visible; transition-delay: 0s; }
.callbar .btn { height: 46px; padding: 0 12px; }
.callbar .btn--icon { width: 46px; padding: 0; }
@media (min-width: 900px) { .callbar { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
