/* ============================================================
   InveraWebDesigns V3 — shared stylesheet
   Light-first · warm editorial · amber/gold brand
   ============================================================ */

:root {
  /* Brand — amber/gold kept from V2 */
  --amber: #f59e0b;
  --amber-deep: #d97706;
  --amber-dark: #b45309;
  --gold: #fbbf24;

  /* Light-first surfaces */
  --paper: #faf6ec;
  --paper-2: #f3ecdc;
  --card: #fffdf7;
  --ink: #231a0d;
  --ink-soft: rgba(35, 26, 13, 0.68);
  --ink-faint: rgba(35, 26, 13, 0.42);
  --line: rgba(120, 90, 40, 0.16);
  --line-strong: rgba(120, 90, 40, 0.3);

  /* Dark bands (footer, stats) */
  --espresso: #1b1408;
  --espresso-2: #241a0b;
  --cream-on-dark: #f5efe3;
  --cream-dim: rgba(245, 239, 227, 0.55);

  --grad: linear-gradient(135deg, #fbbf24 0%, #f59e0b 55%, #d97706 100%);

  --font-body: "Instrument Sans", "Segoe UI", system-ui, sans-serif;
  --font-display: "Archivo", "Segoe UI", sans-serif;
  --display-weight: 780;
  --display-tracking: -0.035em;
  --display-leading: 0.99;

  --radius: 14px;
  --radius-sm: 9px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shell: min(1160px, calc(100% - 3rem));
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: var(--display-leading);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: rgba(245, 158, 11, 0.28); }

.shell { width: var(--shell); margin: 0 auto; }

/* ---------- type helpers ---------- */

.kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 640;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 1.1rem;
}
.kicker::before {
  content: "";
  width: 2rem;
  height: 1.5px;
  background: var(--amber);
}

.section-head { max-width: 40ch; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
.section-head p { color: var(--ink-soft); margin-top: 0.9rem; max-width: 52ch; }

.accent-i {
  font-style: italic;
  color: var(--amber-deep);
  margin-right: 0.06em;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 2px 0 rgba(35, 26, 13, 0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(35, 26, 13, 0.22); }

.btn-amber {
  background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 55%, #d97706 100%);
  color: #2a1a02;
  border-color: #f59e0b;
}
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(217, 119, 6, 0.35); }

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--card); }

/* ============================================================
   NAV
   ============================================================ */

#site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--nav-h);
  background: rgba(250, 246, 236, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: var(--shell);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 1.14rem;
  letter-spacing: -0.01em;
}
.nav-logo svg { width: 30px; height: 30px; }

/* brand lockup: INVERA over WEB DESIGNS, matching the logo */
.logo-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.05em;
}
.logo-word em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.5em;
  font-weight: 640;
  letter-spacing: 0.42em;
  color: var(--amber-deep);
  margin-top: 3px;
}
.footer-brand .logo-word em { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.94rem;
  font-weight: 540;
  color: var(--ink-soft);
}
.nav-links a { position: relative; padding: 0.3rem 0; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 0.9rem; }
.nav-cta { padding: 0.62rem 1.25rem; font-size: 0.9rem; white-space: nowrap; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: calc(var(--nav-h) + 0.6rem);
  left: 0.75rem; right: 0.75rem;
  z-index: 89;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px -24px rgba(60, 40, 10, 0.45), 0 4px 14px -6px rgba(60, 40, 10, 0.15);
  padding: 0.6rem;
  display: none;
  flex-direction: column;
}
.mobile-menu.open { display: flex; animation: menu-in 0.3s var(--ease); }
@keyframes menu-in {
  from { opacity: 0; transform: translateY(-10px) scale(0.98); }
}
.mobile-menu.open > * { animation: menu-item-in 0.35s var(--ease) backwards; }
.mobile-menu.open > *:nth-child(2) { animation-delay: 0.04s; }
.mobile-menu.open > *:nth-child(3) { animation-delay: 0.08s; }
.mobile-menu.open > *:nth-child(4) { animation-delay: 0.12s; }
.mobile-menu.open > *:nth-child(5) { animation-delay: 0.16s; }
.mobile-menu.open > *:nth-child(6) { animation-delay: 0.2s; }
.mobile-menu.open > *:nth-child(7) { animation-delay: 0.24s; }
@keyframes menu-item-in {
  from { opacity: 0; transform: translateY(-6px); }
}

