/* Web Design Worthing — refined, flat, polished. Hand-tuned, not generated. */

:root {
  /* Brand — deep coastal green, warm paper, restrained gold */
  --green-950: #07140f;
  --green-900: #0d241c;
  --green-800: #19382d;
  --green-100: #e5efe9;
  --paper: #faf6ec;
  --paper-soft: #f2ead7;
  --cream: #fff9ee;
  --gold: #c6a24e;
  --gold-bright: #e3c374;
  --gold-deep: #93722f;
  --ink: #07140f;
  --muted: #5e6a62;
  --line: rgba(19, 33, 28, 0.14);
  --line-strong: rgba(19, 33, 28, 0.24);
  --line-dark: rgba(255, 249, 238, 0.16);

  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Playfair Display", Georgia, serif;

  --wrap: min(1080px, calc(100% - 44px));
  --header: 70px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--green-950); }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 4px; }

/* Scroll progress + skip link ------------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 90; transition: width 90ms linear; pointer-events: none;
}
.skip-link {
  position: absolute; left: 16px; top: 12px; z-index: 95;
  transform: translateY(-160%);
  padding: 9px 14px; border-radius: 999px;
  background: var(--gold); color: var(--green-950); font-weight: 700;
  transition: transform 160ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.wrap { width: var(--wrap); margin-inline: auto; }

/* Header ---------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  min-height: var(--header);
  background: rgba(14, 38, 32, 0.88);
  color: var(--cream);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px) saturate(1.1);
  transition: background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}
.site-header[data-scrolled] {
  background: rgba(11, 30, 25, 0.97);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 10px 30px -22px rgba(0, 0, 0, 0.9);
}
.header-inner { min-height: var(--header); display: flex; align-items: center; justify-content: space-between; gap: 22px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; white-space: nowrap; }
.brand-mark {
  display: inline-grid; place-items: center; width: 34px; height: 34px;
  border-radius: 10px; background: var(--gold); color: var(--green-950);
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.02em;
  transition: transform 240ms var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-6deg); }
.brand-text { font-size: 1rem; }

.site-nav { display: flex; align-items: center; gap: 2px; font-size: 0.85rem; font-weight: 600; }
.site-nav a { position: relative; color: rgba(255, 249, 238, 0.8); padding: 9px 12px; border-radius: 8px; transition: color 160ms var(--ease); }
.site-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 1.5px;
  background: var(--gold-bright); transform: scaleX(0); transform-origin: left; transition: transform 220ms var(--ease);
}
.site-nav a:not(.nav-cta):hover::after, .site-nav a:not(.nav-cta):focus-visible::after { transform: scaleX(1); }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--cream); }
.site-nav .nav-cta { margin-left: 8px; background: var(--gold); color: var(--green-950); font-weight: 700; }
.site-nav .nav-cta:hover, .site-nav .nav-cta:focus-visible { background: var(--gold-bright); }

.nav-toggle { display: none; align-items: center; gap: 9px; border: 1px solid var(--line-dark); border-radius: 999px; background: transparent; color: var(--cream); padding: 9px 13px; font-size: 0.82rem; font-weight: 700; }
.nav-toggle i, .nav-toggle i::before, .nav-toggle i::after { display: block; width: 17px; height: 2px; border-radius: 999px; background: currentColor; transition: transform 200ms var(--ease), opacity 200ms var(--ease); }
.nav-toggle i { position: relative; }
.nav-toggle i::before, .nav-toggle i::after { content: ""; position: absolute; left: 0; }
.nav-toggle i::before { top: -6px; }
.nav-toggle i::after { top: 6px; }
.nav-open .nav-toggle i { transform: rotate(45deg); }
.nav-open .nav-toggle i::before { transform: translateY(6px) rotate(90deg); }
.nav-open .nav-toggle i::after { opacity: 0; }

main { overflow: clip; }

/* Sections + type ------------------------------------------------------- */
.section, .hero, .area-hero { padding: clamp(52px, 7.5vw, 92px) 0; }
.section-tight { padding: clamp(38px, 5.5vw, 62px) 0; }
.section-light { background: var(--paper-soft); border-block: 1px solid var(--line); }
.section-dark { background: var(--green-950); color: var(--cream); }

