/* ==========================================================================
   Pol-Franc Sp. z o.o. — Editorial Brass
   Design system: refined premium finance, Pomeranian heritage
   ========================================================================== */

/* --- Root tokens -------------------------------------------------------- */
:root {
  /* Color */
  --ink: #0E1116;
  --ink-2: #1A1F27;
  --ink-3: #2A303B;
  --brass: #C9A961;
  --brass-light: #E0C787;
  --brass-dark: #9C7F3E;
  --cream: #F6F1E7;
  --cream-2: #EEE7D6;
  --ivory: #FBF8F2;
  --paper: #FFFFFF;
  --muted: #5B5A53;
  --muted-2: #8A8878;
  --rule: rgba(14, 17, 22, 0.12);
  --rule-strong: rgba(14, 17, 22, 0.28);
  --rule-light: rgba(246, 241, 231, 0.16);
  /* Maritime blue — Trójmiasto / Bałtyk accent */
  --navy: #0B2940;
  --navy-2: #143457;
  --navy-3: #1E4673;
  --rust: #B8532E;
  --rust-dark: #8A3D1E;
  --danger: #A83232;
  --success: #3B6B3A;

  /* Typography */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Menlo", "Consolas", monospace;

  /* Scale */
  --fs-mega: clamp(2.75rem, 7vw, 6rem);
  --fs-display: clamp(2.25rem, 5vw, 4.25rem);
  --fs-h1: clamp(2rem, 4.2vw, 3.25rem);
  --fs-h2: clamp(1.625rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-lead: clamp(1.125rem, 1.45vw, 1.3125rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  /* Spacing rhythm */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6.5rem;
  --space-10: 9rem;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 2px;
  --radius-lg: 4px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.45s;
  --dur-fast: 0.22s;
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; min-width: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
  overflow-wrap: break-word;

  /* Subtle paper grain */
  background-image:
    radial-gradient(ellipse 1200px 600px at 20% -10%, rgba(201, 169, 97, 0.08), transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.045 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select { font: inherit; color: inherit; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

ul, ol { padding: 0; list-style: none; }

/* --- Typography --------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 36, "SOFT" 40, "WONK" 0;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.005em; }

p { max-width: 62ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--brass);
}

.eyebrow--on-dark { color: var(--brass-light); }
.eyebrow--on-dark::before { background: var(--brass-light); }

.display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 20, "WONK" 0;
  line-height: 1;
  letter-spacing: -0.03em;
}

.mega {
  font-family: var(--font-display);
  font-size: var(--fs-mega);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.mega em,
.display em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--brass-dark);
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 54ch;
}

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "ss01", "zero";
}

/* --- Layout primitives -------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: 920px; }
.container--wide { max-width: 1400px; }

section {
  position: relative;
  padding-block: var(--space-9);
}

section.slim { padding-block: var(--space-8); }

/* Dark surface */
.surface-ink {
  background: var(--ink);
  color: var(--cream);
}
.surface-ink h1, .surface-ink h2, .surface-ink h3 { color: var(--cream); }
.surface-ink .lead { color: rgba(246, 241, 231, 0.78); }

.surface-cream { background: var(--cream); }
.surface-cream-2 { background: var(--cream-2); }

/* Decorative hairline */
.rule {
  display: block;
  height: 1px;
  background: var(--rule);
  width: 100%;
}

.rule--brass { background: linear-gradient(90deg, transparent, var(--brass) 20%, var(--brass) 80%, transparent); }

/* --- Header & navigation ----------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.96);
  box-shadow: 0 6px 30px -12px rgba(14,17,22,0.18);
  border-bottom-color: rgba(201,169,97,0.3);
}

.site-header__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  height: 76px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__img {
  display: block;
  height: 52px;
  width: auto;
  aspect-ratio: 65 / 16;
  max-width: 100%;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.brand:hover .brand__img { transform: scale(1.02); opacity: 0.92; }
.brand__tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.45;
  color: var(--muted);
  padding-left: 14px;
  border-left: 2px solid var(--brass);
  white-space: nowrap;
  max-width: 160px;
}
@media (max-width: 1100px) {
  .brand { gap: 10px; }
  .brand__img { height: 44px; }
  .brand__tag { display: none; }
}
@media (max-width: 720px) {
  .brand__img { height: 38px; }
}
/* Legacy text brand (kept in case SVG fails to load) */
.brand--text {
  align-items: baseline;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 72, "SOFT" 40;
}
.brand__mark {
  font-style: italic;
  color: var(--brass-dark);
  font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 1;
}
.brand__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--brass);
  border-radius: 50%;
  transform: translateY(-2px);
}
.brand__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: var(--space-2);
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--space-5);
  min-width: 0;
  flex-shrink: 0;
}
.nav__list {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-5);
  white-space: nowrap;
}
.nav__link {
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding-block: var(--space-2);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 1px;
  background: var(--brass-dark);
  transition: right var(--dur) var(--ease-out);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { right: 0; }
.nav__link[aria-current="page"] { color: var(--brass-dark); }

.nav__cta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.65rem 1.1rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  text-transform: uppercase;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.nav__cta:hover { background: var(--brass-dark); color: var(--ivory); transform: translateY(-1px); }

.nav__toggle {
  display: none;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--cream);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 10;
  min-width: 74px;
  white-space: nowrap;
}
.nav__toggle:hover { background: var(--brass-dark); border-color: var(--brass-dark); }
.nav__toggle:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

