/* ============================================
   JCC Restoration — Premium Redesign v2
   Cinematic · Photo-rich · Navy + Safety Orange
   ============================================ */

:root {
  --navy-950: #040b14;
  --navy-900: #0a1628;
  --navy-800: #12233a;
  --navy-700: #1a3352;
  --navy-600: #24456b;
  --blue-500: #1d6fb8;
  --blue-400: #2b8fd4;
  --orange-600: #e05a00;
  --orange-500: #f06a0a;
  --orange-400: #ff8533;
  --orange-300: #ffb347;
  --orange-100: #fff1e6;
  --sand-50: #f6f3ee;
  --sand-100: #ebe6de;
  --white: #ffffff;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(4, 11, 20, 0.06);
  --shadow: 0 8px 30px rgba(4, 11, 20, 0.1);
  --shadow-lg: 0 20px 50px rgba(4, 11, 20, 0.16);
  --shadow-xl: 0 30px 80px rgba(4, 11, 20, 0.28);
  --shadow-glow: 0 10px 40px rgba(240, 106, 10, 0.4);

  --header-h: 76px;
  --emergency-h: 42px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--emergency-h) + 12px);
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body { padding-bottom: 76px; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.25rem; }
h4 {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
  font-weight: 600;
}

p { max-width: 58ch; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.text-gradient {
  background: linear-gradient(115deg, var(--orange-400) 0%, var(--orange-300) 40%, #ffe0a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange-600);
  margin-top: 1rem;
  transition: gap 0.2s var(--ease), color 0.2s;
}

.text-link:hover { gap: 0.6rem; color: var(--orange-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, #ff8a2b 0%, var(--orange-500) 45%, var(--orange-600) 100%);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  box-shadow: 0 14px 44px rgba(240, 106, 10, 0.5);
}

.btn--glow {
  animation: btnPulse 2.8s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 10px 40px rgba(240, 106, 10, 0.35); }
  50% { box-shadow: 0 10px 48px rgba(240, 106, 10, 0.55), 0 0 0 6px rgba(240, 106, 10, 0.12); }
}

.btn--outline {
  background: transparent;
  border-color: rgba(10, 22, 40, 0.15);
  color: var(--navy-900);
}

.btn--outline:hover {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy-900);
  border-color: transparent;
}

.btn--ghost {
  background: transparent;
  color: var(--navy-900);
}

.btn--ghost:hover { background: var(--sand-100); }

.btn--lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Emergency bar ---------- */
.emergency-bar {
  background: linear-gradient(90deg, var(--navy-950), #0d1f35 50%, var(--navy-950));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  height: var(--emergency-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.emergency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  text-align: center;
}

.emergency-bar__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.emergency-bar__phone {
  color: var(--orange-400);
  font-weight: 700;
  font-family: var(--font-display);
}

.emergency-bar__phone:hover { color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: var(--emergency-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
  height: var(--header-h);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(4, 11, 20, 0.08);
  border-bottom-color: rgba(10, 22, 40, 0.06);
  background: rgba(255, 255, 255, 0.96);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.logo__mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, #152a45, var(--navy-950));
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 133, 51, 0.45),
    0 8px 20px rgba(4, 11, 20, 0.25);
  position: relative;
  overflow: hidden;
}

.logo__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 50%);
}

.logo__jcc {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--orange-400);
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}

.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-900);
}
.logo__tag { font-size: 0.72rem; color: var(--slate-500); font-weight: 500; }

.nav { display: none; align-items: center; gap: 0.1rem; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate-600);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
}
.nav a:hover { color: var(--navy-900); background: var(--sand-100); }
.nav__cta-mobile { display: none !important; }
.header__actions { display: flex; align-items: center; gap: 0.5rem; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--sand-100);
  border-radius: 12px;
  cursor: pointer;
  padding: 11px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .btn--phone { display: inline-flex; }
}

@media (max-width: 1023px) {
  .btn--phone { display: none; }
  .header-estimate { display: none; }
  .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: calc(var(--emergency-h) + var(--header-h));
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - var(--emergency-h) - var(--header-h) - 78px);
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 0.75rem 1rem 1.1rem;
    gap: 0.15rem;
    border-bottom: 1px solid var(--sand-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s, visibility 0.35s;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav .menu,
  .nav .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 0;
  }
  .nav a {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1.05rem;
  }
  .nav__cta-mobile {
    display: flex !important;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white) !important;
    justify-content: center;
    border-radius: 999px;
  }
}

