/* =========================================================
   21Nove — Editorial / Bold Design System
   Palette: Nero + Giallo brand + off-white
   ========================================================= */

:root {
  --brand: #FFCC00;
  --brand-2: #FFD633;
  --brand-dark: #E5B800;
  --brand-glow: rgba(255,204,0,.35);

  --ink: #0B0B0B;
  --ink-2: #171717;
  --ink-3: #262626;
  --ink-muted: #4A4A4A;
  --muted: #6E6E6E;

  --line: #EAE8E4;
  --line-2: #E1DED8;
  --bg: #FBFAF7;
  --bg-2: #FFFFFF;
  --bg-soft: #F3F1EC;
  --bg-warm: #F7F4EC;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --max: 1240px;

  --shadow-sm: 0 2px 8px rgba(15,15,15,.05);
  --shadow-md: 0 18px 40px rgba(15,15,15,.09);
  --shadow-lg: 0 30px 80px rgba(15,15,15,.18);
  --shadow-brand: 0 20px 50px rgba(255,204,0,.35);

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;

  --nav-h: 72px;

  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ============ Typography ============ */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.05;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h3 { font-size: clamp(1.15rem, 1.4vw, 1.35rem); }
p  { margin: 0 0 1em; color: var(--ink-3); }
strong { font-weight: 700; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); }
.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark p { color: rgba(255,255,255,.72); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .lead { color: rgba(255,255,255,.85); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--brand);
  display: inline-block;
  border-radius: 2px;
}
.section--dark .eyebrow { color: var(--brand); }
.section--dark .eyebrow::before { background: var(--brand); }
.eyebrow--center { justify-content: center; }

.lead {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  max-width: 60ch;
  color: var(--ink-3);
  line-height: 1.65;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out),
              background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  min-height: 48px;
  position: relative;
  isolation: isolate;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--brand);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(255,204,0,.4);
}
.btn--primary:hover {
  background: var(--brand-2);
  box-shadow: 0 18px 36px rgba(255,204,0,.5);
}
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.btn--outline-light {
  background: rgba(255,255,255,.05);
  color: #fff;
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn .arrow { transition: transform .3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,250,247,.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.is-scrolled {
  background: rgba(251,250,247,.92);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--ink);
  padding: 6px;
}
.nav__brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: invert(1); }
.nav__brand-text { font-weight: 700; }
.nav__brand-text b { color: var(--ink); }

.nav__links {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.nav__links > li:not(.nav__cta) > a {
  font-weight: 500;
  font-size: .93rem;
  color: var(--ink-3);
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex; align-items: center;
  transition: color .2s, background .2s;
  position: relative;
}
.nav__links > li:not(.nav__cta) > a:hover { color: var(--ink); background: rgba(0,0,0,.04); }
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after {
  content: ""; position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 4px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
}
.nav__cta { margin-left: 14px; }
.nav__cta .btn { padding: 12px 22px; min-height: 44px; font-size: .9rem; }

.nav__toggle {
  display: none;
  background: var(--ink); border: 0; cursor: pointer;
  width: 46px; height: 46px;
  border-radius: 12px;
  padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  transition: background .2s;
}
.nav__toggle span {
  display: block; width: 20px; height: 2px; background: var(--brand);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0 clamp(70px, 9vw, 120px);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: -20% -10% auto -20%;
  height: 70%;
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(255,204,0,.28), transparent 60%),
    radial-gradient(50% 40% at 90% 20%, rgba(255,204,0,.16), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.hero__giant {
  position: absolute;
  right: -4%;
  bottom: -12%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20rem, 42vw, 42rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,204,0,.18);
  z-index: -1;
  pointer-events: none;
  letter-spacing: -.06em;
  user-select: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}
.hero__content .eyebrow { color: var(--brand); }
.hero__content .eyebrow::before { background: var(--brand); }
.hero h1 { color: #fff; }
.hero h1 em {
  font-style: normal;
  color: var(--brand);
  font-family: var(--font-display);
  position: relative;
}
.hero__lead {
  color: rgba(255,255,255,.82);
  max-width: 54ch;
  font-size: clamp(1.02rem, 1.15vw, 1.15rem);
  margin: 24px 0 34px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  color: var(--brand);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.hero__meta span {
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 500;
}

/* Hero visual card (right side) */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  box-shadow: var(--shadow-lg);
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.hero:hover .hero__visual img { transform: scale(1.05); }
.hero__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55));
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  top: 22px; left: 22px;
  padding: 8px 14px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  z-index: 2;
  backdrop-filter: blur(10px);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 0 4px rgba(255,204,0,.25);
}
.hero__tag {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  padding: 16px 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: #fff;
  z-index: 2;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; gap: 14px;
  font-size: .92rem;
  line-height: 1.35;
}
.hero__tag-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--brand);
  line-height: 1;
}