@media (max-width: 1100px) {
  .site-header__inner { height: 64px; gap: var(--space-3); }
  .nav__list,
  .nav__cta { display: none !important; }
  .nav__toggle { display: inline-flex !important; align-items: center; gap: 0.5ch; }
  .brand__tag { display: none !important; }

  .nav[data-open="true"] .nav__list {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    flex-direction: column;
    background: var(--ivory);
    padding: var(--space-6) var(--gutter) calc(var(--space-6) + env(safe-area-inset-bottom));
    gap: var(--space-1);
    border-top: 1px solid var(--rule);
    box-shadow: 0 24px 60px -20px rgba(14,17,22,0.4);
    animation: slideDown 0.28s var(--ease-out) both;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 60;
  }
  .nav[data-open="true"] .nav__cta { display: none !important; }
  .nav[data-open="true"] .nav__link {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--rule);
  }
  .nav[data-open="true"] .nav__link::after { display: none; }
  .nav[data-open="true"] .nav__link:active { color: var(--brass-dark); }
  body.nav-open { overflow: hidden; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.95rem 1.5rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn:hover { background: var(--brass-dark); border-color: var(--brass-dark); transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.btn--brass { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.btn--brass:hover { background: var(--brass-dark); border-color: var(--brass-dark); color: var(--ivory); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--on-dark { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.btn--on-dark:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }

.btn--block { display: flex; width: 100%; }

.btn__arrow {
  display: inline-block;
  width: 1em;
  transition: transform var(--dur) var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: var(--space-8) var(--space-9);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-8);
  align-items: end;
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-6); }
}

.hero__copy .eyebrow { margin-bottom: var(--space-5); }

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--fs-mega);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-6);
}
.hero__headline em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--brass-dark);
}

.hero__lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 44ch;
  margin-bottom: var(--space-6);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5) var(--space-6);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--rule);
}
.hero__meta dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-2);
}
.hero__meta dd {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-variation-settings: "opsz" 72, "SOFT" 40;
  color: var(--ink);
}

/* Hero phones card */
.phones-card {
  position: relative;
  padding: var(--space-7);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(14, 17, 22, 0.45);
}
.phones-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 400px 220px at 90% -10%, rgba(201, 169, 97, 0.22), transparent 60%),
    radial-gradient(ellipse 300px 200px at -10% 110%, rgba(201, 169, 97, 0.12), transparent 60%);
  pointer-events: none;
}
.phones-card > * { position: relative; }

.phones-card__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: var(--space-5);
}
.phones-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: var(--space-6);
  font-variation-settings: "opsz" 72, "SOFT" 40;
}
.phones-card__title em {
  font-style: italic;
  color: var(--brass-light);
  font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 1;
}
.phones-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.phone-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-top: 1px solid var(--rule-light);
  transition: color var(--dur-fast) var(--ease);
}
.phone-row:first-child { border-top: 0; padding-top: 0; }
.phone-row__label {
  font-size: 0.95rem;
  color: rgba(246, 241, 231, 0.78);
  letter-spacing: 0.01em;
  flex: 1 1 auto;
}
.phone-row__num {
  font-family: var(--font-mono);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  letter-spacing: 0.02em;
  color: var(--cream);
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
}
.phone-row:hover { color: var(--brass-light); }
.phone-row:hover .phone-row__num { color: var(--brass-light); }

/* --- Marquee / trust bar ------------------------------------------------ */
.trustbar {
  padding-block: var(--space-5);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
  overflow: hidden;
}
.trustbar__track {
  display: flex;
  gap: var(--space-7);
  align-items: center;
  white-space: nowrap;
  animation: slide 38s linear infinite;
}
.trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--ink-3);
  font-variation-settings: "opsz" 72, "SOFT" 40;
}
.trustbar__item::before {
  content: "✦";
  color: var(--brass);
  font-size: 0.9em;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trustbar__track { animation: none; justify-content: center; flex-wrap: wrap; white-space: normal; }
}