/* ---------- Cinematic Hero ---------- */
.hero--cinematic {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 6.5rem);
  overflow: hidden;
  color: var(--white);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(4, 11, 20, 0.92) 0%, rgba(4, 11, 20, 0.78) 42%, rgba(4, 11, 20, 0.45) 70%, rgba(4, 11, 20, 0.55) 100%),
    linear-gradient(to top, rgba(4, 11, 20, 0.75) 0%, transparent 40%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
}

.hero--cinematic h1 { color: var(--white); }
.hero--cinematic .hero__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
  margin: 1.25rem 0 1.85rem;
  max-width: 38ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 1rem;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(240, 106, 10, 0.2);
}

.eyebrow--on-dark,
.eyebrow--light { color: var(--orange-300); }

.eyebrow--on-dark .eyebrow__dot,
.eyebrow--light .eyebrow__dot {
  background: var(--orange-400);
  box-shadow: 0 0 0 4px rgba(255, 133, 51, 0.25);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__proof--glass li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 0.85rem 1.1rem;
  min-width: 130px;
}

.hero__proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
}

.hero__proof span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero__card {
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  padding: 1.85rem 1.75rem 1.6rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.hero__card-shine {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(240, 106, 10, 0.4), transparent 68%);
  pointer-events: none;
}

.hero__card-badge {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero__card h2 {
  color: var(--white);
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.hero__card > p {
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.68);
  position: relative;
}

.hero__card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.meta-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.2rem;
}

.meta-value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.hero__card-checks {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
}

.hero__card-checks li {
  font-size: 0.9rem;
  padding-left: 1.4rem;
  position: relative;
  color: rgba(255, 255, 255, 0.82);
}

.hero__card-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange-400);
  font-weight: 700;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

@media (min-width: 900px) {
  .hero__scroll { display: flex; }
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0.4); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0.4); transform-origin: bottom; }
}

/* ---------- Trust strip ---------- */
.trust-strip--rich {
  background: var(--white);
  border-bottom: 1px solid var(--sand-100);
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 -20px 40px rgba(4, 11, 20, 0.15);
  margin-top: -1px;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

@media (min-width: 900px) {
  .trust-strip__inner { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--orange-100), #ffe4cc);
  color: var(--orange-600);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.trust-icon svg { width: 20px; height: 20px; }

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--navy-900);
  font-weight: 700;
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--slate-500);
  line-height: 1.35;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  position: relative;
}

.section--alt { background: var(--sand-50); }

.section__header {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section__header--center {
  text-align: center;
  margin-inline: auto;
  max-width: 700px;
}

.section__header--center .section__lead {
  margin-inline: auto;
}

.section__header--light h2 { color: var(--white); }

.section__lead {
  margin-top: 0.9rem;
  color: var(--slate-600);
  font-size: 1.1rem;
}

.section__header--light .section__lead {
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Story band ---------- */
.story-band {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(240, 106, 10, 0.06), transparent),
    radial-gradient(ellipse 40% 50% at 100% 50%, rgba(29, 111, 184, 0.06), transparent),
    var(--white);
}

.story-band__grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 900px) {
  .story-band__grid {
    grid-template-columns: 1fr 1.05fr 1fr;
    gap: 1.5rem;
  }
}

.story-band__shot {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.story-band__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.story-band__shot:hover img { transform: scale(1.06); }

.story-band__shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(4, 11, 20, 0.85), transparent);
  color: var(--white);
}

.story-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-300);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.story-band__shot strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.story-band__copy {
  padding: 1rem 0.5rem;
  text-align: center;
}

@media (min-width: 900px) {
  .story-band__copy { text-align: left; padding: 0 0.5rem; }
}

.story-band__copy h2 { margin-bottom: 0.85rem; }
.story-band__copy p { color: var(--slate-600); margin-inline: auto; }
@media (min-width: 900px) {
  .story-band__copy p { margin-inline: 0; }
}

@media (max-width: 899px) {
  .story-band__shot { aspect-ratio: 16/10; max-height: 280px; }
}

/* ---------- Services bento ---------- */
.section--services {
  background: linear-gradient(180deg, var(--sand-50) 0%, var(--white) 40%, var(--sand-50) 100%);
}

.services-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .services-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(240px, auto);
  }
}