/* ============ Marquee ============ */
.marquee {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  border-block: 1px solid var(--ink-2);
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.marquee__item::after {
  content: "";
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ Section Head ============ */
.section-head { margin-bottom: clamp(50px, 6vw, 80px); max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }

/* ============ Feature cards ============ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature:hover::before { transform: scaleX(1); }
.feature__icon {
  width: 60px; height: 60px;
  background: var(--ink);
  border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  transition: background .3s;
}
.feature__icon svg { width: 28px; height: 28px; stroke: var(--brand); }
.feature:hover .feature__icon { background: var(--brand); }
.feature:hover .feature__icon svg { stroke: var(--ink); }
.feature h3 { margin-bottom: 12px; }
.feature p { margin-bottom: 16px; font-size: .96rem; }
.feature__link {
  display: inline-flex; gap: 8px; align-items: center;
  font-weight: 600;
  color: var(--ink);
  font-size: .9rem;
}
.feature__link .arrow { transition: transform .3s var(--ease-out); }
.feature__link:hover { color: var(--brand-dark); }
.feature__link:hover .arrow { transform: translateX(4px); }

/* ============ Split (image + content) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.split__media:hover img { transform: scale(1.05); }
.split__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,.35));
  pointer-events: none;
}
.split__badge {
  position: absolute; top: 22px; left: 22px;
  background: var(--brand); color: var(--ink);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  z-index: 2;
}
.split__list {
  list-style: none; padding: 0; margin: 26px 0 32px;
}
.split__list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 0;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  font-size: .98rem;
}
.split__list li:last-child { border-bottom: 0; }
.split__list li::before {
  content: "";
  width: 24px; height: 24px;
  flex: none;
  border-radius: 50%;
  background: var(--brand) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
  margin-top: 1px;
}

/* ============ Bento gallery ============ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.bento__item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: var(--ink-2);
}
.bento__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.bento__item:hover img { transform: scale(1.06); }
.bento__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55));
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.bento__item:hover::after { opacity: 1; }
.bento__caption {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s, transform .35s;
  z-index: 2;
}
.bento__item:hover .bento__caption { opacity: 1; transform: translateY(0); }
.bento__item--wide  { grid-column: span 3; grid-row: span 2; }
.bento__item--tall  { grid-column: span 2; grid-row: span 2; }
.bento__item--small { grid-column: span 2; grid-row: span 1; }
.bento__item--card  { grid-column: span 3; grid-row: span 1; }

/* ============ Services grid ============ */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.service::after {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle at center, rgba(255,204,0,.14), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.service:hover::after { opacity: 1; }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--ink);
  border-radius: 16px;
  display: grid; place-items: center;
  height: 76px;
  position: relative;
  z-index: 1;
}
.service > div:last-child { position: relative; z-index: 1; }
.service h3 { margin-top: 4px; margin-bottom: 10px; }
.service p { font-size: .96rem; margin-bottom: 16px; }
.service__tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.service__tags span {
  font-size: .74rem;
  padding: 6px 12px;
  background: var(--bg-soft);
  border-radius: 999px;
  color: var(--ink-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============ CTA banner ============ */
.cta-banner {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner__inner {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(50px, 7vw, 90px) clamp(24px, 5vw, 60px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner__inner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% -10%, rgba(255,204,0,.28), transparent 60%),
    radial-gradient(50% 60% at 20% 110%, rgba(255,204,0,.14), transparent 60%);
  z-index: -1;
}
.cta-banner__giant {
  position: absolute;
  right: -8%; top: 40%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(12rem, 28vw, 24rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,204,0,.14);
  z-index: -1;
  user-select: none;
}
.cta-banner h2 { color: #fff; max-width: 22ch; margin-inline: auto; margin-bottom: 16px; }
.cta-banner .lead { color: rgba(255,255,255,.8); margin-inline: auto; margin-bottom: 32px; }

/* ============ Page hero (about, services, contact) ============ */
.page-hero {
  padding: clamp(70px, 9vw, 120px) 0 clamp(50px, 6vw, 80px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute; inset: auto auto -30% -10%;
  width: 60%; height: 70%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,204,0,.15), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: end;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--brand-dark);
  position: relative;
  display: inline-block;
}
.page-hero h1 em::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6%;
  height: 20%;
  background: var(--brand);
  opacity: .35;
  z-index: -1;
  border-radius: 4px;
}
.page-hero__side .lead { margin-bottom: 24px; }

/* ============ Mission cards ============ */
.about-mission {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mission-card {
  padding: 40px 32px;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.mission-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mission-card h3 { margin: 18px 0 12px; }
.mission-card__num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--brand);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 1.5px var(--ink);
}

/* ============ Contact page ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: flex-start;
}
.contact-info { display: grid; gap: 16px; margin-top: 26px; }
.contact-card {
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  transition: border-color .2s, box-shadow .2s, transform .3s;
}
.contact-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.contact-card__icon {
  width: 48px; height: 48px;
  background: var(--ink);
  border-radius: 12px;
  display: grid; place-items: center;
}
.contact-card__icon svg { width: 22px; height: 22px; stroke: var(--brand); }
.contact-card h4 {
  margin: 0 0 4px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
  font-weight: 700;
}
.contact-card p { margin: 0; color: var(--ink); font-weight: 500; }
.contact-card a { color: var(--ink); }
.contact-card a:hover { color: var(--brand-dark); }

/* Form */
.form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.form__row { display: grid; gap: 18px; margin-bottom: 18px; }
.form__row--2 { grid-template-columns: 1fr 1fr; }
.form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink-2);
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s, background .2s;
  min-height: 48px;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,204,0,.18);
}
.form textarea { min-height: 130px; resize: vertical; }
.form__check {
  display: flex; gap: 12px; align-items: flex-start; margin: 8px 0 20px;
  font-size: .86rem; color: var(--ink-3);
  line-height: 1.5;
}
.form__check input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--brand); }

