/* =========================================================
   Built by Boot — Whenevr-inspired design system
   Structure/geometry/palette modelled on the Whenevr one-page
   layout: white ground, near-black ink, grey panels, single
   green accent, Inter throughout, flat pill buttons, spring
   appear animations, scrolling word tickers.
   All markup, code and copy are Built by Boot's own — only the
   design language is modelled on the template.
   ========================================================= */

:root {
  /* ---- Palette (template scheme) ---- */
  --paper: #ffffff;      /* white ground */
  --paper-2: #f8f8f8;    /* soft panel */
  --band: #f0f0f0;       /* deeper panel */
  --sand: #ececec;
  --ink: #1c1c1c;        /* near-black text */
  --dark: #000000;       /* solid black buttons / bands */
  --dark-deep: #0d0d0d;  /* footer */
  --muted: #63636a;      /* secondary / body text on light — darkened for readability */
  --muted-2: #86868c;
  --muted-dark: #bdbdbd; /* secondary text on dark */
  --accent: #c6f24e;     /* bright lime */
  --accent-deep: #a7dd2c;
  --line: #dcdcdc;
  --line-dark: rgba(255, 255, 255, 0.16);

  /* ---- Depth: template is flat; shadows stay whisper-soft ---- */
  --shadow-cta: 0 10px 24px -14px rgba(0, 0, 0, 0.45);
  --shadow-cta-hover: 0 16px 32px -14px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 24px 48px -30px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 14px 34px -24px rgba(0, 0, 0, 0.18);

  /* ---- Legacy aliases ---- */
  --cream: var(--paper);
  --cream-2: var(--paper-2);
  --beige: var(--band);
  --green: var(--accent);
  --green-deep: var(--accent-deep);
  --gold: var(--accent);
  --lime: var(--accent);
  --brown: var(--ink);

  /* ---- Geometry (template radii: 50 pill / 40 card / 16 small) ---- */
  --maxw: 1200px;
  --textw: 840px;
  --pad: clamp(20px, 4vw, 30px);
  --radius-xl: 40px;
  --radius: 16px;
  --btn-radius: 50px;
  --sect: clamp(80px, 10vw, 140px);

  /* ---- Type: Inter only (template) ---- */
  --f-display: "Inter", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
  --f-mono: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.3, 0.64, 1); /* slight overshoot, spring feel */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--ink); color: var(--paper); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* =========================================================
   TYPE ROLES — big tight Inter
   ========================================================= */
.section__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.section__title--onDark { color: var(--paper); }
/* Editorial italic-serif accent word in headings — the premium type signature,
   carried through from the hero. Distinguished by form, not colour. */
.section__title em, .cta__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
  letter-spacing: -0.01em;
  color: inherit;
}

.label {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.label::before {
  content: "";
  width: 6px; height: 6px; flex: none; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(198, 242, 78, 0.85);
}
.label--onDark::before { box-shadow: 0 0 10px rgba(198, 242, 78, 0.9); }
.label--onDark { color: var(--muted-dark); }

/* Availability-style chip with pulsing green dot (template signature) */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
}
.tag::before {
  content: "";
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198, 242, 78, 0.7), 0 0 10px 2px rgba(198, 242, 78, 0.6); }
  50% { box-shadow: 0 0 0 7px rgba(198, 242, 78, 0), 0 0 10px 2px rgba(198, 242, 78, 0.6); }
}
@media (prefers-reduced-motion: reduce) { .tag::before { animation: none; } }

/* ---------- Brand logo ---------- */
.brand { display: inline-flex; align-items: center; }
.brand__img { display: block; height: 38px; width: auto; }
.brand--footer .brand__img { height: clamp(90px, 12vw, 130px); }

/* =========================================================
   BUTTONS — flat black pill / grey pill (template), spring hover
   ========================================================= */
.btn {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 14px 28px;
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.45s var(--spring), background 0.3s var(--ease),
    color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.45s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 16px 34px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }

.btn--solid { background: var(--dark); color: var(--paper); box-shadow: var(--shadow-cta); }
.btn--solid:hover { background: var(--ink); transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-cta-hover), 0 0 24px rgba(198, 242, 78, 0.4); }
.btn--solid:active { transform: scale(0.97); }

.btn--outline { background: var(--band); color: var(--ink); }
.btn--outline:hover { background: var(--sand); transform: translateY(-2px) scale(1.02); }

/* green accent button */
.btn--lemon { background: var(--accent); color: var(--ink); box-shadow: 0 0 22px rgba(198, 242, 78, 0.55), 0 10px 24px -14px rgba(0, 0, 0, 0.35); }
.btn--lemon:hover { background: var(--accent-deep); transform: translateY(-2px) scale(1.02); box-shadow: 0 0 34px rgba(198, 242, 78, 0.8), 0 14px 30px -14px rgba(0, 0, 0, 0.4); }
.btn--lemon:active { transform: scale(0.97); }

/* secondary "play" link */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.btn-play__i {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--band);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
  padding-left: 2px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.45s var(--spring);
}
.btn-play:hover { color: var(--ink); }
.btn-play:hover .btn-play__i { background: var(--accent); color: var(--ink); transform: scale(1.08); box-shadow: 0 0 16px rgba(198, 242, 78, 0.8); }

/* =========================================================
   NAV — minimal white strip (template navigation)
   ========================================================= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav { background: rgba(255, 255, 255, 0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color 0.4s var(--ease); }
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current] { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  border: none; background: var(--band); border-radius: 50%;
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__toggle span { display: block; width: 16px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 18px var(--pad) 26px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a { font-weight: 600; font-size: 22px; letter-spacing: -0.02em; padding: 10px 0; border-bottom: 1px solid var(--band); }
.nav__mobile a:last-child { border-bottom: none; margin-top: 10px; }

/* =========================================================
   HERO — centered type, spring appear stagger, image panel
   with a service ticker riding its lower edge (template hero)
   ========================================================= */