/* --- Services grid ------------------------------------------------------ */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.service {
  position: relative;
  padding: var(--space-7);
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-height: 420px;
  transition: background var(--dur) var(--ease);
}
.service:hover { background: var(--cream); }
.service__num {
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--muted-2);
}
.service__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 20, "WONK" 1;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: var(--space-5);
}
.service__title em {
  font-style: italic;
  color: var(--brass-dark);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.service__desc {
  color: var(--ink-3);
  font-size: 1rem;
  line-height: 1.55;
}
.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: auto;
}
.service__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--rule-strong);
  color: var(--ink-3);
  border-radius: 999px;
}
.service__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  padding-bottom: var(--space-2);
  width: max-content;
}
.service__link:hover { color: var(--brass-dark); }
.service__link .arrow { transition: transform var(--dur) var(--ease-out); }
.service__link:hover .arrow { transform: translateX(4px); }

@media (max-width: 960px) {
  .services { grid-template-columns: 1fr; }
  .service { min-height: auto; }
}

/* --- Process (numbered) ------------------------------------------------ */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  counter-reset: step;
}
@media (max-width: 860px) { .process { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding-top: var(--space-6);
  border-top: 1px solid var(--rule);
}
.step__num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 0.9;
  color: var(--brass-dark);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-style: italic;
  margin-bottom: var(--space-4);
}
.step__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-variation-settings: "opsz" 72, "SOFT" 40;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-3);
}
.step__desc {
  color: var(--ink-3);
  max-width: 40ch;
}

/* --- Feature list (why-us) --------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-8);
}
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-top: 1px solid var(--rule);
}
.feature__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass-dark);
}
.feature__body h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
  font-variation-settings: "opsz" 72, "SOFT" 40;
}
.feature__body p { color: var(--ink-3); font-size: 0.98rem; }

/* --- Statement / Pull quote -------------------------------------------- */
.statement {
  padding-block: var(--space-9);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 0% 0%, rgba(201, 169, 97, 0.14), transparent 60%),
    radial-gradient(ellipse 500px 300px at 100% 100%, rgba(201, 169, 97, 0.08), transparent 60%);
  pointer-events: none;
}
.statement__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-7);
  align-items: center;
}
@media (max-width: 900px) { .statement__inner { grid-template-columns: 1fr; } }
.statement__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.2;
  font-variation-settings: "opsz" 72, "SOFT" 40;
  color: var(--cream);
  letter-spacing: -0.012em;
}
.statement__text em {
  font-style: italic;
  color: var(--brass-light);
  font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 1;
}

/* --- Coverage (area) ---------------------------------------------------- */
.coverage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
@media (max-width: 900px) { .coverage { grid-template-columns: 1fr; } }

.coverage__cities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.city-pill {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  color: var(--ink);
}
.city-pill--primary { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.map-card {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  border: 1px solid var(--rule);
  overflow: hidden;
  padding: var(--space-5);
}
.map-card svg { width: 100%; height: 100%; }

/* --- FAQ ---------------------------------------------------------------- */
.faq {
  max-width: 880px;
  margin-inline: auto;
}
.faq__item {
  border-top: 1px solid var(--rule);
}
.faq__item:last-child { border-bottom: 1px solid var(--rule); }
.faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-5);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-variation-settings: "opsz" 72, "SOFT" 40;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--brass-dark);
  transition: transform var(--dur) var(--ease-out);
}
.faq__item[open] .faq__summary::after { content: "−"; }
.faq__body {
  padding-bottom: var(--space-6);
  color: var(--ink-3);
  max-width: 70ch;
  line-height: 1.6;
}
.faq__body p + p { margin-top: var(--space-3); }