/* Hours */
.hours {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}
.hours::before {
  content: "";
  position: absolute; right: -20%; top: -20%;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,204,0,.14), transparent 60%);
}
.hours h3 { color: #fff; margin-bottom: 20px; position: relative; z-index: 1; }
.hours ul { list-style: none; padding: 0; margin: 0; position: relative; z-index: 1; }
.hours li {
  display: flex; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  font-size: .95rem;
}
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { color: rgba(255,255,255,.7); }
.hours li span:last-child { color: var(--brand); font-weight: 600; }

/* Map */
.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/8;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============ Products grid ============ */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  background: var(--bg-2);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); position: relative; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__body { padding: 24px 26px 28px; }
.product-card__tag {
  display: inline-block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--ink);
  background: var(--brand);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 12px;
}
.product-card h3 { margin-bottom: 6px; }
.product-card p { color: var(--ink-3); font-size: .93rem; margin: 0; }

/* ============ Process timeline ============ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process__step {
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.process__step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process__step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--brand);
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--ink);
  display: block;
  margin-bottom: 18px;
}
.process__step h3 { margin-bottom: 8px; }
.process__step p { font-size: .92rem; margin: 0; }

/* ============ Testimonials ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  padding: 32px;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 8px;
  display: block;
}
.testimonial p {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 22px;
}
.testimonial__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brand);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial__name { font-weight: 600; color: var(--ink); font-size: .95rem; }
.testimonial__role { color: var(--muted); font-size: .82rem; display: block; }

/* ============ Blog list ============ */
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.blog-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__cat {
  position: absolute; top: 18px; left: 18px;
  background: var(--brand); color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  z-index: 2;
}
.blog-card__body {
  padding: 28px 30px 32px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.blog-card__meta {
  display: flex; gap: 14px; align-items: center;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
}
.blog-card__meta span::before {
  content: "·"; margin-right: 14px; color: var(--muted);
}
.blog-card__meta span:first-child::before { content: none; margin: 0; }
.blog-card h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 6px;
  transition: color .2s;
}
.blog-card:hover h3 { color: var(--brand-dark); }
.blog-card__excerpt {
  color: var(--ink-3);
  font-size: .96rem;
  margin: 0;
  flex: 1;
}
.blog-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
  color: var(--ink);
  font-size: .9rem;
  margin-top: 8px;
}
.blog-card__link .arrow { transition: transform .3s var(--ease-out); }
.blog-card:hover .blog-card__link .arrow { transform: translateX(6px); }

