/* =========================================================
   NEXT LEVEL PRO BUILDER — site stylesheet
   Editorial premium · New England deck specialist
   ========================================================= */

/* ---------- 1. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- 2. DESIGN TOKENS ---------- */
:root {
  /* Palette — matches logo */
  --black: #0A0A0A;
  --black-soft: #121212;
  --black-elev: #161616;
  --chrome-1: #E8E8E8;
  --chrome-2: #C8C8C8;
  --chrome-3: #A0A0A0;
  --orange: #F2701D;
  --orange-deep: #C45710;
  --orange-soft: rgba(242, 112, 29, 0.12);
  --gray: #9CA3AF;
  --gray-2: #6B7280;
  --offwhite: #F2F2F2;
  --line: rgba(232, 232, 232, 0.10);
  --line-strong: rgba(232, 232, 232, 0.18);

  /* Typography */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Spacing — 8pt grid */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --space-16: 8rem;

  /* Layout */
  --max-w: 1320px;
  --max-w-text: 720px;
  --radius: 4px;
  --radius-lg: 10px;

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

/* ---------- 3. BASE ---------- */
html, body {
  background: var(--black);
  color: var(--offwhite);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); line-height: 1.15; }
h4 { font-size: 1.1rem; line-height: 1.25; }

p { color: var(--offwhite); max-width: 64ch; }
.muted { color: var(--gray); }

::selection { background: var(--orange); color: var(--black); }

/* ---------- 4. UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}
.section {
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}
.section--tight { padding-top: clamp(3rem, 5vw, 4.5rem); padding-bottom: clamp(3rem, 5vw, 4.5rem); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--orange);
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--gray);
  max-width: 58ch;
  line-height: 1.55;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset, 0 18px 40px -20px rgba(242, 112, 29, 0.55);
}
.btn--primary:hover {
  background: #FF8736;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--offwhite);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--offwhite);
  background: rgba(255, 255, 255, 0.03);
}
.btn--phone {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0;
}
.btn .arrow {
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- 6. HEADER / NAV ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(10, 10, 10, 0.0);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom-color: var(--line);
  padding: 0.7rem 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  height: 64px;
  width: auto;
  transition: height 0.3s var(--ease);
}
.header.is-scrolled .brand img { height: 52px; }
.nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--chrome-1);
  position: relative;
  transition: color 0.25s ease;
}
.nav a:hover { color: var(--orange); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.header__cta { display: inline-flex; gap: 0.8rem; align-items: center; }
.header__phone {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--offwhite);
  letter-spacing: 0;
}
.header__phone:hover { color: var(--orange); }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 9px; right: 9px;
  height: 1.5px;
  background: var(--offwhite);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease), opacity 0.2s ease;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 26px; }
.menu-toggle.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 920px) {
  .nav, .header__cta .btn { display: none; }
  .menu-toggle { display: block; }
  .nav.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 90;
  }
  .nav.is-open a { font-family: var(--font-display); font-size: 2rem; }
}

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 8rem;
  padding-bottom: 6rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.15) 35%, rgba(10, 10, 10, 0.85) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.25) 60%, rgba(10, 10, 10, 0) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  max-width: 760px;
}
.hero__eyebrow { margin-bottom: 1.8rem; }
.hero__title {
  font-size: clamp(2.7rem, 6.8vw, 5.4rem);
  letter-spacing: -0.025em;
  line-height: 0.98;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero__title em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero__sub {
  margin-top: 1.6rem;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--chrome-1);
  max-width: 56ch;
  line-height: 1.5;
}
.hero__cta {
  margin-top: 2.4rem;
  display: flex; flex-wrap: wrap; gap: 0.9rem 1.4rem;
  align-items: center;
}
.hero__phone {
  display: inline-flex; flex-direction: column;
  font-family: var(--font-sans);
}
.hero__phone .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero__phone .num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--offwhite);
  margin-top: 2px;
  letter-spacing: 0;
}
.hero__phone:hover .num { color: var(--orange); }

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.hero__scroll .line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gray) 50%, transparent 50%);
  background-size: 1px 8px;
  animation: scroll-tick 2s linear infinite;
}
@keyframes scroll-tick {
  to { background-position: 0 12px; }
}

/* ---------- 8. TRUST STRIP ---------- */
.trust {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.4rem;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--chrome-1);
  font-weight: 500;
}
.trust__item::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.trust__sep {
  width: 1px; height: 16px;
  background: var(--line-strong);
  display: inline-block;
}