.hero { padding: clamp(140px, 18vh, 190px) 0 0; text-align: center; }
.hero__inner, .hero__lead { max-width: var(--textw); margin: 0 auto; padding-inline: var(--pad); }
.hero .tag { margin-bottom: 24px; }

.hero__big, .hero__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-wrap: balance;
}
.hero__title { font-size: clamp(38px, 5.2vw, 68px); }
.accent { color: var(--accent); font-style: normal; background: none; }

.hero__lede {
  margin: 24px auto 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.65;
}
.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* spring appear: elements start low + hidden, spring up in stagger */
.appear {
  opacity: 0;
  transform: translateY(28px) scale(0.99);
  transition: opacity 0.8s var(--ease), transform 0.9s var(--spring);
  transition-delay: var(--ad, 0s);
}
.appear.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .appear { opacity: 1; transform: none; transition: none; } }

/* hero visual panel — grey rounded stage for our own assets */
.hero__stage {
  max-width: var(--maxw);
  margin: clamp(48px, 7vw, 84px) auto 0;
  padding-inline: var(--pad);
}
.hero__panel {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--band);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(34px, 5vw, 70px) clamp(20px, 3vw, 50px) clamp(70px, 8vw, 110px);
}
.hero__collage {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: clamp(14px, 2.4vw, 34px);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.hero__collage img {
  width: 100%; height: auto;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.14));
  transition: transform 0.5s var(--spring);
}
.hero__collage img:hover { transform: scale(1.16) rotate(-4deg); }
/* alternate rows float slightly for a collage feel */
.hero__collage img:nth-child(even) { transform: translateY(-10px); }
.hero__collage img:nth-child(even):hover { transform: translateY(-10px) scale(1.16) rotate(4deg); }

/* ticker riding the panel's lower edge (template: ticker inside hero image) */
.hero__panel .ticker { position: absolute; left: 0; right: 0; bottom: clamp(18px, 2.6vw, 30px); }

/* =========================================================
   TICKER — scrolling word rows (template Ticker / hero ticker)
   ========================================================= */
.ticker { overflow: hidden; white-space: nowrap; position: relative; }
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: clamp(26px, 4vw, 56px);
  animation: tickerScroll 30s linear infinite;
  will-change: transform;
  padding-right: clamp(26px, 4vw, 56px);
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

.ticker__item {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: clamp(26px, 4vw, 56px);
}
.ticker__item::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* standalone big ticker section — huge ghost words */
.ticker--big { padding: clamp(20px, 3vw, 34px) 0; border-block: 1px solid var(--band); }
.ticker--big .ticker__item {
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--muted);
}
.ticker--big .ticker__item::after { background: var(--accent); opacity: 0.6; }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: var(--sect) 0; }
.section__head { text-align: center; max-width: var(--textw); margin: 0 auto clamp(40px, 6vw, 66px); display: flex; flex-direction: column; gap: 16px; align-items: center; }
.section__head--split {
  text-align: left; max-width: none; align-items: end;
  flex-direction: row; justify-content: space-between; gap: 40px;
}
.section__intro { color: var(--muted); font-size: clamp(15px, 1.5vw, 17px); line-height: 1.65; max-width: 48ch; }
.section__intro--center { margin: 0 auto; }

/* ---------- Service cards (template Cards: image + title + text) ---------- */
.services {}
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}
.svc-card {
  background: var(--paper-2);
  border: 1px solid var(--band);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 2.8vw, 38px);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.5s var(--spring), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--line); }
.svc-card--dark { background: var(--dark); border-color: var(--dark); }
.svc-card--dark .svc-card__name { color: var(--paper); }
.svc-card--dark .svc-card__desc { color: var(--muted-dark); }
.svc-card--lime { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 48px -12px rgba(198, 242, 78, 0.75); }
.svc-card--lime .svc-card__name, .svc-card--lime .svc-card__link { color: var(--ink); }
.svc-card--lime .svc-card__desc { color: rgba(28, 28, 28, 0.78); }
.svc-card__num { font-weight: 500; font-size: 13px; color: var(--muted-2); }
.svc-card--dark .svc-card__num { color: var(--accent); }
.svc-card--lime .svc-card__num { color: rgba(255, 255, 255, 0.7); }
.svc-card__name { font-weight: 600; font-size: clamp(22px, 2.1vw, 27px); letter-spacing: -0.02em; line-height: 1.15; }
.svc-card__desc { color: var(--muted); font-size: 15px; line-height: 1.6; flex: 1; }
.svc-card__link { font-weight: 600; font-size: 14px; display: inline-flex; gap: 6px; align-items: center; color: var(--ink); }
.svc-card--dark .svc-card__link { color: var(--accent); }