/* Featured blog card (larger, spans full width) */
.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
}
.blog-card--featured .blog-card__img { aspect-ratio: auto; height: 100%; min-height: 360px; }
.blog-card--featured .blog-card__body { padding: 44px 48px; justify-content: center; }
.blog-card--featured h3 { font-size: 2rem; line-height: 1.1; }
.blog-card--featured .blog-card__excerpt { font-size: 1.05rem; }

/* Home blog teaser */
.blog-teaser {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ============ Article ============ */
.article {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}
.article__header {
  padding: clamp(60px, 8vw, 90px) 0 clamp(40px, 5vw, 60px);
  text-align: center;
}
.article__cat {
  display: inline-block;
  background: var(--brand); color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 22px;
}
.article__header h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.025em;
}
.article__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-3);
  font-size: .92rem;
  flex-wrap: wrap;
  justify-content: center;
}
.article__meta-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brand);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.article__meta-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--muted);
  display: inline-block;
}
.article__meta strong { color: var(--ink); font-weight: 600; }

.article__cover {
  max-width: 1000px;
  margin: 0 auto clamp(50px, 6vw, 80px);
  padding: 0 clamp(20px, 4vw, 32px);
}
.article__cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 21/10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.article__body {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-2);
}
.article__body h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin: 44px 0 16px;
  line-height: 1.2;
}
.article__body h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}
.article__body p {
  margin: 0 0 20px;
  color: var(--ink-2);
}
.article__body a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.article__body a:hover { color: var(--ink); }
.article__body ul, .article__body ol {
  padding-left: 24px;
  margin: 0 0 24px;
}
.article__body li {
  margin-bottom: 10px;
  color: var(--ink-2);
}
.article__body strong { color: var(--ink); font-weight: 700; }

.article__quote {
  border-left: 4px solid var(--brand);
  background: var(--bg-soft);
  padding: 26px 28px;
  margin: 36px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.article__key-points {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  margin: 40px 0;
  border: 1px solid var(--line);
}
.article__key-points h3 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--brand-dark);
  font-weight: 700;
}
.article__key-points ul { margin: 0; padding-left: 0; list-style: none; }
.article__key-points li {
  padding: 8px 0 8px 30px;
  position: relative;
  margin: 0;
  font-size: .98rem;
}
.article__key-points li::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 20px; height: 20px;
  background: var(--brand) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
  border-radius: 50%;
}