/* ---------- 9. SECTION HEADERS ---------- */
.sec-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  max-width: var(--max-w-text);
}
.sec-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.025em;
}
.sec-head h2 em {
  font-style: italic;
  color: var(--orange);
}
.sec-head__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 100%;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
@media (min-width: 900px) {
  .sec-head__split {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 3rem;
  }
  .sec-head__split .lede { justify-self: end; }
}

/* ---------- 10. SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s ease;
}
.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.service-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.04); }
.service-card__body {
  padding: 1.8rem 1.6rem 2rem;
  display: flex; flex-direction: column; flex: 1;
}
.service-card__index {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}
.service-card h3 {
  font-size: 1.55rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 0.94rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  flex: 1;
}
.service-card__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--offwhite);
  display: inline-flex; align-items: center; gap: 0.45rem;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.5rem;
  align-self: flex-start;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.service-card__link:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.service-card__link .arrow { transition: transform 0.3s var(--ease); }
.service-card:hover .service-card__link .arrow { transform: translateX(4px); }

/* ---------- 11. PROCESS ---------- */
.process {
  background:
    radial-gradient(ellipse at top right, rgba(242, 112, 29, 0.06), transparent 50%),
    var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media (min-width: 720px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; }
}
@media (min-width: 1100px) {
  .process-grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
}
.step {
  position: relative;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-strong);
}
.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 1.2rem;
}
.step__icon {
  width: 48px; height: 48px;
  margin-bottom: 1.4rem;
}
.step__icon svg { width: 100%; height: 100%; }
.step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ---------- 12. WHY US ---------- */
.why {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 980px) {
  .why { grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem; }
}
.why__list {
  display: flex;
  flex-direction: column;
}
.why__item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: start;
}
.why__item:first-child { border-top: 1px solid var(--line-strong); }
.why__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--orange);
  letter-spacing: 0.05em;
  padding-top: 0.3rem;
}
.why__item h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}
.why__item p {
  color: var(--gray);
  font-size: 0.96rem;
  line-height: 1.6;
}
.why__owner {
  position: relative;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
}
.why__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--offwhite);
}
.why__quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--orange);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.2rem;
}
.why__attribution {
  display: flex; align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.why__attribution strong {
  color: var(--offwhite);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
}
.why__attribution span {
  color: var(--gray);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-top: 2px;
}
.why__partners {
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  align-items: center;
}
.why__partners span:first-child {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}
.partner-pill {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--chrome-1);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
}

/* ---------- 13. GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(220px, auto);
  }
}
@media (min-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 220px;
    gap: 0.9rem;
  }
  .gallery-item--lg { grid-column: span 4; grid-row: span 2; }
  .gallery-item--md { grid-column: span 2; grid-row: span 1; }
  .gallery-item--wide { grid-column: span 3; grid-row: span 1; }
  .gallery-item--tall { grid-column: span 2; grid-row: span 2; }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-soft);
  aspect-ratio: 4 / 3;
}
@media (min-width: 980px) {
  .gallery-item { aspect-ratio: auto; }
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__caption {
  position: absolute;
  left: 1.2rem; bottom: 1.2rem; right: 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--offwhite);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease);
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .gallery-item__caption { opacity: 1; transform: none; }

.gallery-note {
  margin-top: 2.2rem;
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
  font-style: italic;
  font-family: var(--font-display);
}

/* ---------- 14. TESTIMONIALS ---------- */
.testimonials {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 800px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
}
.testimonial__stars {
  display: flex; gap: 4px;
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.testimonial__stars[data-empty="true"] {
  color: var(--gray-2);
}
.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--chrome-1);
  flex: 1;
}
.testimonial__placeholder {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.5;
  flex: 1;
}
.testimonial__author {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--offwhite);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.testimonial__author span {
  display: block;
  color: var(--gray);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-top: 2px;
}
.testimonial__honest {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
}

