/* ============================================
   TINKER LOOP — Design System v5
   "QUIET STUDIO" — soft greens, lamp-lit warmth
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Base — cool cream with the faintest green */
  --bg: #F2F5EB;
  --bg-soft: #E7ECDA;
  --bg-deep: #D9E0C6;
  --card: #FFFFFF;
  --ink: #181E14;
  --ink-soft: #3D473A;
  --ink-mute: #7C887A;
  --line: #DDE2D0;
  --line-soft: #ECEFE0;

  /* Greens — primary palette (formerly the rose) */
  --moss: #5D7B4D;
  --moss-deep: #3D5230;
  --moss-soft: #B8CFA1;
  --moss-pale: #DCEAC8;
  --sage: #87A270;
  --sage-soft: #D8E2C5;
  --sage-pale: #ECF0DE;

  /* Warm accents — used sparingly for variety + lamp light */
  --honey: #E0B559;
  --honey-light: #F5E2A8;
  --honey-glow: #FFE49B;
  --clay: #C77B5A;
  --clay-light: #F2D9CB;
  --clay-deep: #9C5840;
  --lilac: #A89AC8;
  --lilac-light: #E2D9F1;
  --sky: #8AB4C9;
  --sky-light: #D2E2EC;

  /* Type */
  --display: 'Newsreader', 'Georgia', 'Times New Roman', serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Soft ambient texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.06 0 0 0 0 0.07 0 0 0 0 0.05 0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--moss); color: #fff; }

/* ============================================
   Typography
   ============================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--moss);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  letter-spacing: -0.03em;
  font-weight: 380;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.04;
}
h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-variation-settings: "opsz" 36;
  font-weight: 460;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h4 {
  font-size: 1.15rem;
  font-variation-settings: "opsz" 18;
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

em, .italic {
  font-style: italic;
  font-variation-settings: "opsz" 72;
}
h1 em, h2 em {
  font-style: italic;
  color: var(--moss);
  font-weight: 380;
}
h3 em {
  font-style: italic;
  color: var(--moss);
}

p { margin: 0 0 1em; max-width: 60ch; }
p.lead {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink-soft);
  font-weight: 320;
  font-variation-settings: "opsz" 36;
  letter-spacing: -0.012em;
  max-width: 38ch;
}
p.lead em { color: var(--moss); }

.serif { font-family: var(--display); }
.sans { font-family: var(--sans); }
.italic { font-style: italic; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  font-weight: 500;
  border: 1px solid var(--line);
}
.chip--moss { background: var(--moss-pale); border-color: var(--moss-pale); color: var(--moss-deep); }
.chip--sage { background: var(--sage-soft); border-color: var(--sage-soft); color: #46603A; }
.chip--honey { background: var(--honey-light); border-color: var(--honey-light); color: #806119; }
.chip--clay { background: var(--clay-light); border-color: var(--clay-light); color: var(--clay-deep); }
.chip--lilac { background: var(--lilac-light); border-color: var(--lilac-light); color: #6B5A8A; }

/* ============================================
   Layout
   ============================================ */

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.wrap--narrow {
  max-width: 1080px;
}

.section {
  padding: clamp(60px, 10vh, 130px) 0;
  position: relative;
}
.section--tight { padding: clamp(40px, 7vh, 90px) 0; }

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 245, 235, 0.88);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease-soft);
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0 18px;
}

/* ----- Brand: floor lamp + wordmark ----- */
.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 6px;
  position: relative;
  text-decoration: none;
  padding-top: 6px;
}
.brand__lamp {
  width: 44px;
  height: 50px;
  display: block;
  color: var(--ink);
  flex: none;
  margin-bottom: -4px;
  transition: transform 0.4s var(--ease);
}
.brand:hover .brand__lamp { transform: translateY(-1px) rotate(-2deg); }
.brand__lamp svg { width: 100%; height: 100%; display: block; overflow: visible; }