/* ---------- Step cards ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.6vw, 20px); }
.step {
  background: var(--paper-2);
  border: 1px solid var(--band);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 2.8vw, 36px);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--spring), box-shadow 0.4s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.step__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid var(--band);
  display: grid; place-items: center;
  margin-bottom: 22px;
  overflow: hidden;
}
.step__media img { width: 86%; height: auto; transition: transform 0.5s var(--ease); }
.step:hover .step__media img { transform: scale(1.03); }
.step__title { font-weight: 600; font-size: clamp(20px, 1.9vw, 24px); letter-spacing: -0.02em; margin-bottom: 10px; }
.step__text { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- Portfolio slot: coming-soon (dark band) ---------- */
.stories { background: var(--dark); border-radius: var(--radius-xl); margin-inline: clamp(10px, 1.5vw, 20px); }
.stories--soon .soon { max-width: var(--textw); margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.soon__text { color: var(--muted-dark); font-size: clamp(15px, 1.5vw, 17.5px); line-height: 1.65; max-width: 46ch; }

/* Google reviews card (INACTIVE — markup commented out in index.html) */
.greviews__card {
  max-width: 520px; margin: 0 auto; text-align: center;
  background: var(--paper-2); border: 1px solid var(--band); border-radius: var(--radius-xl);
  padding: clamp(30px, 4vw, 48px);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.greviews__stars { color: var(--accent); font-size: 30px; letter-spacing: 6px; line-height: 1; }
.greviews__score { color: var(--muted); font-size: 16px; }
.greviews__score strong { color: var(--ink); }

/* =========================================================
   CTA / CONTACT — big email display (template Contact)
   ========================================================= */
.cta { background: var(--paper-2); border: 1px solid var(--band); border-radius: var(--radius-xl); margin-inline: clamp(10px, 1.5vw, 20px); text-align: center; }
.cta .label { justify-content: center; margin-bottom: 18px; }
.cta__inner { max-width: 860px; margin: 0 auto; padding-inline: var(--pad); }
.cta__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 20px;
}
.cta__title .hl { font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: 1.06em; letter-spacing: -0.01em; color: inherit; }
.cta__text { color: var(--muted); font-size: clamp(15.5px, 1.5vw, 18px); max-width: 52ch; margin: 0 auto; }
.cta__actions { margin-top: 34px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta__email {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  transition: color 0.3s var(--ease);
}
.cta__email:hover { color: var(--accent-deep); }
.cta .label--onDark { color: var(--muted); }
.cta .section__title--onDark { color: var(--ink); }

/* =========================================================
   FAQ accordion (template FAQ: bordered rows, plus icon)
   ========================================================= */
.faq {}
.accordion { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; }
.acc { border-bottom: 1px solid var(--band); }
.acc:first-child { border-top: 1px solid var(--band); }
.acc__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 6px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--f-body);
  color: var(--ink);
}
.acc__qh { font-weight: 600; font-size: clamp(17px, 1.8vw, 21px); letter-spacing: -0.015em; line-height: 1.3; }
.acc__icon {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--band); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform 0.45s var(--spring), background 0.3s var(--ease), color 0.3s var(--ease);
}
.acc.is-open .acc__icon { transform: rotate(45deg); background: var(--accent); color: var(--ink); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.acc__a p { padding: 0 6px 22px; color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 66ch; }

/* =========================================================
   FOOTER — minimal (template footer)
   ========================================================= */
.footer { background: var(--paper); border-top: 1px solid var(--band); margin-top: var(--sect); color: var(--ink); }
.footer .container { padding-top: clamp(48px, 6vw, 76px); }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: clamp(28px, 4vw, 44px); border-bottom: 1px solid var(--band); }
.footer__tag { color: var(--muted); font-size: 14.5px; line-height: 1.65; text-align: right; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: clamp(40px, 5vw, 60px) 0; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__heading { font-weight: 600; font-size: 13px; letter-spacing: 0.02em; color: var(--ink); margin-bottom: 6px; }
.footer__col a { color: var(--muted); font-size: 14.5px; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--ink); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 22px 0 28px;
  border-top: 1px solid var(--band);
  color: var(--muted-2); font-size: 13px;
}
/* footer logo: dark artwork variant sits on white here */
.brand--footer { filter: none; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.85s var(--spring); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================
   INNER PAGES
   ========================================================= */

/* ----- services.html rows ----- */
.svc-rows { display: flex; flex-direction: column; gap: clamp(12px, 1.6vw, 20px); max-width: 1000px; margin: 0 auto; }
.svc-row {
  background: var(--paper-2); border: 1px solid var(--band); border-radius: var(--radius-xl);
  padding: clamp(26px, 3vw, 40px);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(18px, 2.4vw, 34px);
}
.svc-row__panel--dark { background: var(--dark); border-color: var(--dark); }
.svc-row__panel--dark .svc-row__name { color: var(--paper); }
.svc-row__panel--dark .svc-row__desc, .svc-row__panel--dark .svc-row__for { color: var(--muted-dark); }
.svc-row__panel--lime { background: var(--accent); border-color: var(--accent); }
.svc-row__panel--lime .svc-row__name, .svc-row__panel--lime .svc-row__link { color: #fff; }
.svc-row__panel--lime .svc-row__desc, .svc-row__panel--lime .svc-row__for { color: rgba(255, 255, 255, 0.88); }
.svc-row__panel--cream { background: var(--paper); }
.svc-row__panel {
  align-self: start;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  width: clamp(150px, 19vw, 200px);
}
.svc-row__art {
  width: 100%; aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  background: var(--paper);
  border: 1px solid var(--band);
  border-radius: 24px;
  overflow: hidden;
}
.svc-row__art img { width: 88%; height: auto; transition: transform 0.5s var(--ease); }
.svc-row:hover .svc-row__art img { transform: scale(1.03); }
.svc-row__main { display: flex; flex-direction: column; gap: 10px; }
.svc-row__name { font-weight: 600; font-size: clamp(24px, 2.8vw, 36px); letter-spacing: -0.025em; line-height: 1.1; }
.svc-row__desc { color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 62ch; }
.svc-row__for { color: var(--muted); font-size: 14px; line-height: 1.6; }
.svc-row__for strong { color: var(--ink); font-weight: 600; }
.svc-row__panel--dark .svc-row__for strong { color: var(--paper); }
.svc-row__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.svc-row__chip {
  font-weight: 500; font-size: 12.5px;
  background: var(--band); border-radius: 999px; padding: 6px 13px; color: var(--ink);
}
.svc-row__panel--dark .svc-row__chip { background: rgba(255, 255, 255, 0.12); color: var(--paper); }
.svc-row__panel--lime .svc-row__chip { background: rgba(255, 255, 255, 0.22); color: #fff; }
.svc-row__link { font-weight: 600; font-size: 14px; color: var(--ink); margin-top: 8px; display: inline-flex; gap: 6px; }
.svc-row__panel--dark .svc-row__link { color: var(--accent); }
.svc-detail { color: var(--muted); font-size: 14.5px; }

/* ----- process.html ----- */
.proc {}
.proc-steps { display: flex; flex-direction: column; gap: clamp(12px, 1.6vw, 20px); max-width: 900px; margin: 0 auto; }
.proc-step {
  background: var(--paper-2); border: 1px solid var(--band); border-radius: var(--radius-xl);
  padding: clamp(26px, 3vw, 38px);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(18px, 2.6vw, 34px); align-items: start;
}
.proc-step__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: var(--ink);
  box-shadow: 0 0 18px rgba(198, 242, 78, 0.5);
  font-weight: 600; font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}
.proc-step__title { font-weight: 600; font-size: clamp(23px, 2.6vw, 32px); letter-spacing: -0.025em; line-height: 1.12; margin-bottom: 10px; }
.proc-step__body p { color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 64ch; }

.cost { background: var(--paper-2); border-radius: var(--radius-xl); margin-inline: clamp(10px, 1.5vw, 20px); }
.cost-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(12px, 1.6vw, 20px); max-width: 900px; margin: 0 auto; }
.cost-item { background: var(--paper); border: 1px solid var(--band); border-radius: var(--radius-xl); padding: clamp(24px, 2.6vw, 34px); display: flex; flex-direction: column; gap: 8px; }
.cost-item__name { font-weight: 600; font-size: clamp(19px, 1.9vw, 24px); letter-spacing: -0.02em; line-height: 1.2; }
.cost-item__tag {
  align-self: flex-start;
  font-weight: 600; font-size: 12px;
  background: var(--accent); color: var(--ink); border-radius: 999px; padding: 6px 13px;
}
.cost-item__time { color: var(--muted); font-size: 13.5px; }
.cost-item p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.cost-note { text-align: center; color: var(--muted); font-size: 14.5px; margin-top: 26px; }
.cost-note em { color: var(--ink); }

/* ----- about.html ----- */
.about-intro {}
.about-block {}
.about-block--band { background: var(--paper-2); border-radius: var(--radius-xl); margin-inline: clamp(10px, 1.5vw, 20px); }
.about-intro__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 70px); align-items: start; max-width: 1060px; margin: 0 auto; }
.about-intro__statement { font-weight: 600; font-size: clamp(28px, 3.2vw, 42px); letter-spacing: -0.03em; line-height: 1.08; }
.about-intro__body { display: flex; flex-direction: column; gap: 18px; }
.about-intro__body p { font-size: clamp(15px, 1.5vw, 17px); color: var(--muted); line-height: 1.7; }