@media (min-width: 1000px) {
  .services-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 260px;
  }
  .bento-card--lg {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.services-also {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--slate-500);
}
.services-also a {
  color: var(--slate-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.services-also a:hover { color: var(--orange-600); }

.bento-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  isolation: isolate;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.bento-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  z-index: 0;
}

.bento-card:hover .bento-card__img { transform: scale(1.08); }

.bento-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 11, 20, 0.92) 0%, rgba(4, 11, 20, 0.35) 55%, rgba(4, 11, 20, 0.15) 100%);
  z-index: 1;
  transition: background 0.3s;
}

.bento-card:hover .bento-card__overlay {
  background: linear-gradient(to top, rgba(4, 11, 20, 0.95) 0%, rgba(4, 11, 20, 0.45) 55%, rgba(4, 11, 20, 0.2) 100%);
}

.bento-card__body {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  color: var(--white);
}

.bento-card__body h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.bento-card__body p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.75rem;
  max-width: 40ch;
}

.bento-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--orange-300), var(--orange-400));
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
}

.bento-card__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--orange-300);
}

.bento-card--solid {
  background: linear-gradient(155deg, var(--navy-800), var(--navy-950));
  border: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: center;
}

.bento-card--solid .bento-card__body { padding-top: 2rem; }

.bento-card--accent {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(240, 106, 10, 0.35), transparent 50%),
    linear-gradient(155deg, #1a2a42, var(--navy-950));
}

.bento-card__icon-wrap {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(240, 106, 10, 0.15);
  color: var(--orange-400);
  display: grid;
  place-items: center;
  z-index: 2;
}

.bento-card__icon-wrap svg { width: 28px; height: 28px; }

/* Legacy service cards (other pages) */
.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(145deg, var(--orange-100), #ffe8d4);
  color: var(--orange-600); display: grid; place-items: center;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card p { font-size: 0.95rem; color: var(--slate-600); flex: 1; }
.service-card__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange-600);
}

/* ---------- Process ---------- */
.section--process {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.section--process h2 { color: var(--white); }
.section--process .section__lead { color: rgba(255, 255, 255, 0.6); }

.process-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 30%, rgba(240, 106, 10, 0.12), transparent),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(29, 111, 184, 0.1), transparent);
  pointer-events: none;
}

.process--rich {
  display: grid;
  gap: 1rem;
  position: relative;
}

@media (min-width: 768px) {
  .process--rich { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .process--rich { grid-template-columns: repeat(4, 1fr); }
}

.process__step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  position: relative;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}

.process__step:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(240, 106, 10, 0.35);
  transform: translateY(-4px);
}

.process__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  background: linear-gradient(180deg, var(--orange-300), var(--orange-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.process__icon {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
  filter: grayscale(0.2);
}

.process__step h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.process__step p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
}

/* ---------- Why ---------- */
.section--why {
  background: var(--white);
}

.why-grid--rich {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .why-grid--rich {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.why-visual {
  position: relative;
}

.why-visual__main {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.why-visual__float {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  bottom: 1.5rem;
  left: 1.25rem;
  max-width: 200px;
  animation: floatY 4s ease-in-out infinite;
}

.why-visual__float--2 {
  bottom: auto;
  top: 1.5rem;
  left: auto;
  right: 1rem;
  animation-delay: 1.2s;
  max-width: 190px;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.why-visual__float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy-900);
  color: var(--orange-600);
}

.why-visual__float span {
  font-size: 0.8rem;
  color: var(--slate-600);
  line-height: 1.3;
}

.why-content p {
  margin-bottom: 1rem;
  color: var(--slate-600);
}

.check-list {
  margin: 1.5rem 0 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.check-list li {
  padding-left: 1.85rem;
  position: relative;
  font-weight: 500;
  color: var(--navy-800);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--orange-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23e05a00' stroke-width='2.5'%3E%3Cpath d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Stats ribbon ---------- */
.stats-ribbon {
  background: linear-gradient(90deg, var(--navy-900), #152a48, var(--navy-900));
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 133, 51, 0.2);
  border-bottom: 1px solid rgba(255, 133, 51, 0.2);
}

.stats-ribbon__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .stats-ribbon__inner { grid-template-columns: repeat(4, 1fr); }
}

.stat-pill {
  text-align: center;
  padding: 0.5rem;
}

.stat-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange-300), var(--orange-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.stat-pill span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-display);
  font-weight: 500;
}

/* ---------- Reviews ---------- */
.section--reviews {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.88);
}

.reviews-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}