.brand__name {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 460;
  font-variation-settings: "opsz" 24;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 0.95;
  display: inline-flex;
  align-items: baseline;
  position: relative;
  padding: 0 2px;
}
.brand__name em {
  font-style: italic;
  color: var(--moss);
  font-weight: 420;
  font-variation-settings: "opsz" 24;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
}
.nav__link {
  padding: 8px 16px;
  position: relative;
  color: var(--ink);
  border-radius: 999px;
  transition: color 0.25s var(--ease-soft), background 0.25s var(--ease-soft);
}
.nav__link:hover { color: var(--moss); }
.nav__link.is-active {
  color: var(--moss-deep);
  background: var(--moss-pale);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  transition: background 0.25s var(--ease-soft);
}
.nav__cta:hover { background: var(--moss); }
.nav__cta::after {
  content: '→';
  transition: transform 0.3s var(--ease);
}
.nav__cta:hover::after { transform: translateX(3px); }

.nav__toggle { display: none; }

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: background 0.25s var(--ease-soft), color 0.25s var(--ease-soft), border-color 0.25s var(--ease-soft), transform 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn .arrow { transition: transform 0.3s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

.btn--ink { background: var(--ink); color: var(--bg); }
.btn--ink:hover { background: var(--moss); }
.btn--moss { background: var(--moss); color: #fff; }
.btn--moss:hover { background: var(--ink); }
.btn--ghost { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--soft { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--soft:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--on-dark { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn--on-dark:hover { background: #fff; color: var(--ink); }

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

.hero {
  padding: clamp(40px, 6vh, 80px) 0 clamp(60px, 10vh, 110px);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

.hero__copy { position: relative; z-index: 2; }
.hero__copy .eyebrow { margin-bottom: 28px; }

.hero__title {
  font-family: var(--display);
  font-size: clamp(3rem, 7.5vw, 7rem);
  line-height: 1.0;
  font-weight: 380;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.032em;
  margin: 0;
}
.hero__title em {
  font-style: italic;
  color: var(--moss);
  font-weight: 380;
}

.hero__lede {
  margin-top: 30px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 320;
  font-variation-settings: "opsz" 24;
  letter-spacing: -0.005em;
  max-width: 36ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
  align-items: center;
}
.hero__actions .phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.25s var(--ease-soft);
}
.hero__actions .phone-pill:hover { background: var(--bg-soft); }
.hero__actions .phone-pill .live {
  width: 8px; height: 8px; border-radius: 50%; background: var(--moss);
  box-shadow: 0 0 0 0 rgba(93,123,77,0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(93,123,77,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(93,123,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(93,123,77,0); }
}

/* Hero visual — rotating stamp + soft blob */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__blob {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--honey-light) 0%, var(--sage-soft) 45%, var(--moss-soft) 100%);
  filter: blur(2px);
  animation: blob 14s ease-in-out infinite;
}
@keyframes blob {
  0%, 100% { border-radius: 50% 50% 50% 50%; transform: rotate(0deg); }
  33% { border-radius: 60% 40% 55% 45%; transform: rotate(8deg); }
  66% { border-radius: 45% 55% 40% 60%; transform: rotate(-6deg); }
}

.hero__stamp {
  position: absolute;
  width: 200px; height: 200px;
  animation: rotate 28s linear infinite;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
.hero__stamp text {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  fill: var(--ink);
}
.hero__stamp__core {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  pointer-events: none;
}
.hero__stamp__core .star {
  width: 32px; height: 32px;
}
.hero__stamp__core .small {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--moss);
  margin-top: 6px;
  font-variation-settings: "opsz" 18;
}

/* ============================================
   Floating "Call now" pill (bottom-right)
   ============================================ */

.call-pill {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transition: background 0.25s var(--ease-soft), transform 0.3s var(--ease);
}
.call-pill:hover { background: var(--moss); transform: translateY(-2px); }
.call-pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--honey-glow);
  box-shadow: 0 0 0 0 rgba(255, 228, 155, 0.6);
  animation: pulse-honey 2s infinite;
}
@keyframes pulse-honey {
  0% { box-shadow: 0 0 0 0 rgba(255, 228, 155, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 228, 155, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 228, 155, 0); }
}
.call-pill .num { font-variant-numeric: tabular-nums; }
.call-pill .label { font-size: 11px; opacity: 0.7; letter-spacing: 0.06em; text-transform: uppercase; }

@media (max-width: 720px) {
  .call-pill { bottom: 14px; right: 14px; padding: 11px 14px; font-size: 13px; }
  .call-pill .label { display: none; }
}

/* ============================================
   INTRO / Stats
   ============================================ */

.intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.intro__statement {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.18;
  font-weight: 360;
  font-variation-settings: "opsz" 36;
  letter-spacing: -0.022em;
  max-width: 28ch;
  color: var(--ink);
}
.intro__statement em {
  font-style: italic;
  color: var(--moss);
  font-weight: 360;
}
.intro__statement .highlight {
  background: linear-gradient(transparent 76%, var(--honey-light) 76%);
  padding: 0 4px;
}

.intro__stats {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat {
  background: var(--card);
  border-radius: 20px;
  padding: 28px 24px;
}
.stat__num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1;
  font-weight: 400;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 14px;
}
.stat__num em { color: var(--moss); font-weight: 400; }
.stat__label {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
}

/* ============================================
   Section head (simple)
   ============================================ */

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  margin-bottom: clamp(40px, 7vh, 70px);
}
.section-head h2 { max-width: 14ch; }
.section-head p { max-width: 38ch; color: var(--ink-soft); margin: 0; }

.section-head--single {
  grid-template-columns: 1fr;
  text-align: left;
}
.section-head--single h2 { max-width: 18ch; }
.section-head--single p { margin-top: 16px; }

/* ============================================
   SERVICES — clean rows (no magazine numbers)
   ============================================ */

.svc-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-row {
  background: var(--card);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 38px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 56px;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 60%, var(--moss-pale) 200%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-soft);
  pointer-events: none;
}
.svc-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -28px rgba(20, 30, 18,0.25);
}
.svc-row:hover::before { opacity: 1; }
.svc-row:hover .svc-row__arrow {
  background: var(--moss);
  color: #fff;
  transform: rotate(-45deg);
}

.svc-row__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.svc-row__content h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 420;
  font-variation-settings: "opsz" 48;
  letter-spacing: -0.025em;
}
.svc-row__content h3 em { color: var(--moss); font-style: italic; }
.svc-row__content p { margin: 0; color: var(--ink-soft); }