.values { background: var(--paper-2); border-radius: var(--radius-xl); margin-inline: clamp(10px, 1.5vw, 20px); }
.values__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(12px, 1.6vw, 20px); }
.value { background: var(--paper); border: 1px solid var(--band); border-radius: var(--radius-xl); padding: clamp(26px, 3vw, 38px); }
.value__k { font-weight: 600; font-size: 14px; color: var(--accent-deep); display: inline-flex; align-items: center; margin-bottom: 14px; }
.value h3 { font-weight: 600; font-size: clamp(19px, 1.9vw, 23px); letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 10px; }
.value p { color: var(--muted); font-size: 14.5px; line-height: 1.62; }

.stats {}
.stats--dark { background: var(--dark); border-radius: var(--radius-xl); margin-inline: clamp(10px, 1.5vw, 20px); }
.stats--dark .section__title, .stats--dark .stat__num { color: var(--paper); }
.stats--dark .stat__label { color: var(--muted-dark); }
.stats--dark .label { color: var(--accent); }
.stats__head { text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; margin-bottom: clamp(36px, 5vw, 56px); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.stat { border-top: 2px solid var(--accent); padding-top: 18px; }
.stat__num { display: block; font-weight: 600; font-size: clamp(40px, 5vw, 68px); letter-spacing: -0.03em; line-height: 1; margin-bottom: 10px; }
.stat__label { color: var(--muted); font-size: 14px; max-width: 22ch; display: block; }

.team {}
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); }
.member { text-align: center; background: var(--paper-2); border: 1px solid var(--band); border-radius: var(--radius-xl); padding: clamp(26px, 3vw, 38px); }
.member__avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(84px, 8.6vw, 112px); height: clamp(84px, 8.6vw, 112px);
  border-radius: 50%; background: var(--band);
  font-size: clamp(38px, 4.2vw, 52px);
  margin-bottom: 16px;
}
.member figcaption strong { display: block; font-weight: 600; font-size: 20px; letter-spacing: -0.02em; line-height: 1.25; }
.member figcaption span { color: var(--muted); font-size: 13.5px; }

/* ----- contact.html ----- */
.contact {}
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
.contact-info__title { font-weight: 600; font-size: clamp(26px, 2.8vw, 36px); letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 24px; }
.contact-detail { list-style: none; display: flex; flex-direction: column; gap: 17px; }
.contact-detail__k { display: block; font-weight: 600; font-size: 12px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 3px; }
.contact-detail__v { font-size: 15.5px; color: var(--ink); line-height: 1.55; }
a.contact-detail__v:hover, .contact-detail__v a:hover { color: var(--accent-deep); }
.contact-next { margin-top: 30px; background: var(--paper-2); border: 1px solid var(--band); border-radius: var(--radius-xl); padding: clamp(22px, 2.4vw, 30px); }
.contact-next__h { display: block; font-weight: 600; font-size: 18px; letter-spacing: -0.015em; margin-bottom: 12px; }
.contact-next ol { padding-left: 20px; color: var(--muted); font-size: 14.5px; line-height: 1.7; display: flex; flex-direction: column; gap: 6px; }