.mob-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.72rem 0.7rem;
  border-radius: var(--radius-sm);
  font-weight: 580;
  font-size: 1rem;
  transition: background 0.15s;
}
.mob-link:hover, .mob-link:active { background: var(--paper-2); }
.mob-link[aria-current="page"] { background: rgba(245, 158, 11, 0.08); }
.mob-link .mi {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.12);
  display: grid;
  place-items: center;
  flex: none;
}
.mob-link .mi svg { width: 17px; height: 17px; stroke: var(--amber-deep); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mob-link .chev {
  margin-left: auto;
  width: 16px; height: 16px;
  stroke: var(--ink-faint);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mob-cta-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.6rem;
  margin-top: 0.5rem;
  padding: 0.75rem 0.25rem 0.25rem;
  border-top: 1px solid var(--line);
}
.mob-cta-row .btn { justify-content: center; padding: 0.78rem 1rem; font-size: 0.93rem; white-space: nowrap; }
.mob-cta-row svg { width: 16px; height: 16px; }

/* ============================================================
   HERO
   ============================================================ */

#hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(3.5rem, 8vw, 6.5rem)) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
/* warm atmospheric glow, faint grid — texture without noise */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52rem 30rem at 82% -8%, rgba(245, 158, 11, 0.16), transparent 62%),
    radial-gradient(38rem 26rem at -6% 100%, rgba(217, 119, 6, 0.08), transparent 60%);
  pointer-events: none;
}
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(120, 90, 40, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(120, 90, 40, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(70rem 40rem at 70% 0%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(70rem 40rem at 70% 0%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--line-strong);
  background: var(--card);
  border-radius: 100px;
  padding: 0.42rem 1rem;
  margin-bottom: 1.6rem;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.22);
}

.hero-title {
  font-size: clamp(2.5rem, 5.4vw, 4.1rem);
  max-width: 15ch;
}

.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; }
.trust-item strong { color: var(--ink); font-weight: 640; }
.stars { color: var(--amber); letter-spacing: 0.1em; font-size: 0.85rem; }

/* hero card */
.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.9rem 1.6rem;
  box-shadow:
    0 1px 2px rgba(35, 26, 13, 0.05),
    0 18px 44px -18px rgba(120, 80, 20, 0.28);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad);
  border-radius: var(--radius) var(--radius) 0 0;
}
.hero-card-label {
  font-size: 0.78rem;
  font-weight: 640;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
}
.hero-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0.55rem 0 1.2rem;
}
.hero-card-price .from { color: var(--ink-faint); font-size: 0.95rem; }
.hero-card-price .amount {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 3rem;
  letter-spacing: var(--display-tracking);
  line-height: 1;
}
.hero-card-price .permo { color: var(--ink-faint); font-size: 0.95rem; }