.svc-row__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.svc-row__meta .chips { display: flex; flex-wrap: wrap; gap: 6px; }

.svc-row__arrow {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft), transform 0.5s var(--ease);
  justify-self: end;
  position: relative;
  z-index: 1;
}

/* ============================================
   Showcard — "We come to you" feature
   ============================================ */

.showcard {
  background: var(--bg-soft);
}
.showcard__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.showcard h2 { max-width: 14ch; }
.showcard__steps { margin-top: 40px; display: grid; gap: 24px; }
.showcard__step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: start;
}
.showcard__step__num {
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 36;
  color: var(--moss);
}
.showcard__step h4 { margin-bottom: 4px; }
.showcard__step p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* Dispatch card / illustration */
.dispatch {
  background: var(--card);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(20, 30, 18,0.22);
}
.dispatch__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.dispatch__head .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--moss);
  display: inline-block; margin-right: 6px;
  animation: pulse 2s infinite;
}
.dispatch__title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 380;
  font-variation-settings: "opsz" 60;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}
.dispatch__title em { color: var(--moss); font-style: italic; font-weight: 380; }
.dispatch__rows { display: grid; gap: 0; font-family: var(--sans); font-size: 14px; }
.dispatch__rows .row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.dispatch__rows .row:last-child { border-bottom: none; }
.dispatch__rows .key { color: var(--ink-mute); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500; }
.dispatch__rows .val { color: var(--ink); font-weight: 500; }
.dispatch__footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.dispatch__stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--moss-deep);
  background: var(--moss-pale);
  padding: 6px 14px;
  border-radius: 999px;
}