/* --- Contact block ------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--brass);
  transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--brass-dark);
  background: var(--cream);
}
.contact-card__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-variation-settings: "opsz" 72, "SOFT" 40;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.contact-card__phone {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--rule);
  transition: color var(--dur-fast) var(--ease);
}
.contact-card__phone:hover { color: var(--brass-dark); }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(246, 241, 231, 0.7);
  padding-block: var(--space-8) var(--space-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { color: rgba(246, 241, 231, 0.78); }
.footer-col a:hover { color: var(--brass-light); }

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--cream);
  font-variation-settings: "opsz" 72, "SOFT" 40;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-3);
}
.footer-brand em {
  font-style: italic;
  color: var(--brass-light);
  font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 1;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid var(--rule-light);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(246, 241, 231, 0.5);
}
.footer-meta a { color: rgba(246, 241, 231, 0.7); }

/* --- Mobile sticky phone bar ------------------------------------------- */
.sticky-phones {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  display: none;
  align-items: stretch;
  background: var(--ink);
  border-top: 1px solid var(--brass-dark);
  padding: var(--space-2);
  padding-bottom: max(var(--space-2), env(safe-area-inset-bottom));
  gap: var(--space-2);
  box-shadow: 0 -10px 30px -16px rgba(0,0,0,0.6);
}
.sticky-phones a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 54px;
  padding: 0.5rem 0.5rem;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.sticky-phones__main {
  background: rgba(246,241,231,0.05);
  border-color: rgba(201,169,97,0.32);
}
.sticky-phones__main:hover, .sticky-phones__main:focus {
  border-color: var(--brass);
  color: var(--brass-light);
  background: rgba(201,169,97,0.1);
}
.sticky-phones__prefix { opacity: 0.7; }
.sticky-phones__num {
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  color: var(--brass-light);
  text-transform: none;
}
@media (max-width: 720px) {
  .sticky-phones { display: flex; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
}

/* --- CTA banner --------------------------------------------------------- */
.cta-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-7);
  background: var(--cream);
  border: 1px solid var(--rule-strong);
  border-top: 4px solid var(--brass);
}
@media (max-width: 780px) { .cta-banner { grid-template-columns: 1fr; } }

.cta-banner__text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  font-variation-settings: "opsz" 72, "SOFT" 40;
  letter-spacing: -0.015em;
}
.cta-banner__text em {
  font-style: italic;
  color: var(--brass-dark);
  font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 1;
}

/* --- Checklist list ----------------------------------------------------- */
.checklist {
  display: grid;
  gap: var(--space-3);
}
.checklist li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--ink-3);
  line-height: 1.55;
}
.checklist li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brass-dark);
  font-family: var(--font-mono);
  font-weight: 600;
  line-height: 1.55;
}
.checklist--dense li { padding-block: var(--space-3); border-top: 1px solid var(--rule); padding-left: 1.75rem; }
.checklist--dense li:first-child { border-top: none; }
.checklist--dense li::before { top: var(--space-3); }
.checklist--dense li:first-child::before { top: 0; }

/* --- Two-column intro --------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: var(--space-6); } }

.two-col--aside { grid-template-columns: 0.9fr 1.1fr; }
.two-col h2 { margin-bottom: var(--space-5); }

/* --- Form --------------------------------------------------------------- */
.contact-form {
  display: grid;
  gap: var(--space-4);
}
.field {
  display: grid;
  gap: var(--space-2);
}
.field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  padding: 0.85rem 1rem;
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brass-dark);
}
.field textarea { min-height: 140px; resize: vertical; }

.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 640px) { .field--row { grid-template-columns: 1fr; } }

/* --- Page hero (subpages) ---------------------------------------------- */
.page-hero {
  padding-block: var(--space-8) var(--space-7);
  border-bottom: 1px solid var(--rule);
}
.page-hero__crumbs {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-5);
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.page-hero__crumbs a:hover { color: var(--brass-dark); }
.page-hero__crumbs span { color: var(--brass-dark); }