.form { background: var(--paper-2); border: 1px solid var(--band); border-radius: var(--radius-xl); padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; gap: 17px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 600; font-size: 12px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--muted-2); }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 16px;
  transition: border-color 0.3s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.form__note { color: var(--muted-2); font-size: 12.5px; text-align: center; }
.form__status { display: none; border-radius: var(--radius); padding: 13px 16px; font-size: 14.5px; font-weight: 500; }
.form__status.is-ok { display: block; background: var(--accent); color: var(--ink); }
.form__status.is-err { display: block; background: #c0392b; color: #fff; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ----- work.html cards ----- */
.work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(14px, 1.8vw, 24px); }
.work-card {
  background: var(--paper-2); border: 1px solid var(--band); border-radius: var(--radius-xl); overflow: hidden;
  transition: transform 0.5s var(--spring), box-shadow 0.4s var(--ease);
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.work-card__link { display: flex; flex-direction: column; height: 100%; }
.work-card__media { aspect-ratio: 4 / 3; background: var(--band); display: flex; align-items: center; justify-content: center; }
.work-card__todo {
  font-weight: 600; font-size: 12.5px; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--muted); border: 1.5px dashed var(--muted-dark); border-radius: 999px; padding: 10px 18px;
}
.work-card__body { padding: clamp(20px, 2.2vw, 28px); display: flex; flex-direction: column; gap: 9px; flex: 1; }
.work-card__client { font-weight: 600; font-size: clamp(19px, 1.9vw, 23px); letter-spacing: -0.02em; line-height: 1.2; }
.work-card__result { color: var(--muted); font-size: 14.5px; line-height: 1.6; flex: 1; }
.work-card__more { font-weight: 600; font-size: 14px; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; transition: color 0.3s var(--ease); }
.work-card:hover .work-card__more { color: var(--accent-deep); }