/* ============================================
   Process / steps
   ============================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: var(--card);
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step__num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-style: italic;
  font-weight: 380;
  font-variation-settings: "opsz" 72;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--moss);
}
.step h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.step p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

/* ============================================
   Pull quote
   ============================================ */

.pullquote {
  padding: clamp(80px, 14vh, 160px) 0;
  text-align: center;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.pullquote::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  background: radial-gradient(ellipse at top, rgba(255, 228, 155, 0.08), transparent 70%);
  pointer-events: none;
}
.pullquote blockquote { color: var(--bg); }
.pullquote blockquote em { color: var(--honey-glow); }
.pullquote .cite { color: rgba(242, 245, 235, 0.62); }
.pullquote__inner {
  max-width: 24ch;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pullquote blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 320;
  font-variation-settings: "opsz" 72;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.pullquote blockquote em {
  font-style: italic;
  font-weight: 360;
}
.pullquote .cite {
  margin-top: 40px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ============================================
   CTA (soft sage)
   ============================================ */

.cta {
  padding: clamp(70px, 11vh, 130px) 0;
  background: var(--sage-soft);
  border-radius: 36px;
  margin: 0 clamp(16px, 3vw, 40px) clamp(40px, 7vh, 80px);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 228, 155, 0.55), transparent 65%);
  pointer-events: none;
}
.cta__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: end;
  padding: 0 clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 1;
}
.cta h2 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 360;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 14ch;
  line-height: 1.02;
}
.cta h2 em { color: var(--moss-deep); font-style: italic; }
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   Footer — lamp shines on the wordmark
   ============================================ */

footer {
  padding: 80px 0 36px;
  border-top: 1px solid var(--line);
}
footer .wrap { display: flex; flex-direction: column; gap: 40px; }

.foot__brand {
  position: relative;
  isolation: isolate;
}
.foot__lamp {
  position: relative;
  z-index: 2;
  width: clamp(70px, 9vw, 100px);
  height: auto;
  color: var(--ink);
  margin-left: clamp(32px, 6vw, 80px);
  margin-bottom: -18px;
  display: block;
}
.foot__lamp svg { width: 100%; height: auto; display: block; overflow: visible; }

.foot__wordmark {
  font-family: var(--display);
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 0.9;
  font-weight: 360;
  letter-spacing: -0.045em;
  color: var(--ink);
  font-variation-settings: "opsz" 72;
  position: relative;
  z-index: 1;
}
.foot__wordmark::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -40px;
  left: -20px;
  right: -20px;
  bottom: -10px;
  background:
    radial-gradient(ellipse 60% 80% at 12% 30%, rgba(255, 220, 130, 0.45), transparent 60%),
    radial-gradient(ellipse 80% 100% at 12% 30%, rgba(224, 181, 89, 0.18), transparent 70%);
  pointer-events: none;
  filter: blur(2px);
}
.foot__wordmark em { color: var(--moss); font-style: italic; font-weight: 360; }

.foot__cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.foot__col h5 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 500;
  color: var(--ink-mute);
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot__col a, .foot__col li { font-size: 15px; color: var(--ink); }
.foot__col a { transition: color 0.2s var(--ease-soft); }
.foot__col a:hover { color: var(--moss); }
.foot__col p { color: var(--ink-soft); font-size: 15px; margin: 0 0 10px; }
.foot__col .phone {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  font-variation-settings: "opsz" 36;
  letter-spacing: -0.025em;
}

.foot__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mute);
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================
   SERVICE PAGE — hero & sections
   (breadcrumb removed; cleaner header)
   ============================================ */

.svc-hero {
  padding: clamp(40px, 6vh, 70px) 0 clamp(50px, 8vh, 90px);
}