.hero-card ul { display: grid; gap: 0.7rem; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.hero-card li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.96rem; }
.tick {
  flex: none;
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.14);
  display: grid;
  place-items: center;
}
.tick svg { width: 11px; height: 11px; stroke: var(--amber-deep); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.hero-card-foot {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.hero-card-foot strong { color: var(--ink); }
.speedo {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grad);
  color: #2a1a02;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.72rem;
}

/* ============================================================
   STATS BAND (dark)
   ============================================================ */

#stats {
  background: var(--espresso);
  color: var(--cream-on-dark);
  padding: 2.6rem 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.stat { border-left: 1px solid rgba(245, 158, 11, 0.3); padding-left: 1.25rem; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 2rem;
  letter-spacing: var(--display-tracking);
  line-height: 1.1;
  color: var(--gold);
}
.stat span { font-size: 0.88rem; color: var(--cream-dim); }
/* short labels swap in on mobile only */
.stat .l-short { display: none; }
@media (max-width: 560px) {
  .stat .l-long { display: none; }
  .stat .l-short { display: inline; }
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section.alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.services-grid.two { grid-template-columns: repeat(2, 1fr); }
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: 0 20px 40px -20px rgba(120, 80, 20, 0.35);
}
.service-num {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 0.95rem;
  color: var(--amber-deep);
}
.service-card h3 { font-size: 1.35rem; }
.service-card p { color: var(--ink-soft); font-size: 0.97rem; flex: 1; }
.service-price {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.service-price b { color: var(--ink); font-weight: 660; }
.service-link {
  font-weight: 620;
  font-size: 0.92rem;
  color: var(--amber-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.service-link svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(3px); }

/* ---------- work ---------- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.work-item { display: flex; flex-direction: column; gap: 0.9rem; }

.browser {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 14px 36px -18px rgba(120, 80, 20, 0.3);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.work-item:hover .browser {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px -20px rgba(120, 80, 20, 0.42);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.browser-bar i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line-strong);
}
.browser-bar i:first-child { background: rgba(217, 119, 6, 0.55); }
.browser-url {
  margin-left: 0.5rem;
  font-size: 0.72rem;
  color: var(--ink-faint);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.15rem 0.7rem;
}
.browser img {
  width: 100%;
  aspect-ratio: 1200 / 497;
  object-fit: cover;
  object-position: top;
}
.work-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.work-meta h3 { font-size: 1.12rem; }
.work-meta span { font-size: 0.82rem; color: var(--ink-faint); white-space: nowrap; }

/* ---------- process ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  counter-reset: step;
}
.step { position: relative; padding-top: 1.4rem; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -0.4rem;
  left: 0;
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 3.4rem;
  letter-spacing: var(--display-tracking);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(217, 119, 6, 0.5);
}
.step h3 { font-size: 1.25rem; margin: 1.9rem 0 0.6rem; }
.step p { color: var(--ink-soft); font-size: 0.97rem; }
.step .step-time {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  font-weight: 640;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
}

/* ---------- testimonials ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
/* Google-colours accent strip */
.quote::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #4285F4, #EA4335, #FBBC05, #34A853);
}
.quote .gq-head { margin-bottom: 0; }
.quote .stars { font-size: 0.9rem; }
.quote p {
  font-size: 0.98rem;
  color: var(--ink);
  flex: 1;
}
.quote p::before { content: "\201C"; color: var(--amber); font-family: var(--font-display); font-size: 1.4em; line-height: 0; margin-right: 2px; }
.quote-who { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.quote-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad);
  color: #2a1a02;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex: none;
}
.quote-who b { font-size: 0.93rem; font-weight: 640; display: block; line-height: 1.3; }
.quote-who span { font-size: 0.8rem; color: var(--ink-faint); }

/* ---------- CTA band ---------- */

#cta {
  background: var(--espresso);
  color: var(--cream-on-dark);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(46rem 26rem at 85% 120%, rgba(245, 158, 11, 0.22), transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-inner h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); max-width: 20ch; }
.cta-inner h2 .accent-i { color: var(--gold); }
.cta-inner p { color: var(--cream-dim); margin-top: 0.8rem; max-width: 44ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn-cream {
  border: 1.5px solid rgba(245, 239, 227, 0.35);
  color: var(--cream-on-dark);
}
.btn-cream:hover { border-color: var(--cream-on-dark); background: rgba(245, 239, 227, 0.08); }

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--espresso-2);
  color: var(--cream-dim);
  padding: 3.5rem 0 2rem;
  font-size: 0.92rem;
  border-top: 1px solid rgba(245, 158, 11, 0.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 239, 227, 0.1);
}
.footer-brand .nav-logo { color: var(--cream-on-dark); margin-bottom: 0.9rem; }
.footer-brand p { max-width: 34ch; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 660;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-on-dark);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.82rem;
  color: rgba(245, 239, 227, 0.4);
}

/* ============================================================
   INNER PAGES
   ============================================================ */

/* page hero — compact editorial opener */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem)) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(48rem 26rem at 85% -10%, rgba(245, 158, 11, 0.14), transparent 62%);
  pointer-events: none;
}
.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); max-width: 18ch; }
.page-hero .lede {
  margin-top: 1.3rem;
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 54ch;
}

/* pricing */
.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 1.6rem;
  align-items: start;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 2rem;
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  border-color: rgba(217, 119, 6, 0.5);
  box-shadow: 0 24px 50px -22px rgba(120, 80, 20, 0.35);
}
.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad);
  border-radius: var(--radius) var(--radius) 0 0;
}
.price-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 660;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: rgba(245, 158, 11, 0.12);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.1rem;
}
.price-figure { display: flex; align-items: baseline; gap: 0.55rem; flex-wrap: wrap; }
.price-figure .amount {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 3.2rem;
  line-height: 1;
}
.price-figure .permo { color: var(--ink-soft); font-weight: 600; }
.price-note { font-size: 0.9rem; color: var(--ink-faint); margin-top: 0.5rem; }