.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 20, "WONK" 1;
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin-bottom: var(--space-5);
}
.page-hero__title em {
  font-style: italic;
  color: var(--brass-dark);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.page-hero__lead { max-width: 60ch; font-size: var(--fs-lead); color: var(--ink-3); line-height: 1.5; }

/* --- Reveal on scroll --------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* --- Utility ------------------------------------------------------------ */
.hide-desktop { display: none; }
@media (max-width: 720px) {
  .hide-desktop { display: block; }
  .hide-mobile { display: none; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  z-index: 100;
}
.skip-link:focus { left: var(--space-3); top: var(--space-3); }

/* ==========================================================================
   v2 — Photo-forward, navy accent
   ========================================================================== */

/* Navy surface */
.surface-navy {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.surface-navy::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 80% 0%, rgba(201,169,97,0.14), transparent 60%),
    radial-gradient(ellipse 600px 400px at 0% 100%, rgba(201,169,97,0.06), transparent 60%);
  pointer-events: none;
}
.surface-navy > * { position: relative; }
.surface-navy h1, .surface-navy h2, .surface-navy h3 { color: var(--cream); }
.surface-navy h2 em, .surface-navy h3 em { color: var(--brass-light); }
.surface-navy .lead { color: rgba(246,241,231,0.78); }
.surface-navy .eyebrow { color: var(--brass-light); }
.surface-navy .eyebrow::before { background: var(--brass-light); }

/* Hero with photo background */
.hero--photo {
  padding-block: clamp(4rem, 8vw, 7rem) clamp(4rem, 8vw, 7rem);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero--photo .hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover;
  background-position: center;
}
.hero--photo .hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,17,22,0.35), rgba(14,17,22,0.82)),
    linear-gradient(90deg, rgba(14,17,22,0.72) 0%, rgba(14,17,22,0.35) 50%, rgba(14,17,22,0.65) 100%);
}
.hero--photo .hero__headline { color: var(--cream); }
.hero--photo .hero__lead { color: rgba(246,241,231,0.88); }
.hero--photo .hero__meta { border-top-color: rgba(246,241,231,0.2); }
.hero--photo .hero__meta dt { color: rgba(246,241,231,0.6); }
.hero--photo .hero__meta dd { color: var(--cream); }
.hero--photo .hero__headline em { color: var(--brass-light); }
.hero--photo .eyebrow { color: var(--brass-light); }
.hero--photo .eyebrow::before { background: var(--brass-light); }

/* Page hero with photo */
.page-hero--photo {
  padding-block: clamp(4.5rem, 8vw, 7rem) clamp(4.5rem, 8vw, 6rem);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: none;
}
.page-hero--photo .page-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover;
  background-position: center;
}
.page-hero--photo .page-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,17,22,0.35), rgba(11,41,64,0.85));
}
.page-hero--photo .page-hero__title { color: var(--cream); }
.page-hero--photo .page-hero__title em { color: var(--brass-light); }
.page-hero--photo .page-hero__lead { color: rgba(246,241,231,0.82); }
.page-hero--photo .page-hero__crumbs { color: rgba(246,241,231,0.55); }
.page-hero--photo .page-hero__crumbs a { color: rgba(246,241,231,0.78); }
.page-hero--photo .page-hero__crumbs a:hover { color: var(--brass-light); }
.page-hero--photo .page-hero__crumbs span { color: var(--brass-light); }

/* Service cards v2 — with photo */
.services--photo .service {
  padding: 0;
  background: var(--ivory);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}
.services--photo .service__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}
.services--photo .service__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.services--photo .service:hover .service__photo img { transform: scale(1.06); }
.services--photo .service__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,17,22,0.4));
}
.services--photo .service__photo-num {
  position: absolute;
  top: var(--space-4);
  left: var(--space-5);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
  padding: 0.35rem 0.7rem;
  background: rgba(14,17,22,0.55);
  border: 1px solid rgba(201,169,97,0.6);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.services--photo .service__body {
  padding: var(--space-6) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex: 1;
}
.services--photo .service__num { display: none; }

/* Photo strip (gallery) */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: var(--rule);
  border-block: 1px solid var(--rule);
}
.photo-strip__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.photo-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.6s var(--ease-out);
  filter: saturate(0.75);
}
.photo-strip__item:hover img { transform: scale(1.05); filter: saturate(1.1); }
.photo-strip__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(14,17,22,0.8));
  z-index: 1;
}
@media (max-width: 980px) { .photo-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .photo-strip { grid-template-columns: repeat(2, 1fr); } }

/* Feature callout with photo */
.feature-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.feature-photo__media {
  position: relative;
  min-height: 420px;
  background: var(--ink);
  overflow: hidden;
}
.feature-photo__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-photo__body {
  padding: var(--space-8) var(--space-7);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}
.feature-photo--reverse .feature-photo__media { order: 2; }
@media (max-width: 900px) {
  .feature-photo { grid-template-columns: 1fr; }
  .feature-photo--reverse .feature-photo__media { order: 0; }
  .feature-photo__media { min-height: 280px; }
  .feature-photo__body { padding: var(--space-6); }
}

/* Navy CTA bar */
.cta-banner--navy {
  background: var(--navy);
  border-top: 4px solid var(--brass);
  border-left: 1px solid var(--navy-2);
  border-right: 1px solid var(--navy-2);
  border-bottom: 1px solid var(--navy-2);
  color: var(--cream);
}
.cta-banner--navy .cta-banner__text { color: var(--cream); }
.cta-banner--navy .cta-banner__text em { color: var(--brass-light); }