/* ---------- 15. SERVICE AREA / MAP ---------- */
.area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 980px) {
  .area { grid-template-columns: 0.85fr 1fr; gap: 4rem; }
}
.area__map {
  background:
    radial-gradient(ellipse at center, rgba(242, 112, 29, 0.06), transparent 60%),
    var(--black-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.area__map svg { width: 100%; height: auto; }
.area__states {
  display: flex; flex-direction: column;
}
.area-state {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-strong);
}
.area-state:first-child { border-top: 1px solid var(--line-strong); }
.area-state__abbr {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--offwhite);
  letter-spacing: 0;
  width: 56px;
}
.area-state__name {
  font-size: 1.05rem;
  color: var(--offwhite);
  letter-spacing: 0.01em;
}
.area-state__status {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.area-state--active .area-state__abbr { color: var(--orange); }
.area-state--active .area-state__status { color: var(--orange); }
.area-state--soon .area-state__status { color: var(--gray); }

/* ---------- 16. FINANCING ---------- */
.financing {
  background:
    linear-gradient(135deg, rgba(242, 112, 29, 0.08), rgba(242, 112, 29, 0) 60%),
    var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.financing__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: center;
}
@media (min-width: 800px) {
  .financing__inner { grid-template-columns: 1fr auto; gap: 2.4rem; }
}
.financing h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
}
.financing h3 em { font-style: italic; color: var(--orange); }
.financing p {
  color: var(--gray);
  margin-top: 0.7rem;
  font-size: 0.96rem;
}

/* ---------- 17. CTA / FORM ---------- */
.cta {
  background: var(--black);
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .cta__inner { grid-template-columns: 1fr 1.1fr; gap: 4.5rem; }
}
.cta__title {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 1.6rem;
}
.cta__title em {
  font-style: italic;
  color: var(--orange);
}
.cta__lede {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 2rem;
}
.cta__contact {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.cta__contact-item {
  display: flex;
  flex-direction: column;
}
.cta__contact-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.4rem;
}
.cta__contact-item a, .cta__contact-item span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--offwhite);
  letter-spacing: 0;
}
.cta__contact-item a:hover { color: var(--orange); }

/* Form */
.form {
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
@media (min-width: 600px) {
  .form__row--2 { grid-template-columns: 1fr 1fr; }
}
.form__field {
  display: flex; flex-direction: column;
}
.form__field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}
.form__field input,
.form__field select,
.form__field textarea {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--offwhite);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(242, 112, 29, 0.04);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__submit {
  width: 100%;
  padding: 1.05rem 1.6rem;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}
.form__legal {
  font-size: 0.75rem;
  color: var(--gray-2);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}
.form__success {
  display: none;
  padding: 1.6rem;
  border: 1px solid var(--orange);
  background: var(--orange-soft);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--offwhite);
  text-align: center;
  margin-top: 1rem;
}
.form__success.is-visible { display: block; }

/* ---------- 18. FOOTER ---------- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 800px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; }
}
.footer__brand img {
  height: 88px;
  width: auto;
  margin-bottom: 1.4rem;
}
.footer__brand p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 36ch;
}
.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer a {
  font-size: 0.92rem;
  color: var(--chrome-1);
  transition: color 0.25s ease;
}
.footer a:hover { color: var(--orange); }
.footer__hours {
  font-size: 0.92rem;
  color: var(--chrome-1);
  line-height: 1.7;
}
.footer__social {
  display: flex; gap: 0.8rem;
  margin-top: 1.2rem;
}
.footer__social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.footer__social a:hover {
  border-color: var(--orange);
  background: var(--orange-soft);
}
.footer__social svg { width: 16px; height: 16px; fill: var(--chrome-1); }
.footer__social a:hover svg { fill: var(--orange); }

.footer__legal {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.6rem;
  font-size: 0.78rem;
  color: var(--gray-2);
  letter-spacing: 0.05em;
}

/* ---------- 19. ACCESSIBILITY / FOCUS ---------- */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: var(--orange);
  color: var(--black);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 200;
  border-radius: var(--radius);
}
.skip-link:focus {
  left: 1rem;
}