.price-features {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.price-features li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.96rem; }

.terms-card {
  margin-top: 1.6rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.8rem;
}
.terms-card h3 { font-size: 1.1rem; margin-bottom: 0.9rem; }
.terms-card ol { padding-left: 1.2rem; display: grid; gap: 0.5rem; color: var(--ink-soft); font-size: 0.93rem; }

.guarantee {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  font-size: 0.92rem;
  font-weight: 620;
  color: var(--amber-dark);
}
.guarantee svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* FAQ */
.faq-list { max-width: 720px; display: grid; gap: 0.8rem; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 1.4rem;
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: rgba(217, 119, 6, 0.45); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  font-weight: 620;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--amber-deep);
  line-height: 1;
  transition: transform 0.25s var(--ease);
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 1.2rem; color: var(--ink-soft); font-size: 0.96rem; max-width: 60ch; }

/* case studies (work page) */
.case {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2.2rem, 4vw, 3.2rem) 0;
  border-top: 1px solid var(--line);
}
.case:first-of-type { border-top: none; padding-top: 0; }
.case:nth-of-type(even) .case-media { order: 2; }
.case-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 660;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 0.7rem;
}
.case-body h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 0.8rem; }
.case-body p { color: var(--ink-soft); font-size: 0.98rem; }
.case-quote {
  margin-top: 1.3rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid transparent;
  border-image: linear-gradient(to bottom, #4285F4, #EA4335, #FBBC05, #34A853) 1;
  background: var(--paper-2);
  font-size: 0.93rem;
  color: var(--ink-soft);
  font-style: italic;
}
.case-quote b { display: block; margin-top: 0.5rem; font-style: normal; color: var(--ink); font-size: 0.85rem; }

.gq-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-style: normal;
}
.gq-head svg { width: 17px; height: 17px; flex: none; }
.gq-head .stars-g { color: #FBBC05; font-size: 0.82rem; letter-spacing: 0.08em; }
.gq-head .gq-label { font-size: 0.76rem; font-weight: 620; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.08em; }

/* Google reviews CTA pill */
.google-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.7rem;
  padding: 0.7rem 1.35rem;
  background: var(--card);
  border: 1.5px solid var(--line-strong);
  border-radius: 100px;
  font-size: 0.93rem;
  font-weight: 600;
  box-shadow: 0 2px 10px -4px rgba(120, 80, 20, 0.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.google-pill:hover {
  transform: translateY(-2px);
  border-color: #4285F4;
  box-shadow: 0 10px 24px -10px rgba(66, 133, 244, 0.35);
}
.google-pill svg { width: 19px; height: 19px; flex: none; }
.google-pill .stars-g { color: #FBBC05; letter-spacing: 0.08em; font-size: 0.88rem; }
.google-pill b { font-weight: 700; }

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: 0 20px 40px -20px rgba(120, 80, 20, 0.35);
}
.contact-card .ci {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.13);
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
}
.contact-card .ci svg { width: 21px; height: 21px; stroke: var(--amber-deep); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-card h3 { font-size: 1.2rem; }
.contact-card p { color: var(--ink-soft); font-size: 0.93rem; flex: 1; }
.contact-card .contact-link { font-weight: 640; color: var(--amber-dark); word-break: break-all; }

.reply-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.reply-note .ping {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

.booking-card {
  background: var(--espresso);
  color: var(--cream-on-dark);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
.booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(30rem 18rem at 90% 130%, rgba(245, 158, 11, 0.25), transparent 65%);
  pointer-events: none;
}
.booking-card > * { position: relative; }
.booking-card h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); max-width: 18ch; }
.booking-card .booking-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: var(--cream-dim);
}

.social-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.8rem;
  background: var(--card);
  border: 1.5px solid var(--line-strong);
  border-radius: 100px;
  font-weight: 640;
  font-size: 1rem;
  box-shadow: 0 2px 10px -4px rgba(120, 80, 20, 0.2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.social-btn:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 12px 26px -12px rgba(60, 40, 10, 0.35);
}
.social-btn svg { width: 22px; height: 22px; flex: none; }

.socials { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--card);
  display: grid;
  place-items: center;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.socials a:hover { transform: translateY(-3px); border-color: var(--amber-deep); }