/* ----- legal pages ----- */
.legal { max-width: 760px; margin: 0 auto; }
.legal__updated { font-weight: 600; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 34px; }
.legal h2 { font-weight: 600; font-size: clamp(21px, 2.1vw, 27px); letter-spacing: -0.02em; line-height: 1.2; color: var(--ink); margin: 42px 0 14px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--muted); font-size: 15.5px; line-height: 1.75; }
.legal p { margin-bottom: 14px; }
.legal ul, .legal ol { margin: 0 0 16px; padding-left: 24px; display: flex; flex-direction: column; gap: 8px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--ink); border-bottom: 1.5px solid var(--accent); transition: color 0.3s var(--ease); }
.legal a:hover { color: var(--accent-deep); }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie {
  position: fixed; left: 50%; bottom: 18px; z-index: 200;
  transform: translateX(-50%) translateY(140%);
  width: min(660px, calc(100% - 32px));
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--ink); color: var(--paper);
  border-radius: 22px;
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.55s var(--spring);
}
.cookie.is-in { transform: translateX(-50%) translateY(0); }
.cookie__text { flex: 1 1 320px; font-size: 13.5px; line-height: 1.5; color: var(--muted-dark); }
.cookie__text strong { color: var(--paper); }
.cookie__actions { display: flex; gap: 10px; }
.cookie__btn {
  font-family: var(--f-body); font-weight: 600; font-size: 13.5px;
  border-radius: 999px; padding: 10px 18px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.35s var(--spring), background 0.3s var(--ease);
}
.cookie__btn--decline { background: transparent; color: var(--muted-dark); border-color: var(--line-dark); }
.cookie__btn--decline:hover { color: var(--paper); border-color: var(--paper); }
.cookie__btn--accept { background: var(--accent); color: var(--ink); }
.cookie__btn--accept:hover { background: var(--accent-deep); transform: translateY(-2px); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
  .hero__collage { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__actions .btn { display: none; }
  .nav.is-open .nav__mobile { display: flex; }
  .section__head--split { flex-direction: column; align-items: flex-start; }
  .about-intro__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cost-list { grid-template-columns: 1fr; }
  .proc-step { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__tag { text-align: left; }
  .footer__top { align-items: flex-start; }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .svc-cards { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__collage { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================
   PREMIUM HERO (homepage only) — "built to spec"
   Editorial italic-serif accent, a single precise green stroke,
   set on a faint architect's blueprint grid. Everything else quiet.
   Scoped to .hero--home so inner-page heroes are untouched.
   ========================================================= */
:root {
  --f-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --f-spec: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;
}
.hero--home, .hero--page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(100% 72% at 50% -8%, rgba(198, 242, 78, 0.09), transparent 62%),
    var(--paper);
}
.hero--home { padding: clamp(150px, 20vh, 208px) 0 clamp(56px, 8vw, 104px); }
/* inner-page heroes: same treatment, a touch shorter */
.hero--page { padding: clamp(126px, 15vh, 170px) 0 clamp(34px, 5vw, 58px); }
.hero--page .hero__inner { position: relative; z-index: 1; }
.hero--page .hero__title { color: #111; }
/* faint architect's grid, fading out as it rises */
.hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(17, 17, 17, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17, 17, 17, 0.05) 1px, transparent 1px);
  background-size: clamp(46px, 5vw, 72px) clamp(46px, 5vw, 72px);
  -webkit-mask-image: radial-gradient(112% 82% at 50% 6%, #000 36%, transparent 76%);
          mask-image: radial-gradient(112% 82% at 50% 6%, #000 36%, transparent 76%);
}
.hero--home .hero__inner { position: relative; z-index: 1; max-width: 960px; }

/* availability pill — reads like a spec label */
.hero--home .tag, .hero--page .tag {
  margin-bottom: 0;
  font-family: var(--f-spec);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 8px 20px -14px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 9px 16px;
}

/* headline — confident Inter with one editorial serif accent */
.hero--home .hero__big {
  margin-top: 28px;
  font-size: clamp(34px, 5.6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: #111;
}
.hero__accent {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.03em;
  letter-spacing: -0.008em;
  color: #111;
  position: relative;
  padding: 0 0.03em;
  white-space: nowrap;
}
.hero__accent::after {
  content: "";
  position: absolute; left: 0.03em; right: 0.03em; bottom: 0.05em;
  height: 0.075em; border-radius: 3px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(198, 242, 78, 0.85);
}

.hero--home .hero__lede {
  margin-top: 24px;
  max-width: 50ch;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.66;
  color: var(--muted);
}
.hero--home .hero__actions { margin-top: 34px; }

/* credentials — set like a drawing's spec strip */
.hero__meta {
  list-style: none;
  margin: 32px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 22px;
  font-family: var(--f-spec);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-2, #989898);
}
.hero__meta li { position: relative; }
.hero__meta li + li::before {
  content: "";
  position: absolute; left: -12px; top: 50%;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}
@media (prefers-reduced-motion: reduce) {
  .hero--home .tag::before, .hero--page .tag::before { animation: none; }
}
@media (max-width: 600px) {
  .hero--home .hero__big { line-height: 1.05; }
  .hero__accent { white-space: normal; }
}

/* =========================================================
   Animated "learn more" arrow — the arrow flies out top-right
   and a fresh one arrives from bottom-left on hover.
   Uses the existing single glyph (opacity hides the jump), so it
   respects each card's own link colour. No markup change needed.
   ========================================================= */
.svc-card__link span[aria-hidden="true"],
.work-card__more span[aria-hidden="true"] {
  display: inline-block;
  transition: transform 0.4s var(--spring);
  will-change: transform;
}
.svc-card:hover .svc-card__link span[aria-hidden="true"],
.svc-card__link:focus-visible span[aria-hidden="true"],
.work-card:hover .work-card__more span[aria-hidden="true"],
.work-card__link:focus-visible .work-card__more span[aria-hidden="true"] {
  animation: arrowSend 0.55s var(--ease);
}
@keyframes arrowSend {
  0%   { transform: translate(0, 0); opacity: 1; }
  40%  { transform: translate(8px, -8px); opacity: 0; }
  41%  { transform: translate(-8px, 8px); opacity: 0; }
  100% { transform: translate(0, 0); opacity: 1; }
}
/* the link text nudges a touch, so the whole control feels alive */
.svc-card__link, .work-card__more { transition: gap 0.35s var(--spring), color 0.3s var(--ease); }
.svc-card:hover .svc-card__link, .work-card:hover .work-card__more { gap: 9px; }
@media (prefers-reduced-motion: reduce) {
  .svc-card:hover .svc-card__link span[aria-hidden="true"],
  .work-card:hover .work-card__more span[aria-hidden="true"] { animation: none; }
}

/* =========================================================
   Cursor-origin radial fill on primary CTAs (native build of the
   "origin button" effect). The green accent blooms from the exact
   point the pointer enters; JS sets --mx / --my to that point.
   z-index:-1 + isolation keeps the fill above the black bg but
   below the label; text flips to ink so it stays legible on green.
   ========================================================= */
.btn--solid {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s var(--spring), color 0.25s var(--ease),
    background 0.3s var(--ease), box-shadow 0.45s var(--ease);
}
.btn--solid::before {
  content: "";
  position: absolute;
  left: var(--mx, 50%);
  top: var(--my, 50%);
  width: 230%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.55s var(--ease);
  z-index: -1;
  pointer-events: none;
}
.btn--solid:hover::before,
.btn--solid:focus-visible::before { transform: translate(-50%, -50%) scale(1); }
.btn--solid:hover,
.btn--solid:focus-visible { color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .btn--solid::before { transition: opacity 0.2s var(--ease); }
}

/* =========================================================
   Rotating hero phrase — different trade phrases slide through
   the "win work" accent slot. Keeps the italic-serif + green
   underline; the slot width glides so the sentence tail follows.
   A hidden sizer holds the baseline/height; a visually-hidden
   span keeps the accessible headline clean for SEO/screen-readers.
   ========================================================= */
.hero__rotate {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 0;
  vertical-align: baseline;
  line-height: 1;
}
.hero__rotate::after { display: none; }
.hero__rotate__item::after {
  content: "";
  position: absolute; left: 0.03em; right: 0.03em; bottom: 0.05em;
  height: 0.075em; border-radius: 3px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(198, 242, 78, 0.85);
}
.hero__rotate__sizer { visibility: hidden; white-space: nowrap; }
.hero__rotate__item {
  position: absolute; left: 0; bottom: 0;
  white-space: nowrap; line-height: 1;
  opacity: 0;
  transform: translateY(0.64em);
  transition: transform 0.6s var(--spring), opacity 0.4s var(--ease);
}
.hero__rotate__item.is-active { opacity: 1; transform: translateY(0); }
.hero__rotate__item.is-out { opacity: 0; transform: translateY(-0.64em); }

/* visually hidden (accessible text only) */
.vh {
  position: absolute !important;
  width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero__rotate__item { transition: opacity 0.25s var(--ease); }
}

/* About page — "Why Built by Boot": content + illustration, two columns,
   no dead space. Typography lifted to match the premium direction. */
.about-why {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.about-why__content .about-intro__statement { margin-bottom: clamp(16px, 2vw, 24px); }
.about-why__media {
  background: var(--paper-2);
  border: 1px solid var(--band);
  border-radius: var(--radius-xl);
  padding: clamp(18px, 3vw, 42px);
  display: flex; align-items: center; justify-content: center;
}
.about-why__media img { width: 100%; max-width: 360px; height: auto; }

/* elevated about-section typography (also lifts "Who we work with" etc.) */
.about-intro__statement {
  font-size: clamp(30px, 3.7vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.about-intro__statement em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  letter-spacing: -0.01em;
  color: inherit;
}
.about-intro__body p { font-size: clamp(16px, 1.55vw, 18px); line-height: 1.72; }

@media (max-width: 860px) {
  .about-why { grid-template-columns: 1fr; gap: clamp(24px, 5vw, 40px); }
  .about-why__media { order: -1; }
  .about-why__media img { max-width: 300px; }
}

/* alternating illustration side + panel contrast on the grey band */
.about-why--reverse .about-why__media { order: -1; }
.about-block--band .about-why__media { background: var(--paper); }

/* Service-card icons (replace the 01–06 numbers) — CSS mask lets each
   monochrome SVG take the brand colour and adapt per card. */
.svc-card__icon {
  width: 30px; height: 30px;
  display: block;
  background-color: var(--ink);
  -webkit-mask: var(--i) center / contain no-repeat;
          mask: var(--i) center / contain no-repeat;
}
.svc-card--dark .svc-card__icon { background-color: var(--accent); }
.svc-card--lime .svc-card__icon { background-color: var(--ink); }

/* Lime illumination on brand illustrations */
.svc-row__art img, .step__media img, .about-why__media img { filter: drop-shadow(0 0 4px rgba(198, 242, 78, 0.45)); }

/* Eye-follow on primary CTAs — a googly pair whose pupils track the cursor */
.btn-eyes { display: inline-flex; flex: none; gap: 0.16em; }
.btn-eye {
  position: relative; flex: none;
  width: 0.95em; height: 0.95em;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform 0.19s var(--ease);
}
.btn-eye.is-blink { transform: scaleY(0.12); }
.btn-eye__pupil {
  position: absolute; top: 50%; left: 50%;
  width: 0.44em; height: 0.44em; margin: -0.22em 0 0 -0.22em;
  border-radius: 50%;
  background: var(--ink);
  transition: transform 0.1s linear;
}

/* =========================================================
   RESOURCES DROPDOWN (nav)
   ========================================================= */
.nav__has-drop { position: relative; display: flex; align-items: center; }
.nav__drop-toggle {
  font-family: var(--f-body); font-weight: 500; font-size: 14.5px;
  color: var(--muted); background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px; padding: 0; line-height: inherit;
  transition: color 0.3s var(--ease);
}
.nav__has-drop:hover .nav__drop-toggle,
.nav__has-drop:focus-within .nav__drop-toggle,
.nav__drop-toggle.is-active { color: var(--ink); }
.nav__caret { font-size: 9px; transition: transform 0.3s var(--ease); }
.nav__has-drop:hover .nav__caret,
.nav__has-drop:focus-within .nav__caret,
.nav__drop-toggle[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }
.nav__drop {
  position: absolute; top: 100%; left: 50%;
  transform: translate(-50%, 6px);
  min-width: 190px; padding: 8px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease);
  z-index: 120;
}
.nav__drop::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav__has-drop:hover .nav__drop,
.nav__has-drop:focus-within .nav__drop,
.nav__drop.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 11px);
}
.nav__drop a {
  font-size: 14.5px; font-weight: 500; color: var(--muted);
  padding: 9px 13px; border-radius: 10px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__drop a:hover, .nav__drop a[aria-current] { background: var(--paper-2); color: var(--ink); }

/* =========================================================
   BLOG — listing cards
   ========================================================= */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.post-card {
  background: var(--paper-2); border: 1px solid var(--band); border-radius: var(--radius-xl);
  overflow: hidden; transition: transform 0.5s var(--spring), box-shadow 0.4s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.post-card__link { display: flex; flex-direction: column; height: 100%; }
.post-card__media { aspect-ratio: 16 / 10; display: grid; place-items: center; padding: 22px; background: var(--band); }
.post-card__coverword {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: clamp(24px, 3.2vw, 34px); letter-spacing: -0.01em; line-height: 1.04;
  color: var(--ink); text-align: center;
}
.post-card:nth-child(3n+1) .post-card__media { background: var(--dark); }
.post-card:nth-child(3n+1) .post-card__coverword { color: var(--paper); }
.post-card:nth-child(3n+2) .post-card__media { background: var(--accent); }
.post-card__body { padding: clamp(20px, 2.2vw, 26px); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__meta { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-2); }
.post-card__title { font-weight: 600; font-size: clamp(19px, 1.9vw, 22px); letter-spacing: -0.02em; line-height: 1.25; }
.post-card__excerpt { color: var(--muted); font-size: 14.5px; line-height: 1.6; flex: 1; }
.post-card__more { font-weight: 600; font-size: 14px; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.post-card:hover .post-card__more { color: var(--accent-deep); }
.post-card:hover .post-card__more span[aria-hidden="true"] { animation: arrowSend 0.6s var(--ease); }

/* =========================================================
   GUIDES — library cards
   ========================================================= */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.guide-card {
  background: var(--paper-2); border: 1px solid var(--band); border-radius: var(--radius-xl);
  padding: clamp(24px, 2.6vw, 32px); display: flex; flex-direction: column; gap: 15px;
  transition: transform 0.5s var(--spring), box-shadow 0.4s var(--ease);
}
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.guide-card__cover {
  width: 86px; height: 110px; flex: none; border-radius: 10px; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.guide-card__band { height: 38px; background: var(--accent); flex: none; }
.guide-card__cover-body { flex: 1; padding: 9px 10px; display: flex; flex-direction: column; gap: 5px; }
.guide-card__cover-line { height: 4px; border-radius: 2px; background: var(--band); }
.guide-card__cover-line--short { width: 62%; }
.guide-card__kind { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-2); }
.guide-card__title { font-weight: 600; font-size: clamp(19px, 1.9vw, 22px); letter-spacing: -0.02em; line-height: 1.2; }
.guide-card__desc { color: var(--muted); font-size: 14.5px; line-height: 1.6; flex: 1; }
.guide-card__btn { align-self: flex-start; margin-top: 4px; }

/* =========================================================
   ARTICLE — single post prose
   ========================================================= */
.article { padding-top: clamp(18px, 4vw, 36px); }
.article__head { max-width: 760px; margin: 0 auto clamp(26px, 4vw, 42px); text-align: center; }
.article__cat { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-deep); }
.article__title { font-weight: 600; font-size: clamp(30px, 4.8vw, 54px); letter-spacing: -0.03em; line-height: 1.06; color: #111; margin: 14px 0 18px; }
.article__title em { font-family: var(--f-serif); font-style: italic; font-weight: 400; }
.article__meta { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; color: var(--muted); font-size: 14px; }
.article__meta span { position: relative; }
.article__meta span + span::before { content: "·"; position: absolute; left: -13px; }
.article__figure { max-width: 720px; margin: 0 auto clamp(24px, 3.5vw, 38px); }
.article__cover {
  aspect-ratio: 16 / 8; border-radius: var(--radius-xl); display: grid; place-items: center;
  background: var(--dark); padding: 30px;
}
.article__cover .post-card__coverword { color: var(--paper); font-size: clamp(30px, 5vw, 52px); }
.prose { max-width: 720px; margin: 0 auto; }
.prose__lede { font-size: clamp(18px, 1.9vw, 21px); line-height: 1.6; color: var(--ink); margin-bottom: 1.4em; }
.prose p { font-size: 17px; line-height: 1.78; color: #2c2c2c; margin-bottom: 1.35em; }
.prose h2 { font-weight: 600; font-size: clamp(24px, 2.7vw, 32px); letter-spacing: -0.02em; line-height: 1.15; color: #111; margin: 1.7em 0 0.5em; }
.prose h3 { font-weight: 600; font-size: clamp(19px, 2vw, 23px); letter-spacing: -0.015em; color: #111; margin: 1.5em 0 0.4em; }
.prose ul, .prose ol { margin: 0 0 1.35em 1.15em; }
.prose li { font-size: 17px; line-height: 1.7; color: #2c2c2c; margin-bottom: 0.5em; padding-left: 0.3em; }
.prose li::marker { color: var(--accent-deep); }
.prose blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--accent);
  font-family: var(--f-serif); font-style: italic; font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1.35; color: #111;
}
.prose a { color: #111; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 2px; }
.prose strong { color: #111; font-weight: 600; }
.article__foot { max-width: 720px; margin: clamp(34px, 5vw, 52px) auto 0; padding-top: 26px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.article__back { font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 7px; }
.article__back:hover { color: var(--accent-deep); }
.article__byline { color: var(--muted); font-size: 14px; }

@media (max-width: 640px) {
  .article__meta span + span::before { content: ""; }
}

/* =========================================================
   GUIDE DOWNLOAD MODAL (email capture)
   ========================================================= */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(18, 18, 18, 0.55);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.25s var(--ease);
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: relative; z-index: 1; width: 100%; max-width: 440px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 40px 90px -34px rgba(0, 0, 0, 0.55);
  transform: translateY(14px) scale(0.98); opacity: 0;
  transition: transform 0.35s var(--spring), opacity 0.25s var(--ease);
}
.modal.is-open .modal__panel { transform: translateY(0) scale(1); opacity: 1; }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: var(--band); color: var(--muted); cursor: pointer; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.modal__close:hover { background: var(--sand); color: var(--ink); }
.modal .label { margin-bottom: 12px; }
.modal__title { font-weight: 600; font-size: clamp(22px, 2.6vw, 28px); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 8px; color: var(--ink); }
.modal__text { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-bottom: 18px; }
.modal__form { display: flex; flex-direction: column; gap: 12px; }
.modal__form input[type="email"] {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--f-body); font-size: 15px; color: var(--ink); background: var(--paper);
}
.modal__form input[type="email"]:focus { outline: none; border-color: var(--ink); }
.modal__status { font-size: 13.5px; color: var(--accent-deep); font-weight: 500; min-height: 1.1em; margin: 2px 0 0; }
@media (prefers-reduced-motion: reduce) {
  .modal__backdrop, .modal__panel { transition: none; }
}

/* Article cover image + image-based post cards */
.article__img { display:block; width:100%; height:auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: center 45%; border-radius:var(--radius-xl); border:1px solid var(--line); }
.post-card__media:has(img){ padding:0; }
.post-card__media img{ width:100%; height:100%; object-fit:cover; }

/* Featured (latest) blog post — full-width row card */
.post-card--featured { grid-column: 1 / -1; }
.post-card--featured .post-card__link { flex-direction: row; align-items: stretch; }
.post-card--featured .post-card__media { flex: 1 1 54%; aspect-ratio: auto; min-height: 320px; }
.post-card--featured .post-card__body { flex: 1 1 46%; justify-content: center; gap: 12px; padding: clamp(26px, 4vw, 46px); }
.post-card--featured .post-card__title { font-size: clamp(24px, 3vw, 34px); }
@media (max-width: 720px){
  .post-card--featured .post-card__link { flex-direction: column; }
  .post-card--featured .post-card__media { aspect-ratio: 16 / 10; min-height: 0; }
}