.article__cta {
  margin: 60px 0;
  padding: 36px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.article__cta h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.article__cta p { margin: 0; color: rgba(255,255,255,.7); font-size: .95rem; }
@media (max-width: 620px) {
  .article__cta { grid-template-columns: 1fr; padding: 26px; }
  .article__cta .btn { width: 100%; justify-content: center; }
}

.article__author {
  margin: 60px 0 20px;
  padding: 26px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; gap: 18px;
}
.article__author-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brand);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.article__author-info { flex: 1; }
.article__author-name { color: var(--ink); font-weight: 700; margin: 0 0 4px; font-family: var(--font-display); font-size: 1rem; }
.article__author-role { color: var(--muted); font-size: .88rem; margin: 0; }

.article__nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 50px 0;
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
}
.article__nav a { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.article__nav a:hover { color: var(--brand-dark); }

@media (max-width: 768px) {
  .blog-list, .blog-teaser { grid-template-columns: 1fr; }
  .blog-card--featured { grid-template-columns: 1fr; }
  .blog-card--featured .blog-card__img { min-height: 240px; aspect-ratio: 16/10; height: auto; }
  .blog-card--featured .blog-card__body { padding: 30px 26px; }
  .blog-card--featured h3 { font-size: 1.5rem; }
  .article__quote { padding: 20px 22px; font-size: 1.05rem; margin: 26px 0; }
  .article__cta { padding: 26px 22px; }
  .article__nav { flex-direction: column; gap: 14px; text-align: center; }
}

/* ============ Legal ============ */
.legal { max-width: 820px; margin: 0 auto; padding: 40px 0 60px; }
.legal h1 { margin: 20px 0 26px; }
.legal h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; color: var(--ink-3); }
.legal a { color: var(--brand-dark); text-decoration: underline; }

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: clamp(60px, 8vw, 90px) 0 30px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.footer::before {
  content: "";
  position: absolute; inset: -20% -20% auto auto;
  width: 60%; height: 60%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,204,0,.08), transparent 60%);
  z-index: -1;
}
.footer h4 {
  color: #fff;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  margin-bottom: 22px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand-mark {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.footer__brand-mark .nav__brand-mark { background: var(--brand); }
.footer__brand-mark .nav__brand-mark img { filter: none; }
.footer__brand-mark-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}
.footer__brand p { color: rgba(255,255,255,.65); max-width: 34ch; font-size: .93rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 5px 0; }
.footer a { color: rgba(255,255,255,.7); transition: color .2s; font-size: .95rem; }
.footer a:hover { color: var(--brand); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center;
  transition: background .2s, border-color .2s, transform .3s;
}
.footer__social a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-3px); }
.footer__social a:hover svg { stroke: var(--ink); }
.footer__social svg { width: 18px; height: 18px; stroke: rgba(255,255,255,.85); }
.footer__bottom {
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap; gap: 12px 24px;
}
.footer__bottom a { color: rgba(255,255,255,.7); }
.footer__bottom a:hover { color: var(--brand); }
.footer__meta {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.footer__made {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.55);
}
.footer__made::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,.3);
  display: inline-block;
}
.footer__made a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,204,0,.35);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.footer__made a:hover {
  color: var(--brand-2);
  border-bottom-color: var(--brand-2);
}
@media (max-width: 620px) {
  .footer__meta { width: 100%; justify-content: flex-start; }
  .footer__made::before { display: none; }
}