.svc-hero__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: end;
}
.svc-hero h1 {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 380;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.034em;
  line-height: 1.0;
  max-width: 14ch;
}
.svc-hero__meta { display: flex; flex-direction: column; gap: 24px; padding-bottom: 6px; }
.svc-hero__meta .lead { font-family: var(--display); font-size: 1.3rem; font-variation-settings: "opsz" 24; font-weight: 320; line-height: 1.4; max-width: 30ch; }
.svc-hero__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   Offerings (no magazine numbers)
   ============================================ */

.offerings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.offering {
  background: var(--card);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.offering:hover { transform: translateY(-3px); box-shadow: 0 22px 60px -32px rgba(20, 30, 18,0.22); }

.offering__head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 6px;
}
.offering__pill {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--moss-deep);
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--moss-pale);
}
.offering h3 {
  font-family: var(--display);
  text-transform: none;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 440;
  font-variation-settings: "opsz" 36;
  letter-spacing: -0.025em;
  line-height: 1.06;
}
.offering h3 em { color: var(--moss); font-style: italic; }
.offering p { color: var(--ink-soft); margin: 0; }
.offering__list { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 8px; }
.offering__list li {
  font-size: 14.5px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.offering__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.72em;
  width: 10px; height: 1px;
  background: var(--moss);
}

/* ============================================
   Pricing
   ============================================ */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pricing__card {
  background: var(--card);
  border-radius: 28px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pricing__card:hover { transform: translateY(-3px); box-shadow: 0 22px 60px -32px rgba(20, 30, 18,0.22); }
.pricing__card.featured {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.pricing__card.featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 130, 0.18), transparent 70%);
  pointer-events: none;
}
.pricing__card.featured > * { position: relative; z-index: 1; }
.pricing__card.featured .eyebrow { color: rgba(242, 245, 235, 0.85); }
.pricing__card.featured .eyebrow .dot { background: var(--honey-glow); }
.pricing__card.featured ul li { color: rgba(242, 245, 235, 0.9); }
.pricing__card.featured ul li::before { background: var(--honey-glow); }
.pricing__card.featured .price { color: var(--bg); }
.pricing__card.featured .price em { color: var(--honey-glow); }
.pricing__card.featured .price .unit { color: rgba(242, 245, 235, 0.55); }
.pricing__card.featured .btn--soft { background: transparent; color: var(--bg); border-color: rgba(242,245,235,0.45); }
.pricing__card.featured .btn--soft:hover { background: var(--honey); border-color: var(--honey); color: var(--ink); }

.price {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.5vw, 3.6rem);
  font-weight: 380;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
}
.price em { color: var(--moss); font-style: italic; font-weight: 380; }
.price .unit {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
  display: block;
  margin-top: 8px;
  letter-spacing: 0;
}

.pricing ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pricing ul li {
  font-size: 14.5px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.pricing ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.72em;
  width: 10px; height: 1px;
  background: var(--moss);
}

.pricing .btn { margin-top: auto; align-self: stretch; }

/* ============================================
   Service band
   ============================================ */

.svc-band {
  border-radius: 36px;
  margin: 0 clamp(16px, 3vw, 40px);
  padding: clamp(50px, 8vh, 100px) clamp(28px, 4vw, 60px);
}
.svc-band--moss { background: var(--moss-pale); }
.svc-band--sage { background: var(--sage-soft); }
.svc-band--honey { background: var(--honey-light); }
.svc-band--lilac { background: var(--lilac-light); }
.svc-band--clay { background: var(--clay-light); }

.svc-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.svc-band h2 { max-width: 14ch; }
.svc-band h2 em { color: var(--moss-deep); font-style: italic; }

/* ============================================
   FAQ
   ============================================ */

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(30px, 5vw, 60px);
}
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.faq__item:first-of-type { border-top: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 18px;
  align-items: start;
  font-family: var(--display);
  font-weight: 420;
  font-variation-settings: "opsz" 36;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--moss); }