.eyebrow, .section-kicker {
  margin: 0 0 12px; color: var(--gold-deep);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; line-height: 1.3; text-transform: uppercase;
}
.section-dark .eyebrow, .section-dark .section-kicker, .hero .eyebrow, .area-hero .eyebrow { color: var(--gold); }

.script {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-accent); font-style: italic; font-weight: 600;
  color: var(--gold-deep); font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  letter-spacing: -0.01em; line-height: 1.15; margin: 0 0 10px;
}
.section-dark .script { color: var(--gold); }
.script::before { content: ""; width: 26px; height: 2px; border-radius: 999px; background: currentColor; opacity: 0.7; }

h1, h2, h3 { font-family: var(--font-display); color: var(--green-950); margin-top: 0; margin-bottom: 14px; letter-spacing: -0.025em; line-height: 1.08; text-wrap: balance; }
.hero h1, .area-hero h1, .section-dark h1, .section-dark h2, .section-dark h3, .site-footer h2, .site-footer h3 { color: var(--cream); }
.accent { font-family: var(--font-accent); font-style: italic; font-weight: 700; color: var(--gold-bright); letter-spacing: -0.04em; }
h1 { max-width: 16ch; font-size: clamp(2.15rem, 5vw, 3.7rem); font-weight: 700; }
h2 { max-width: 22ch; font-size: clamp(1.5rem, 2.8vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; }
p { margin-top: 0; margin-bottom: 15px; }

.lede { max-width: 60ch; color: var(--muted); font-size: clamp(1.02rem, 1.3vw, 1.18rem); line-height: 1.55; }
.section-dark .lede, .hero .lede, .area-hero .lede { color: rgba(255, 249, 238, 0.82); }
.text-large { font-size: clamp(1.02rem, 1.2vw, 1.12rem); }
.muted { color: var(--muted); }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text strong { color: var(--green-900); font-weight: 700; }
.section-dark .rich-text strong { color: var(--gold); }

/* Buttons --------------------------------------------------------------- */
.button {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 11px 20px;
  border: 1px solid transparent; border-radius: 999px;
  font-size: 0.9rem; font-weight: 700; line-height: 1;
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.button::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg); transition: left 600ms var(--ease); pointer-events: none;
}
.button:hover::before, .button:focus-visible::before { left: 140%; }
.button:hover, .button:focus-visible { transform: translateY(-2px); outline: 0; }
.button:active { transform: translateY(0); }
.button-primary { background: var(--gold); color: var(--green-950); }
.button-primary:hover, .button-primary:focus-visible { background: var(--gold-bright); }
.button-outline { border-color: rgba(255, 249, 238, 0.32); color: var(--cream); }
.button-outline::before { background: linear-gradient(100deg, transparent, rgba(255, 249, 238, 0.18), transparent); }
.button-outline:hover, .button-outline:focus-visible { border-color: var(--gold); color: var(--gold-bright); }
.button-dark { background: var(--green-950); color: var(--cream); }
.button-dark:hover, .button-dark:focus-visible { background: var(--green-800); }
.button .arrow { transition: transform 240ms var(--ease); }
.button:hover .arrow { transform: translateX(3px); }