/* ============ Cookie banner ============ */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 26px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.08);
  max-width: 900px;
  margin: 0 auto;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .6s var(--ease-out), opacity .4s ease;
  will-change: transform, opacity;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__text {
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(255,255,255,.85);
}
.cookie-banner__text strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.cookie-banner__text a { color: var(--brand); text-decoration: underline; }
.cookie-banner__text a:hover { color: var(--brand-2); }
.cookie-banner__actions {
  display: flex; gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner__actions .btn {
  padding: 12px 22px;
  font-size: .88rem;
  min-height: 44px;
}
.cookie-banner__actions .btn--outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.28);
  color: #fff;
}
.cookie-banner__actions .btn--outline-light:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
@media (max-width: 640px) {
  .cookie-banner {
    left: 12px; right: 12px; bottom: 12px;
    grid-template-columns: 1fr;
    padding: 20px 22px;
    gap: 16px;
  }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__actions .btn { width: 100%; justify-content: center; }
}

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet ≤ 1024 */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { aspect-ratio: 16/10; max-height: 380px; margin-inline: auto; max-width: 560px; width: 100%; }
  .features { grid-template-columns: 1fr 1fr; }
  .features > .feature:last-child { grid-column: 1 / -1; }
  .products { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .about-mission { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* Mobile ≤ 768 */
@media (max-width: 768px) {
  h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.7rem, 6.5vw, 2.2rem); }

  .nav__toggle { display: flex; }
  .nav__brand-text { font-size: 1rem; }
  .nav__brand-mark { width: 34px; height: 34px; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px;
    gap: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .45s var(--ease-out), padding .3s ease, border-bottom-color .3s;
    border-bottom: 1px solid transparent;
    box-shadow: 0 10px 24px rgba(0,0,0,0);
  }
  .nav.is-open .nav__links {
    max-height: calc(100vh - var(--nav-h));
    padding: 12px 24px 30px;
    border-bottom-color: var(--line);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
    overflow-y: auto;
  }
  .nav__links > li:not(.nav__cta) > a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    display: flex; justify-content: space-between;
  }
  .nav__links > li:not(.nav__cta) > a::after { display: none; }
  .nav__links > li:not(.nav__cta) > a.is-active { color: var(--brand-dark); }
  .nav__links > li:not(.nav__cta) > a.is-active::before {
    content: "→"; margin-left: 8px; color: var(--brand-dark);
  }
  .nav__cta { margin: 20px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; padding: 16px 22px; min-height: 52px; font-size: 1rem; }

  .hero { padding: 30px 0 60px; }
  .hero__giant { font-size: clamp(16rem, 60vw, 24rem); bottom: -8%; right: -10%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; padding: 16px 22px; }
  .hero__meta { grid-template-columns: repeat(3, 1fr); gap: 14px; padding-top: 24px; margin-top: 30px; }
  .hero__meta strong { font-size: 1.4rem; }
  .hero__meta span { font-size: .68rem; letter-spacing: .1em; }
  .hero__visual { aspect-ratio: 4/3; max-height: 320px; }

  .marquee { padding: 16px 0; }
  .marquee__track { gap: 40px; }
  .marquee__item { gap: 20px; font-size: 1.15rem; }
  .marquee__item::after { width: 10px; height: 10px; }

  .features, .services, .products, .process, .contact-grid { grid-template-columns: 1fr; }
  .features > .feature:last-child { grid-column: 1; }
  .feature { padding: 30px 26px; }
  .service { padding: 28px 24px; grid-template-columns: 60px 1fr; gap: 18px; }
  .service__num { height: 60px; font-size: 1.15rem; }
  .contact-grid { gap: 40px; }
  .form { padding: 24px 20px; }
  .hours { padding: 26px 22px; }
  .map { aspect-ratio: 16/12; }

  .split { grid-template-columns: 1fr; gap: 30px; }
  .split--reverse .split__media { order: 0; }
  .split__media { aspect-ratio: 4/3; max-height: 400px; }
  .split__list li { padding: 10px 0; font-size: .95rem; }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 10px;
  }
  .bento__item--wide  { grid-column: span 2; grid-row: span 2; }
  .bento__item--tall  { grid-column: span 1; grid-row: span 2; }
  .bento__item--small { grid-column: span 1; grid-row: span 1; }
  .bento__item--card  { grid-column: span 2; grid-row: span 1; }

  .cta-banner__inner { padding: 48px 24px; }

  .form__row--2 { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* Very small ≤ 380 */
@media (max-width: 380px) {
  h1 { font-size: 2rem; }
  .hero { padding: 24px 0 50px; }
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .hero__meta > div:last-child { grid-column: span 2; text-align: center; }
  .container { padding: 0 18px; }
}