.socials svg { width: 19px; height: 19px; fill: var(--ink-soft); }

/* about */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.about-body p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.about-body p strong { color: var(--ink); }
.about-aside {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.about-aside .quote-avatar { width: 62px; height: 62px; font-size: 1.35rem; margin-bottom: 1rem; }
.about-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.1rem;
}
.about-aside h3 { font-size: 1.3rem; }
.about-aside .role { color: var(--ink-faint); font-size: 0.88rem; margin-bottom: 1.1rem; }
.about-aside ul { display: grid; gap: 0.65rem; padding-top: 1.1rem; border-top: 1px solid var(--line); font-size: 0.93rem; }
.about-aside li { display: flex; gap: 0.65rem; align-items: flex-start; }

.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.reason {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}
.reason .ci {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.13);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.reason .ci svg { width: 21px; height: 21px; stroke: var(--amber-deep); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.reason h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.reason p { color: var(--ink-soft); font-size: 0.95rem; }

/* breadcrumb-ish current nav state */
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

@media (max-width: 960px) {
  .price-grid, .about-grid, .case { grid-template-columns: 1fr; }
  .case:nth-of-type(even) .case-media { order: 0; }
  .contact-grid, .reasons { grid-template-columns: 1fr; max-width: 560px; }
  .about-aside { position: static; }
}

/* ============================================================
   REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

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

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .services-grid, .services-grid.two, .quotes { grid-template-columns: 1fr; max-width: 560px; }
  .steps { grid-template-columns: 1fr; gap: 2rem; max-width: 560px; }
  .work-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .nav-cta { padding: 0.52rem 0.95rem; font-size: 0.84rem; }
  .nav-logo { font-size: 0.98rem; }
  .nav-logo svg { width: 25px; height: 25px; }

  /* tighter vertical rhythm on small screens */
  .section { padding: 3.2rem 0; }
  .section-head { margin-bottom: 2.2rem; }
  #hero { padding-bottom: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* stats band: slim one-line pill */
  #stats { background: transparent; padding: 1rem 0 2rem; }
  /* homepage: hero already reserves space below it, so pull the pill in closer */
  #hero + #stats { padding-top: 0.7rem; }
  #stats + #services { padding-top: 1.2rem; }
  /* about/work: halve the gap between the case/about content and the pill */
  .section:has(+ #stats) { padding-bottom: 1.6rem; }
  .section + #stats { padding-top: 0.5rem; }
  .stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    background: var(--espresso);
    border-radius: 100px;
    padding: 0.78rem 1.25rem;
  }
  .stat {
    display: flex;
    align-items: baseline;
    gap: 0.42rem;
    border-left: none;
    padding: 0;
    white-space: nowrap;
    flex: none;
  }
  .stat b { font-size: 1rem; }
  .stat span { font-size: 0.77rem; }

  /* trust row: full-width stacked chips */
  .hero-trust { flex-direction: column; gap: 0.5rem; padding-top: 1.3rem; margin-top: 2rem; }
  .trust-item {
    width: 100%;
    justify-content: center;
    border: 1px solid var(--line-strong);
    background: var(--card);
    border-radius: 100px;
    padding: 0.55rem 0.9rem;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  /* full-width stacked buttons — better tap targets */
  .hero-btns, .cta-actions { width: 100%; }
  .hero-btns .btn, .cta-actions .btn { width: 100%; justify-content: center; }
  .booking-card .btn { width: 100%; justify-content: center; }

  /* step ghost numbers scaled for mobile */
  .step::before { font-size: 2.4rem; top: 0; }
  .step { padding-top: 0.6rem; }
  .step h3 { margin-top: 1.6rem; }
  .steps { gap: 1.6rem; }

  /* cards breathe a little less */
  .hero-card { padding: 1.5rem 1.4rem 1.3rem; }
  .service-card, .quote, .contact-card, .reason { padding: 1.5rem 1.3rem; }
  .price-card { padding: 1.7rem 1.4rem; }
}

@media (max-width: 420px) {
  .google-pill { font-size: 0.85rem; padding: 0.6rem 1rem; gap: 0.5rem; }
  .google-pill svg { width: 16px; height: 16px; }
}

@media (max-width: 460px) {
  #site-nav .nav-logo svg { width: 26px; height: 26px; }
  #site-nav .logo-word { font-size: 0.72rem; }
}