/* Hero ------------------------------------------------------------------ */
.hero { position: relative; background: var(--green-950); color: var(--cream); overflow: hidden; border-bottom: 1px solid var(--line-dark); }
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto auto; width: 70%; height: 130%;
  background: radial-gradient(45% 45% at 70% 30%, rgba(198, 162, 78, 0.22), transparent 70%);
  filter: blur(8px); animation: heroGlow 16s ease-in-out infinite alternate; pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 249, 238, 0.05) 1px, transparent 1px);
  background-size: 24px 24px; mask-image: radial-gradient(70% 70% at 50% 0%, #000, transparent); pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr); gap: clamp(34px, 5vw, 72px); align-items: center; }
.hero-copy { max-width: 36rem; }
.hero h1 .accent, .area-hero h1 .accent { color: var(--gold-bright); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.hero-proof .proof-stat strong { display: block; font-family: var(--font-display); color: var(--gold-bright); font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1; letter-spacing: -0.03em; margin-bottom: 6px; }
.hero-proof .proof-stat span { color: rgba(255, 249, 238, 0.72); font-size: 0.8rem; line-height: 1.35; }

/* Browser mock (hero + showcase + about) -------------------------------- */
.hero-visual { position: relative; }
.hero-visual .float { animation: floaty 7s ease-in-out infinite; }
.desktop-window {
  overflow: hidden; border: 1px solid var(--line-dark); border-radius: 16px;
  background: var(--paper); color: var(--ink);
  box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 0.85);
}
.window-bar { height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 15px; background: var(--green-900); color: rgba(255, 249, 238, 0.6); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.04em; }
.window-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 249, 238, 0.3); }
.window-bar span:first-child { background: var(--gold); }
.window-bar b { margin-left: auto; font-weight: 600; color: rgba(255, 249, 238, 0.6); }
.window-layout { display: grid; grid-template-columns: 96px 1fr; min-height: 248px; }
.window-layout aside { padding: 20px 14px; border-right: 1px solid var(--line); display: grid; align-content: start; gap: 12px; }
.window-layout aside i { display: block; height: 9px; border-radius: 999px; background: var(--green-100); }
.window-layout aside i:first-child { width: 52px; background: var(--gold); }
.window-layout .mock-main { padding: 24px; display: grid; align-content: center; }
.window-layout .mock-main em { color: var(--gold-deep); text-transform: uppercase; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; font-style: normal; margin-bottom: 9px; }
.window-layout .mock-main strong { font-family: var(--font-display); max-width: 16ch; font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.04; letter-spacing: -0.03em; }
.window-layout .mock-main p { max-width: 34ch; margin: 8px 0 0; color: var(--muted); font-size: 0.86rem; }
.window-layout .mock-main .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.window-layout .mock-main .cards span { height: 56px; border-radius: 12px; border: 1px solid var(--line); background: var(--paper-soft); animation: cardLift 4.5s ease-in-out infinite; }
.window-layout .mock-main .cards span:nth-child(2) { animation-delay: 0.3s; }
.window-layout .mock-main .cards span:nth-child(3) { animation-delay: 0.6s; }
.window-layout .mock-main .bar { display: inline-flex; width: fit-content; margin-top: 16px; padding: 8px 13px; border-radius: 999px; background: var(--gold); color: var(--green-950); font-size: 0.7rem; font-weight: 700; }

/* Intro / editorial grids ----------------------------------------------- */
.intro-grid, .editorial-grid, .fit-grid, .area-intro-grid, .business-intro {
  display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(28px, 5vw, 70px); align-items: start;
}
.business-intro { margin-bottom: 30px; }
.section-heading { max-width: 60ch; margin-bottom: 30px; }
.section-heading p:last-child { color: var(--muted); margin-bottom: 0; }
.section-dark .section-heading p:last-child { color: rgba(255, 249, 238, 0.78); }

/* Service lines --------------------------------------------------------- */
.service-lines { display: grid; border-top: 1px solid var(--line); }
.service-lines-spaced { margin-top: 30px; }
.service-line {
  display: grid; grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px); padding: 28px 0; border-bottom: 1px solid var(--line);
  transition: background 220ms var(--ease);
}
.service-line:hover { background: rgba(198, 162, 78, 0.05); }
.section-dark .service-line:hover { background: rgba(255, 249, 238, 0.04); }
.service-line h3 { margin-bottom: 8px; }
.service-line > div:first-child .flat-icon.small { margin-bottom: 12px; }
.service-line p { max-width: 64ch; margin-bottom: 0; color: var(--muted); }
.section-dark .service-line p { color: rgba(255, 249, 238, 0.74); }