.reviews-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}

.section--reviews .container { position: relative; z-index: 1; }

.reviews-grid--rich {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .reviews-grid--rich {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
  }
  .review-card--featured {
    grid-row: span 2;
  }
}

@media (min-width: 1000px) {
  .reviews-grid--rich {
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .review-card--featured {
    grid-row: span 2;
  }
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.review-card:hover {
  border-color: rgba(240, 106, 10, 0.35);
  transform: translateY(-3px);
}

.review-card--featured {
  background: linear-gradient(160deg, rgba(240, 106, 10, 0.15), rgba(255, 255, 255, 0.05));
  border-color: rgba(240, 106, 10, 0.25);
  padding: 2rem;
  justify-content: center;
}

.review-card--featured p {
  font-size: 1.15rem;
  line-height: 1.65;
}

.stars {
  color: var(--orange-400);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.review-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  flex: 1;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-card footer strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--white);
}

.review-card footer span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.reviews-cta {
  margin-top: 2.25rem;
  text-align: center;
}

/* ---------- Areas panel ---------- */
.section--areas {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--sand-50);
}

.areas-panel {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  display: grid;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--white);
}

@media (min-width: 900px) {
  .areas-panel { grid-template-columns: 1.1fr 1fr; min-height: 480px; }
}

.areas-panel__media {
  position: relative;
  min-height: 260px;
}

.areas-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.areas-panel__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 11, 20, 0.55), transparent 50%);
}

.areas-panel__pin {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  z-index: 1;
}

.map-pin__dot {
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  background: var(--orange-500);
  transform: rotate(-45deg);
  box-shadow: 0 0 0 6px rgba(240, 106, 10, 0.3);
  flex-shrink: 0;
}

.areas-panel__content {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.areas-panel__content h2 { margin-bottom: 0.65rem; }
.areas-panel__content > p { color: var(--slate-600); margin-bottom: 1.25rem; }

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.areas-list span {
  background: var(--sand-100);
  color: var(--navy-800);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-display);
  transition: background 0.2s, color 0.2s;
}

.areas-list span:hover {
  background: var(--orange-100);
  color: var(--orange-600);
}

.areas-address {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.areas-address strong {
  color: var(--navy-900);
  font-family: var(--font-display);
}

/* ---------- Resources ---------- */
.resources-grid--rich {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .resources-grid--rich { grid-template-columns: repeat(3, 1fr); }
}

.resource-card--photo {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(10, 22, 40, 0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  cursor: default;
}

.resource-card--photo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.resource-card__media {
  height: 160px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.resource-card--photo:hover .resource-card__media {
  transform: scale(1.05);
}

.resource-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.resource-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-600);
  font-family: var(--font-display);
}

.resource-card__body h3 {
  font-size: 1.05rem;
  line-height: 1.35;
}

.resource-card__body p {
  font-size: 0.9rem;
  color: var(--slate-600);
  flex: 1;
}

/* ---------- Final CTA ---------- */
.final-cta--rich {
  position: relative;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
}

.final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.final-cta__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(4, 11, 20, 0.92) 0%, rgba(4, 11, 20, 0.78) 55%, rgba(10, 22, 40, 0.85) 100%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 800px) {
  .final-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.final-cta--rich h2 {
  color: var(--white);
  margin-bottom: 0.65rem;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
}

.final-cta--rich p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 40ch;
  font-size: 1.08rem;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.75rem 0 1.5rem;
  font-size: 0.92rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer__grid { grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr; } }

.logo--footer .logo__name { color: var(--white); }
.logo--footer .logo__tag { color: rgba(255, 255, 255, 0.4); }

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 32ch;
}