/* Statement v2 — with photo */
.statement--photo {
  padding-block: var(--space-9);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.statement--photo .statement__bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.4) brightness(0.45);
}
.statement--photo::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,17,22,0.3), rgba(11,41,64,0.7)),
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(201,169,97,0.18), transparent 55%);
  z-index: 0;
  pointer-events: none;
}
.statement--photo > * { position: relative; z-index: 1; }

/* Number cards (stats) */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.stat {
  padding: var(--space-6) var(--space-5);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.95;
  color: var(--brass-dark);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-style: italic;
  margin-bottom: var(--space-3);
}
.stat__label {
  color: var(--ink-3);
  font-size: 0.95rem;
  max-width: 28ch;
}
@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
}
@media (max-width: 520px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; }
}

/* Media ratio helper */
.ratio-16x9 { aspect-ratio: 16 / 9; overflow: hidden; }
.ratio-3x4 { aspect-ratio: 3 / 4; overflow: hidden; }
.ratio-1x1 { aspect-ratio: 1 / 1; overflow: hidden; }

/* Brass accent badge */
.badge-brass {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* Logo strip section header */
.section-head--center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-7);
}
.section-head--center .eyebrow { justify-content: center; }

/* ==========================================================================
   v3 — Car-first cinematic upgrade
   ========================================================================== */

/* Cinematic hero (car-focused) */
.hero--cinematic {
  padding-block: clamp(5rem, 10vw, 9rem) clamp(4rem, 8vw, 7rem);
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero--cinematic .hero__bg {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.hero--cinematic .hero__bg::after {
  background:
    linear-gradient(180deg, rgba(14,17,22,0.45) 0%, rgba(14,17,22,0.85) 100%),
    linear-gradient(110deg, rgba(14,17,22,0.85) 0%, rgba(14,17,22,0.35) 55%, rgba(11,41,64,0.75) 100%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 1000px 600px at 80% 10%, rgba(201,169,97,0.18), transparent 55%),
    radial-gradient(ellipse 800px 500px at 10% 100%, rgba(201,169,97,0.1), transparent 55%);
  mix-blend-mode: screen;
  z-index: 0;
}

.hero__cinema { position: relative; z-index: 1; max-width: 920px; }

.hero__mega {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin-block: var(--space-5) var(--space-6);
}
.hero__mega em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--brass-light);
}
.hero__mega-sub {
  display: inline-block;
  font-size: 0.42em;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--brass-light);
  letter-spacing: -0.01em;
  margin-top: 0.2em;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(201,169,97,0.4);
  width: max-content;
  max-width: 100%;
}

.hero__lead-big {
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.5;
  color: rgba(246,241,231,0.88);
  max-width: 62ch;
  margin-bottom: var(--space-7);
}

/* Phone block — centerpiece of hero */
.hero__phone-block {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: stretch;
  margin-bottom: var(--space-6);
}
.hero__phone-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  color: var(--ink);
  border-radius: var(--radius-lg);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  box-shadow: 0 20px 50px -20px rgba(201,169,97,0.5);
  position: relative;
  overflow: hidden;
}
.hero__phone-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.9s var(--ease-out);
}
.hero__phone-cta:hover::before { transform: translateX(100%); }
.hero__phone-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 70px -20px rgba(201,169,97,0.7);
}
.hero__phone-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(14,17,22,0.7);
  position: relative;
}
.hero__phone-num {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  font-variation-settings: "opsz" 72, "SOFT" 40, "WONK" 1;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
  margin: 0.3rem 0;
  position: relative;
}
.hero__phone-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(14,17,22,0.6);
  position: relative;
}
.hero__secondary-cta { align-self: stretch; display: inline-flex; align-items: center; }

.hero__meta--big {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  padding-top: var(--space-6);
  margin-top: 0;
  border-top: 1px solid rgba(246,241,231,0.22);
}
.hero__meta--big dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.55);
  margin-bottom: var(--space-2);
}
.hero__meta--big dd {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  color: var(--cream);
  font-variation-settings: "opsz" 72, "SOFT" 40, "WONK" 1;
  font-style: italic;
  line-height: 1;
}
@media (max-width: 780px) {
  .hero__meta--big { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
}

/* Brand ticker */
.brand-ticker {
  background: var(--ink);
  color: var(--cream);
  padding-block: var(--space-5);
  border-block: 1px solid rgba(201,169,97,0.25);
  overflow: hidden;
  position: relative;
}
.brand-ticker::before,
.brand-ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.brand-ticker::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.brand-ticker::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.brand-ticker__track {
  display: flex;
  gap: 3rem;
  align-items: center;
  white-space: nowrap;
  animation: tickerSlide 48s linear infinite;
  width: max-content;
}
.brand-ticker__track span {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  font-variation-settings: "opsz" 72, "SOFT" 40;
  color: rgba(246,241,231,0.65);
  letter-spacing: -0.01em;
  transition: color var(--dur-fast) var(--ease);
}
.brand-ticker__track span:hover { color: var(--brass-light); }
@keyframes tickerSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-ticker__track { animation: none; flex-wrap: wrap; justify-content: center; white-space: normal; }
}