/* Local proof + ticker -------------------------------------------------- */
.local-proof-section, .local-business-section { background: var(--paper); }
.proof-story-grid { display: grid; grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr); gap: clamp(28px, 5vw, 68px); align-items: start; }
.local-proof-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.local-proof-list article {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 22px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background 220ms var(--ease);
}
.local-proof-list article:hover { background: var(--paper-soft); }
.local-proof-list h3 { margin-bottom: 5px; }
.local-proof-list p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }

.sector-ticker { margin-top: 36px; overflow: hidden; border-block: 1px solid var(--line); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker-track { display: flex; width: max-content; gap: 10px; padding: 16px 0; animation: tickerMove 42s linear infinite; }
.sector-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { display: inline-flex; align-items: center; min-height: 34px; border: 1px solid var(--line); border-radius: 999px; padding: 6px 15px; color: var(--green-900); background: rgba(255, 249, 238, 0.5); font-size: 0.8rem; font-weight: 600; white-space: nowrap; }

/* Business grid --------------------------------------------------------- */
.business-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.business-item {
  position: relative; min-height: 210px; padding: 26px 24px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent;
  transition: background 240ms var(--ease);
}
.business-item::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform 280ms var(--ease); }
.business-item:hover { background: var(--paper-soft); }
.business-item:hover::before { transform: scaleY(1); }
.business-item .flat-icon { margin-bottom: 22px; color: var(--green-800); transition: color 240ms var(--ease); }
.business-item:hover .flat-icon { color: var(--gold-deep); }
.business-item h3 { margin-bottom: 8px; }
.business-item p { margin-bottom: 0; color: var(--muted); font-size: 0.92rem; }

/* Local flow ------------------------------------------------------------ */
.local-flow { display: grid; grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr); gap: clamp(24px, 5vw, 56px); align-items: center; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.local-flow h3 { margin-bottom: 0; }
.flow-steps { --line-progress: 0%; position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.flow-steps::before, .flow-steps::after { content: ""; position: absolute; left: 17px; right: 17px; top: 17px; height: 2px; background: var(--line); z-index: 0; }
.flow-steps::after { right: auto; width: var(--line-progress); background: var(--gold); transition: width 1100ms var(--ease); }
.is-visible .flow-steps { --line-progress: calc(100% - 34px); }
.flow-steps span { position: relative; z-index: 1; display: grid; gap: 8px; align-content: start; }
.flow-steps .flat-icon.small { background: var(--paper); border: 1px solid var(--line); border-radius: 50%; padding: 5px; width: 36px; height: 36px; }
.flow-steps strong { font-size: 0.92rem; letter-spacing: -0.02em; }
.flow-steps em { color: var(--muted); font-style: normal; font-size: 0.8rem; line-height: 1.45; }

/* Showcase / mobile ----------------------------------------------------- */
.showcase-section { background: var(--paper-soft); }
.showcase-grid { display: grid; grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.mini-feature-list { display: grid; gap: 12px; margin-top: 26px; border-top: 1px solid var(--line); padding-top: 20px; }
.mini-feature-list p { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: center; margin: 0; color: var(--muted); }

.mobile-section { background: var(--paper); }
.mobile-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.65fr); gap: clamp(28px, 5vw, 70px); align-items: center; }
.phone-wrap { display: flex; justify-content: center; }
.phone { width: min(286px, 78vw); aspect-ratio: 9 / 18.4; border: 1px solid rgba(7, 20, 15, 0.16); border-radius: 30px; padding: 9px; background: linear-gradient(180deg, var(--cream), var(--paper-soft)); position: relative; box-shadow: 0 26px 55px -44px rgba(0, 0, 0, 0.75); }
.phone::before { content: ""; position: absolute; top: 15px; left: 50%; transform: translateX(-50%); width: 42px; height: 4px; border-radius: 999px; background: rgba(7, 20, 15, 0.16); z-index: 2; }
.phone-screen { height: 100%; overflow: hidden; border-radius: 22px; border: 1px solid rgba(7, 20, 15, 0.08); background: var(--paper); }
.phone-top { background: var(--green-950); color: var(--cream); padding: 30px 16px 18px; }
.phone-logo { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); }
.phone-bars { display: flex; gap: 3px; }
.phone-bars i { display: block; width: 12px; height: 2px; background: var(--cream); opacity: 0.8; border-radius: 999px; }
.phone-title { font-family: var(--font-display); margin: 20px 0 8px; max-width: 16ch; font-size: 1.28rem; line-height: 1.05; font-weight: 700; letter-spacing: -0.03em; }
.phone-copy { margin: 0; color: rgba(255, 249, 238, 0.78); font-size: 0.68rem; line-height: 1.45; }
.phone-button { display: inline-block; margin-top: 12px; padding: 7px 12px; border-radius: 999px; background: var(--gold); color: var(--green-950); font-size: 0.6rem; font-weight: 700; }
.phone-body { padding: 15px 14px; display: grid; gap: 11px; }
.phone-row { border: 1px solid rgba(7, 20, 15, 0.08); border-radius: 14px; padding: 11px 12px; background: rgba(255, 249, 238, 0.68); }
.phone-row span { display: block; width: 34px; height: 4px; border-radius: 999px; background: var(--gold); margin-bottom: 8px; }
.phone-row strong { display: block; margin-bottom: 4px; font-size: 0.76rem; letter-spacing: -0.02em; }
.phone-row p { margin: 0; font-size: 0.64rem; color: var(--muted); line-height: 1.42; }
.phone-mini-nav { margin-top: 5px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.phone-mini-nav i { height: 22px; border-radius: 999px; border: 0; background: rgba(13, 36, 28, 0.09); }

.keyword-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.keyword-strip span { display: inline-flex; align-items: center; min-height: 36px; padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 0.8rem; font-weight: 600; background: rgba(255, 249, 238, 0.5); }

/* Fit list -------------------------------------------------------------- */
.fit-grid { align-items: center; }
.fit-list { display: grid; gap: 14px; }
.icon-list p { display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: start; margin: 0; }
.fit-list p { padding-bottom: 14px; border-bottom: 1px solid var(--line-dark); color: rgba(255, 249, 238, 0.84); }
.fit-list p:last-child { border-bottom: 0; padding-bottom: 0; }

/* Process + packages ---------------------------------------------------- */
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; border-top: 0; }
.process-list article { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 249, 238, 0.56); }
.process-list article:last-child { border-right: 1px solid var(--line); }
.process-list .flat-icon.small { margin-bottom: 14px; }
.process-list .step-no { display: block; margin-bottom: 12px; color: var(--gold-deep); font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; }
.process-list p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0; }