.site-footer h4 {
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer a:hover { color: var(--orange-400); }

.footer__contact li { line-height: 1.5; }

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__social a {
  font-weight: 600;
  color: var(--white);
  font-size: 0.88rem;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__note { color: var(--orange-400); opacity: 0.75; }

/* ---------- Mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(4, 11, 20, 0.92);
  backdrop-filter: blur(14px);
  z-index: 999;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .mobile-cta { display: block; }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.15s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__img { animation: none; }
  .btn--glow { animation: none; }
  .why-visual__float { animation: none; }
}

/* ---------- Page: Contact / Service (shared) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(240, 106, 10, 0.18), transparent),
    linear-gradient(165deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}

.page-hero--photo {
  min-height: 480px;
  display: flex;
  align-items: center;
  background: var(--navy-950);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 11, 20, 0.92) 0%, rgba(4, 11, 20, 0.75) 50%, rgba(4, 11, 20, 0.55) 100%);
}

.page-hero h1 { color: var(--white); margin-bottom: 0.65rem; }
.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 48ch;
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info > p { color: var(--slate-600); margin-bottom: 1.75rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--sand-50);
  border: 1px solid rgba(10, 22, 40, 0.04);
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--orange-100), #ffe4cc);
  color: var(--orange-600);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy-900);
  margin-bottom: 0.15rem;
}

.contact-detail span,
.contact-detail a {
  color: var(--slate-600);
  font-size: 0.98rem;
}

.contact-detail a:hover { color: var(--orange-600); }

.contact-form-card {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.85rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h2 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.contact-form-card > p {
  font-size: 0.92rem;
  color: var(--slate-500);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 540px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid rgba(10, 22, 40, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy-900);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(240, 106, 10, 0.12);
}

.form-field textarea { min-height: 120px; resize: vertical; }

.form-note {
  font-size: 0.8rem;
  color: var(--slate-500);
  margin: 0.75rem 0 1rem;
}

.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-weight: 500;
}

.form-success.is-visible { display: block; }

/* Service page extras */
.service-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .service-hero-grid { grid-template-columns: 1.2fr 0.8fr; }
}

.content-block { max-width: 720px; }
.content-block p { margin-bottom: 1rem; color: var(--slate-600); }
.content-block ul {
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.content-block ul li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--slate-700);
}
.content-block ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange-600);
  font-weight: 700;
}

.feature-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

.feature-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(10, 22, 40, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature-box h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature-box p { font-size: 0.95rem; color: var(--slate-600); }
.feature-box ul {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.feature-box ul li {
  font-size: 0.9rem;
  padding-left: 1.1rem;
  position: relative;
  color: var(--slate-700);
}
.feature-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange-500);
  font-weight: 700;
}

/* Design overview leftovers */
.overview-hero {
  background: linear-gradient(160deg, var(--navy-950), #1a2740);
  color: var(--white);
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.overview-hero h1 { color: var(--white); max-width: 18ch; }
.overview-hero p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 50ch;
}
.overview-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--sand-100);
  vertical-align: top;
}
.compare-table th {
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
}
.compare-table tr:nth-child(even) td { background: var(--sand-50); }
.compare-table .bad { color: #b45309; }
.compare-table .good { color: #0f766e; font-weight: 500; }

.palette {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}
.swatch {
  width: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 22, 40, 0.08);
}
.swatch__color { height: 72px; }
.swatch__meta {
  padding: 0.6rem 0.7rem;
  background: var(--white);
  font-size: 0.75rem;
}
.swatch__meta strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: 0.82rem;
}

.principle-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (min-width: 720px) {
  .principle-list { grid-template-columns: 1fr 1fr; }
}
.principle {
  background: var(--sand-50);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  border-left: 4px solid var(--orange-500);
}
.principle h3 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.principle p { font-size: 0.92rem; color: var(--slate-600); }

.prose-section { padding: clamp(2rem, 4vw, 3rem) 0; }
.prose-section h2 { margin-bottom: 0.75rem; }
.prose-section > p, .prose-section li { color: var(--slate-600); }
.prose-section ol, .prose-section ul.bullets {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
}
.prose-section ol { list-style: decimal; }
.prose-section ul.bullets { list-style: disc; }
.prose-section ol li, .prose-section ul.bullets li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.badge {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--orange-100);
  color: var(--orange-600);
}

/* Final CTA fallback (non-rich pages) */
.final-cta:not(.final-cta--rich) {
  background: linear-gradient(135deg, var(--navy-900) 0%, #152a48 50%, var(--navy-800) 100%);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.final-cta:not(.final-cta--rich) h2 { color: var(--white); margin-bottom: 0.5rem; }
.final-cta:not(.final-cta--rich) p { color: rgba(255, 255, 255, 0.7); max-width: 40ch; }

/* Legacy why-stats for older markup */
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 130px;
  justify-content: flex-end;
}
.stat-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--orange-400);
}
.stat-card span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.why-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; }
}