/* Primary service (large, asymmetric) */
.primary-service {
  padding-block: var(--space-9);
}
.primary-service__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
@media (max-width: 960px) {
  .primary-service__grid { grid-template-columns: 1fr; }
}
.primary-service__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: 0 40px 80px -30px rgba(14,17,22,0.45);
}
.primary-service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.primary-service__media:hover img { transform: scale(1.06); }
.primary-service__chip {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: 0.45rem 0.95rem;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 600;
  z-index: 2;
}

.primary-service__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-block: var(--space-5) var(--space-6);
}
.chip {
  padding: 0.5rem 1rem;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--ink-3);
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.chip:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.primary-service__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Stats hero block (big numbers) */
.stats-hero { padding-block: var(--space-8); position: relative; overflow: hidden; }
.stats-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 0%, rgba(201,169,97,0.12), transparent 60%),
    radial-gradient(ellipse 800px 500px at 90% 100%, rgba(11,41,64,0.5), transparent 60%);
  pointer-events: none;
}
.stats-hero__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
.stats-hero__item {
  padding-block: var(--space-4);
  border-top: 1px solid rgba(201,169,97,0.3);
}
.stats-hero__num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  color: var(--brass-light);
  line-height: 0.95;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 0.15em;
}
.stats-hero__num span {
  font-size: 0.35em;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  color: rgba(201,169,97,0.7);
  text-transform: uppercase;
  font-style: normal;
}
.stats-hero__label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,241,231,0.7);
  margin-top: var(--space-3);
  max-width: 22ch;
}
@media (max-width: 900px) { .stats-hero__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats-hero__grid { grid-template-columns: 1fr; gap: var(--space-4); } }

/* Cinematic statement v2 */
.statement--cinematic .statement__bg {
  filter: brightness(0.4) contrast(1.15);
}
.statement--cinematic::before {
  background:
    linear-gradient(180deg, rgba(14,17,22,0.5), rgba(14,17,22,0.85)),
    radial-gradient(ellipse 800px 500px at 20% 50%, rgba(201,169,97,0.2), transparent 50%);
}
.statement--cinematic .statement__text {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

/* Secondary services */
.secondary-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
@media (max-width: 860px) { .secondary-services { grid-template-columns: 1fr; } }

.sec-service {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--ivory);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.sec-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(14,17,22,0.25);
}
.sec-service__photo {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: var(--ink);
}
.sec-service__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.sec-service:hover .sec-service__photo img { transform: scale(1.05); }
.sec-service__body {
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  justify-content: center;
}
.sec-service__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dark);
}
.sec-service__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-variation-settings: "opsz" 72, "SOFT" 40, "WONK" 1;
  letter-spacing: -0.01em;
}
.sec-service__body p { color: var(--ink-3); font-size: 0.96rem; line-height: 1.55; }

/* Contact hero (single phone) */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
@media (max-width: 860px) { .contact-hero { grid-template-columns: 1fr; } }
.contact-hero__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-7);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--brass);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  box-shadow: 0 30px 60px -30px rgba(14,17,22,0.45);
  position: relative;
  overflow: hidden;
}
.contact-hero__card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 500px 300px at 100% 0%, rgba(201,169,97,0.16), transparent 60%);
  pointer-events: none;
}
.contact-hero__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -30px rgba(14,17,22,0.55);
}
.contact-hero__card > * { position: relative; }
.contact-hero__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
}
.contact-hero__num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-block: var(--space-3);
}
.contact-hero__sub {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(246,241,231,0.7);
}

/* Single-line sticky phone (mobile) */
.sticky-phones--single a { border: 0; }
.sticky-phones--single .sticky-phones__main {
  flex: 1;
  flex-direction: row;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.8rem 1rem;
  background: var(--brass);
  color: var(--ink);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 1;
}
.sticky-phones--single .sticky-phones__prefix {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(14,17,22,0.7);
  font-style: normal;
}
.sticky-phones--single .sticky-phones__num {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 600;
}

/* ==========================================================================
   v4 — City landing pages
   ========================================================================== */

.city-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
@media (max-width: 900px) { .city-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .city-cards-grid { grid-template-columns: 1fr; } }