.package-lines { display: grid; border-top: 1px solid var(--line); }
.package-lines article { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); transition: padding-left 240ms var(--ease); }
.package-lines article:hover { padding-left: 8px; }
.package-copy { display: flex; align-items: flex-start; gap: 16px; }
.package-copy .flat-icon.small { margin-top: 2px; color: var(--gold-deep); }
.package-lines h3 { margin-bottom: 6px; }
.package-lines p { max-width: 64ch; margin-bottom: 0; color: var(--muted); }
.package-lines .link-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--green-900); font-weight: 700; font-size: 0.88rem; white-space: nowrap; }
.package-lines .link-arrow .arrow { transition: transform 220ms var(--ease); }
.package-lines article:hover .link-arrow { color: var(--gold-deep); }
.package-lines article:hover .link-arrow .arrow { transform: translateX(4px); }

/* FAQ ------------------------------------------------------------------- */
.faq-grid { display: grid; grid-template-columns: minmax(250px, 0.66fr) minmax(0, 1.34fr); gap: clamp(28px, 5vw, 68px); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; justify-content: space-between; gap: 22px; list-style: none; padding: 18px 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; cursor: pointer; transition: color 180ms var(--ease); }
summary:hover { color: var(--gold-deep); }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--gold-deep); font-size: 1.3rem; line-height: 1; transition: transform 220ms var(--ease); }
details[open] summary::after { content: "+"; transform: rotate(45deg); }
details p { margin: -4px 0 18px; color: var(--muted); }
details[open] p { animation: faqIn 320ms var(--ease); }