.faq__item summary .plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--card);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 500;
  transition: background 0.25s var(--ease-soft), color 0.25s var(--ease-soft), transform 0.3s var(--ease);
  flex: none;
  font-family: var(--sans);
}
.faq__item[open] summary .plus { background: var(--moss); color: #fff; transform: rotate(45deg); }
.faq__item p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  max-width: 60ch;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15.5px;
}

/* ============================================
   CONTACT
   ============================================ */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact__block {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.contact__block:first-of-type { border-top: 1px solid var(--line); }
.contact__block .eyebrow { margin-bottom: 14px; display: inline-flex; }
.contact__block .big {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 400;
  font-variation-settings: "opsz" 48;
  letter-spacing: -0.028em;
  line-height: 1.05;
  margin: 0;
}
.contact__block .big a { transition: color 0.2s var(--ease-soft); }
.contact__block .big a:hover { color: var(--moss); }
.contact__block p { color: var(--ink-soft); font-size: 14.5px; margin: 10px 0 0; max-width: 38ch; }

.form {
  background: var(--card);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 30px 80px -40px rgba(20, 30, 18,0.22);
}
.form__head h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-variation-settings: "opsz" 48;
  letter-spacing: -0.025em;
}
.form__head h3 em { color: var(--moss); font-style: italic; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  font-weight: 500;
}
.form__field input, .form__field textarea, .form__field select {
  font: inherit;
  font-family: var(--sans);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s var(--ease-soft), background 0.2s var(--ease-soft);
}
.form__field input:focus, .form__field textarea:focus, .form__field select:focus {
  border-color: var(--moss);
  background: var(--card);
}
.form__field textarea { resize: vertical; min-height: 120px; }

/* ============================================
   VALUES (about)
   ============================================ */

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value {
  background: var(--card);
  border-radius: 22px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.value:hover { transform: translateY(-3px); box-shadow: 0 22px 60px -32px rgba(20, 30, 18,0.22); }
.value__num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 380;
  font-variation-settings: "opsz" 48;
  line-height: 1;
  color: var(--moss);
  letter-spacing: -0.04em;
}
.value h4 { font-size: 1.1rem; font-weight: 600; }
.value p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

/* ============================================
   Reveal animations
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }
.reveal.delay-5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__blob, .hero__stamp { animation: none !important; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1100px) {
  .hero__grid, .intro, .section-head, .svc-band__grid, .showcard__grid, .svc-hero__main, .contact__grid, .cta__grid, .faq__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual { max-width: 360px; margin: 0 auto; }
  .svc-rows .svc-row { grid-template-columns: 1fr 50px; }
  .svc-row__meta { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing, .values, .offerings { grid-template-columns: 1fr; }
  .intro__stats { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__links { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--bg); border-bottom: 1px solid var(--line); flex-direction: column; padding: 18px 20px 28px; align-items: flex-start; font-size: 17px; gap: 8px; }
  .nav__link { padding: 10px 0; font-family: var(--display); font-size: 1.6rem; font-weight: 400; font-variation-settings: "opsz" 36; letter-spacing: -0.025em; border-radius: 0; }
  .nav.is-open .nav__links { display: flex; }
  .nav__toggle { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--ink); border-radius: 50%; background: var(--card); }
  .nav__toggle span { width: 14px; height: 1px; background: var(--ink); position: relative; }
  .nav__toggle span::before, .nav__toggle span::after { content: ''; position: absolute; left: 0; width: 14px; height: 1px; background: var(--ink); }
  .nav__toggle span::before { top: -5px; } .nav__toggle span::after { top: 5px; }
  .nav__cta { display: none; }
  .brand__name { font-size: 22px; }
  .brand__lamp { width: 38px; height: 44px; }
  .steps { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr; }
  .cta, .svc-band { margin-left: 8px; margin-right: 8px; border-radius: 28px; }
  .foot__lamp { margin-left: 16px; }
}