.city-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.25rem var(--space-3);
  align-items: center;
  padding: var(--space-5);
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--brass);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  text-decoration: none;
  color: var(--ink);
}
.city-card:hover {
  transform: translateY(-3px);
  background: var(--ink);
  color: var(--cream);
  border-color: var(--brass);
  border-left-color: var(--brass-light);
}
.city-card__label {
  grid-column: 1;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-dark);
  transition: color var(--dur-fast) var(--ease);
}
.city-card:hover .city-card__label { color: var(--brass-light); }
.city-card__city {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-variation-settings: "opsz" 72, "SOFT" 40, "WONK" 1;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.01em;
}
.city-card__arrow {
  grid-column: 2;
  grid-row: 1 / -1;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--brass-dark);
  transition: transform var(--dur) var(--ease-out), color var(--dur-fast) var(--ease);
}
.city-card:hover .city-card__arrow {
  transform: translateX(5px);
  color: var(--brass-light);
}

/* ======================================================================== */
/* PREMIUM UPGRADES — added 2026                                            */
/* ======================================================================== */

/* <picture> wrappers must not affect layout (img keeps existing styles) */
picture { display: contents; }

/* --- Clickable city pills (homepage coverage) --------------------------- */
a.city-pill--link {
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
a.city-pill--link:hover,
a.city-pill--link:focus-visible {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
  transform: translateY(-2px);
}
a.city-pill--link.city-pill--primary:hover,
a.city-pill--link.city-pill--primary:focus-visible {
  background: var(--brass);
  color: var(--ink);
}

/* --- Form status message (Web3Forms inline) ----------------------------- */
[data-form-status] {
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.55;
  border: 1px solid var(--rule);
}
[data-form-status][data-state="ok"] {
  background: rgba(201, 169, 97, 0.12);
  border-color: var(--brass);
  color: var(--ink);
}
[data-form-status][data-state="err"] {
  background: rgba(150, 40, 40, 0.08);
  border-color: rgba(150, 40, 40, 0.5);
  color: #7a2222;
}

/* --- Instant valuation widget ------------------------------------------- */
.quote-section { scroll-margin-top: 90px; }
.quote-widget {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
  padding: var(--space-8);
  background: var(--cream);
  border: 1px solid var(--rule-strong);
  border-top: 4px solid var(--brass);
}
.quote-widget__form {
  display: grid;
  gap: var(--space-4);
  background: #fff;
  padding: var(--space-7);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
}
.quote-widget__consent {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.5;
}
.quote-widget__consent input { margin-top: 0.25rem; }
.quote-widget__consent a { color: var(--brass-dark); text-decoration: underline; }
@media (max-width: 900px) {
  .quote-widget { grid-template-columns: 1fr; gap: var(--space-7); padding: var(--space-6); }
}
@media (max-width: 520px) {
  .quote-widget { padding: var(--space-5); }
  .quote-widget__form { padding: var(--space-5); }
}

/* --- Sticky bar: phone + WhatsApp --------------------------------------- */
.sticky-phones__main { flex: 1 1 auto; }
.sticky-phones__wa {
  flex: 0 0 auto !important;
  flex-direction: row !important;
  gap: 0.5rem !important;
  min-width: 148px;
  padding-inline: 1.1rem !important;
  background: #1FA855;
  color: #ffffff !important;
  border-color: #178a44 !important;
  font-weight: 700;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
}
.sticky-phones__wa svg { width: 22px; height: 22px; flex-shrink: 0; }
.sticky-phones__wa:hover,
.sticky-phones__wa:focus {
  background: #25c062;
  color: #ffffff !important;
  border-color: #25c062 !important;
}

/* --- Cohesive photo grading (restrained, premium) ----------------------- */
.primary-service__media img,
.sec-service__photo img,
.photo-strip__item img {
  filter: saturate(0.94) contrast(1.04) brightness(0.99);
}
.primary-service__media,
.sec-service__photo { position: relative; }
.primary-service__media::after,
.sec-service__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(155deg, rgba(201,169,97,0.10), rgba(14,17,22,0.05) 60%);
  mix-blend-mode: multiply;
}

/* --- Micro-interactions ------------------------------------------------- */
html { scroll-behavior: smooth; }
.btn, .hero__phone-cta, .contact-hero__card { will-change: transform; }
[data-magnetic] { transition: transform .18s cubic-bezier(.2,.7,.3,1); }
.hero__bg, .page-hero__bg { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-magnetic] { transition: none !important; transform: none !important; }
  .hero__bg, .page-hero__bg { transform: none !important; }
}