/* Contact --------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 68px); align-items: start; }
.contact-list { margin-top: 26px; display: grid; gap: 12px; }
.contact-list a, .contact-list span { display: block; padding-bottom: 12px; border-bottom: 1px solid var(--line-dark); color: rgba(255, 249, 238, 0.84); }
.contact-list a:hover { color: var(--gold-bright); }
.contact-list a strong, .contact-list span strong { display: block; color: var(--gold); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.contact-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; color: rgba(255, 249, 238, 0.84); font-size: 0.82rem; font-weight: 600; }
input, textarea, select { width: 100%; border: 1px solid var(--line-dark); border-radius: 12px; background: rgba(255, 249, 238, 0.06); color: var(--cream); padding: 13px 14px; outline: 0; transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease); }
textarea { min-height: 132px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198, 162, 78, 0.18); }
select option { color: var(--ink); }
.form-status { margin: 0; min-height: 1.3em; color: var(--gold-bright); font-size: 0.86rem; }

/* Area + about pages ---------------------------------------------------- */
.area-hero { position: relative; background: var(--green-950); color: var(--cream); overflow: hidden; }
.area-hero::before { content: ""; position: absolute; inset: -30% auto auto -10%; width: 60%; height: 120%; background: radial-gradient(45% 45% at 30% 30%, rgba(198, 162, 78, 0.18), transparent 70%); pointer-events: none; }
.area-hero .wrap { position: relative; z-index: 1; }
.breadcrumbs { margin: 0 0 22px; color: rgba(255, 249, 238, 0.66); font-size: 0.82rem; }
.breadcrumbs a { color: var(--gold); font-weight: 600; }
.breadcrumbs a:hover { color: var(--gold-bright); }
.area-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.area-meta span { display: inline-flex; padding: 7px 13px; border: 1px solid var(--line-dark); border-radius: 999px; color: rgba(255, 249, 238, 0.8); font-size: 0.78rem; font-weight: 600; }
.local-list { display: grid; border-top: 1px solid var(--line); }
.local-list article { padding: 22px 0; border-bottom: 1px solid var(--line); }
.local-list p { max-width: 70ch; margin-bottom: 0; color: var(--muted); }
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.duo-grid .rich-text { border-top: 2px solid var(--gold); padding-top: 20px; }

.about-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr); gap: clamp(28px, 5vw, 72px); align-items: end; }
.about-stats { display: grid; gap: 0; border-top: 1px solid var(--line-dark); }
.about-stats div { padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.about-stats strong { display: block; font-family: var(--font-display); color: var(--gold-bright); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 0.95; letter-spacing: -0.04em; }
.about-stats span { display: block; margin-top: 6px; color: rgba(255, 249, 238, 0.76); font-size: 0.84rem; }
.about-client-grid { grid-template-columns: repeat(2, 1fr); }

/* Footer ---------------------------------------------------------------- */
.site-footer { background: var(--green-950); color: var(--cream); border-top: 1px solid var(--line-dark); padding: 46px 0 28px; }
.footer-grid { display: grid; grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(150px, 0.55fr)); gap: 30px; }
.footer-grid h2, .footer-grid h3 { font-size: 0.92rem; margin-bottom: 14px; letter-spacing: -0.02em; }
.footer-grid p, .footer-grid a { color: rgba(255, 249, 238, 0.72); font-size: 0.86rem; }
.footer-grid a { display: block; margin-bottom: 9px; transition: color 160ms var(--ease); }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line-dark); color: rgba(255, 249, 238, 0.6); font-size: 0.78rem; }
.footer-bottom a { color: var(--gold); font-weight: 600; }

/* Sticky mobile CTA ----------------------------------------------------- */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(11, 30, 25, 0.97); border-top: 1px solid var(--line-dark); backdrop-filter: blur(12px); transform: translateY(110%); transition: transform 300ms var(--ease); }
.mobile-cta.show { transform: translateY(0); }
.mobile-cta .button { width: 100%; min-height: 48px; }

/* Icons ----------------------------------------------------------------- */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.flat-icon { width: 42px; height: 42px; flex: 0 0 42px; color: var(--green-900); stroke: currentColor; fill: none; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.flat-icon.small { width: 30px; height: 30px; flex-basis: 30px; color: var(--gold-deep); stroke-width: 2.25; }
.section-dark .flat-icon.small { color: var(--gold); }

/* Reveal + keyframes ---------------------------------------------------- */
.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 620ms var(--ease), transform 620ms var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.business-grid [data-reveal]:nth-child(2), .process-list [data-reveal]:nth-child(2), .package-lines [data-reveal]:nth-child(2), .hero [data-reveal]:nth-child(2) { transition-delay: 80ms; }
.business-grid [data-reveal]:nth-child(3), .process-list [data-reveal]:nth-child(3), .package-lines [data-reveal]:nth-child(3) { transition-delay: 160ms; }
.business-grid [data-reveal]:nth-child(4), .process-list [data-reveal]:nth-child(4), .package-lines [data-reveal]:nth-child(4) { transition-delay: 240ms; }
.business-grid [data-reveal]:nth-child(5) { transition-delay: 320ms; }
.business-grid [data-reveal]:nth-child(6) { transition-delay: 400ms; }

@keyframes heroGlow { from { transform: translate(0, 0) scale(1); } to { transform: translate(-6%, 5%) scale(1.12); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes cardLift { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes faqIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero::before, .ticker-track, .window-layout .mock-main .cards span, .hero-visual .float { animation: none; }
}

/* Responsive ------------------------------------------------------------ */
@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { position: fixed; inset: var(--header) 0 auto 0; display: grid; gap: 2px; padding: 16px 22px 24px; background: var(--green-950); border-bottom: 1px solid var(--line-dark); transform: translateY(-120%); transition: transform 240ms var(--ease); }
  .nav-open .site-nav { transform: translateY(0); }
  .site-nav a { padding: 12px 0; border-radius: 0; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .site-nav .nav-cta { margin: 12px 0 0; width: fit-content; padding: 12px 18px; }
  .hero-grid, .mobile-grid, .intro-grid, .editorial-grid, .fit-grid, .faq-grid, .contact-grid, .area-intro-grid, .business-intro, .proof-story-grid, .showcase-grid, .about-hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .flow-steps::before, .flow-steps::after { display: none; }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-list article:nth-child(2) { border-right: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --wrap: min(100% - 32px, 1080px); --header: 64px; }
  .brand-text { font-size: 0.92rem; }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; }
  .business-grid, .local-proof-list, .about-client-grid { grid-template-columns: 1fr; }
  .business-item { min-height: auto; padding: 22px 0; border-right: 0; }
  .business-item::before { display: none; }
  .business-grid { border-left: 0; }
  .local-proof-list { border-left: 0; }
  .local-proof-list article { padding: 20px 0; border-right: 0; grid-template-columns: 40px 1fr; }
  .service-line, .package-lines article, .form-row, .duo-grid, .local-flow { grid-template-columns: 1fr; }
  .package-lines article:hover { padding-left: 0; }
  .process-list { grid-template-columns: 1fr; gap: 14px; }
  .process-list article { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 249, 238, 0.56); }
  .window-layout { grid-template-columns: 1fr; }
  .window-layout aside { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta { display: grid; }
  body { padding-bottom: 76px; }
}


/* Added service/detail polish -------------------------------------------- */
.service-hero h1 { max-width: 18ch; }
.area-depth .section-heading { max-width: 66ch; }
.area-depth .service-lines { margin-top: 4px; }
.service-hero .button-outline { border-color: rgba(255, 249, 238, 0.32); color: var(--cream); }
.service-hero .button-outline:hover, .service-hero .button-outline:focus-visible { border-color: var(--gold); color: var(--gold-bright); }
.section:not(.section-dark) .button-outline { border-color: var(--line-strong); color: var(--green-950); }
.section:not(.section-dark) .button-outline:hover, .section:not(.section-dark) .button-outline:focus-visible { border-color: var(--gold-deep); color: var(--gold-deep); }
