/* ═══════════════════════════════════════════════════════
   Naples Marine Construction — Design System
   Reference: purnatur.com aesthetic
   Font: Space Grotesk (Google Fonts)
   Icons: Material Symbols Outlined (Google)
═══════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,300,0,0');

/* ── TOKENS ── */
:root {
  --bg:          #F6F5F1;
  --bg-gray:     #E3E0DB;
  --ink:         #141312;
  --ink-70:      rgba(20, 19, 18, 0.70);
  --ink-40:      rgba(20, 19, 18, 0.40);
  --ink-15:      rgba(20, 19, 18, 0.08);
  --teal:        #1A7A6E;
  --white:       #FFFFFF;
  --dark-panel:  rgba(20, 19, 18, 0.88);

  --font:        'Space Grotesk', system-ui, sans-serif;
  --container:   1280px;
  --gutter:      48px;
  --section-v:   100px;
  --transition:  0.22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
p { max-width: 60ch; }

/* Material Symbols baseline */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

/* ── TYPOGRAPHY ── */
h1 {
  font-family: var(--font);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h3 {
  font-family: var(--font);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-70);
  font-weight: 400;
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: 860px; }
.container--text   { max-width: 680px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

/* On dark backgrounds: white outline */
.btn-outline-white {
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--ink);
}

/* On light backgrounds: dark fill */
.btn-fill-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-fill-dark:hover {
  background: transparent;
  color: var(--ink);
}

/* On light backgrounds: dark outline */
.btn-outline-dark {
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

/* Teal accent */
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: transparent;
  color: var(--teal);
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--dark-panel);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 2px;
}
.logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-sub {
  font-size: 0.62rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.80);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--white); }
.header-phone .material-symbols-outlined { font-size: 18px; }
.header-cta {
  padding: 9px 20px;
  font-size: 0.72rem;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  gap: 5px;
  flex-direction: column;
  align-items: flex-end;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 16px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--ink);
  padding: 24px var(--gutter) 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.75);
  padding: 14px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /* Replace background with: background-image: url('/images/hero.webp'); background-size: cover; background-position: center; */
  background:
    linear-gradient(180deg,
      rgba(20,19,18,0.15) 0%,
      rgba(20,19,18,0.05) 30%,
      rgba(10,20,35,0.30) 70%,
      rgba(8,18,30,0.65) 100%
    ),
    linear-gradient(135deg,
      #062030 0%,
      #0d3050 25%,
      #0f4060 50%,
      #0d3050 75%,
      #081a28 100%
    ),
    url('/images/hero.webp') center/cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-text h1 {
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 24px;
}
.hero-text .hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 42ch;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.40);
  font-size: 0.68rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding-bottom: 8px;
  flex-shrink: 0;
}
.hero-scroll .material-symbols-outlined {
  font-size: 20px;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
  background: rgba(20,19,18,0.06);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-15);
  margin-top: 72px;
}
.breadcrumbs-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--ink-40);
}
.breadcrumbs a { color: var(--ink-70); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs .sep { opacity: 0.3; }
.breadcrumbs .current { color: var(--teal); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 72px; /* offset for fixed header */
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(20,19,18,0.05) 0%, rgba(10,20,35,0.65) 100%),
    linear-gradient(135deg, #062030 0%, #0d3050 50%, #081a28 100%);
}
.page-hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 64px;
}
.page-hero h1 { color: var(--white); max-width: 16ch; margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.70); max-width: 50ch; margin-bottom: 28px; }
.page-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── CONTENT SECTIONS ── */
.section {
  padding: var(--section-v) 0;
}
.section--bg    { background: var(--bg); }
.section--gray  { background: var(--bg-gray); }
.section--dark  { background: var(--ink); color: rgba(255,255,255,0.85); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark .label { color: rgba(255,255,255,0.40); }
.section--dark p { color: rgba(255,255,255,0.70); }

/* ── FULL-BLEED PANELS (service teasers) ── */
.bleed-panel {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /* background-image replaced per panel */
}
.bleed-panel--overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,19,18,0.80) 0%,
    rgba(20,19,18,0.20) 50%,
    rgba(20,19,18,0.05) 100%
  );
  z-index: 1;
}
.bleed-panel-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 64px;
}
.bleed-panel-inner .label { color: rgba(255,255,255,0.50); margin-bottom: 12px; display: block; }
.bleed-panel-inner h2 { color: var(--white); margin-bottom: 8px; }
.bleed-panel-inner p { color: rgba(255,255,255,0.65); max-width: 44ch; margin-bottom: 28px; font-size: 1.05rem; }

/* Panel background placeholders — replace src with real photos */
.bp--dock {
  background:
    linear-gradient(180deg, rgba(20,19,18,0.10) 0%, rgba(20,19,18,0.50) 100%),
    linear-gradient(135deg, #061824 0%, #0d3245 30%, #154860 60%, #0d2a3a 100%),
    url('/images/dock-construction.webp') center/cover no-repeat;
}
.bp--seawall {
  background:
    linear-gradient(180deg, rgba(20,19,18,0.10) 0%, rgba(20,19,18,0.50) 100%),
    linear-gradient(135deg, #05121c 0%, #0a2232 30%, #0e3245 60%, #091e2c 100%),
    url('/images/seawall.webp') center/cover no-repeat;
}
.bp--lift {
  background:
    linear-gradient(180deg, rgba(20,19,18,0.10) 0%, rgba(20,19,18,0.50) 100%),
    linear-gradient(135deg, #03101a 0%, #081b2a 30%, #0b2840 60%, #06141e 100%),
    url('/images/boat-lift.webp') center/cover no-repeat;
}
.bp--repair {
  background:
    linear-gradient(180deg, rgba(20,19,18,0.10) 0%, rgba(20,19,18,0.50) 100%),
    linear-gradient(135deg, #08151e 0%, #0d2436 30%, #112e44 60%, #08141e 100%),
    url('/images/dock-repair.webp') center/cover no-repeat;
}
.bp--hero {
  background:
    linear-gradient(180deg, rgba(20,19,18,0.10) 0%, rgba(20,19,18,0.55) 100%),
    linear-gradient(135deg, #051218 0%, #0b2030 40%, #0f3248 70%, #08181e 100%),
    url('/images/naples-waterfront-aerial.webp') center/cover no-repeat;
}

/* ── INTRO TEXT SECTION ── */
.intro-section {
  padding: 96px 0;
  background: var(--bg);
}
.intro-section .container { text-align: center; }
.intro-section h1 { margin: 16px auto 24px; }
.intro-section .lead { margin: 0 auto 36px; }

/* ── TRUST BAR ── */
.trust-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--ink-15);
  border-bottom: 1px solid var(--ink-15);
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  border-right: 1px solid var(--ink-15);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-70);
  letter-spacing: -0.01em;
}
.trust-item:last-child { border-right: none; }
.trust-item .material-symbols-outlined { font-size: 20px; color: var(--teal); }

/* ── TEXT + IMAGE SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split-text .label { display: block; margin-bottom: 16px; }
.split-text h2 { margin-bottom: 20px; }
.split-text p { margin-bottom: 28px; color: var(--ink-70); }
.split-visual {
  background: var(--bg-gray);
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
}

/* ── SERVICES GRID ── */
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-15);
  border: 1px solid var(--ink-15);
}
.service-item {
  background: var(--bg);
  padding: 36px 32px;
  transition: background var(--transition);
}
.service-item:hover { background: var(--ink-15); }
.service-item .material-symbols-outlined {
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 16px;
  display: block;
}
.service-item h3 { margin-bottom: 10px; color: var(--ink); }
.service-item p { font-size: 0.88rem; color: var(--ink-70); line-height: 1.6; }
.service-item .item-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--teal);
  margin-top: 16px;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.service-item .item-link:hover { gap: 8px; }
.service-item .item-link .material-symbols-outlined { font-size: 16px; }

/* ── AREAS GRID ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--ink-15);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-70);
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: -0.01em;
}
.area-chip:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.area-chip .material-symbols-outlined { font-size: 16px; color: var(--teal); transition: color var(--transition); }
.area-chip:hover .material-symbols-outlined { color: rgba(255,255,255,0.6); }
.area-chip--primary { font-weight: 700; border-color: var(--teal); }

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(33.33% + 8px);
  right: calc(33.33% + 8px);
  height: 1px;
  background: var(--ink-15);
}
.step-num {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-num::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--teal);
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: var(--ink-70); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--ink-15);
  border-radius: 4px;
}
.stars {
  display: flex;
  gap: 2px;
  color: var(--teal);
  margin-bottom: 16px;
}
.stars .material-symbols-outlined { font-size: 16px; font-variation-settings: 'FILL' 1; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--ink-70);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.testimonial-location {
  font-size: 0.72rem;
  color: var(--ink-40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--ink-15); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-icon .material-symbols-outlined {
  font-size: 22px;
  color: var(--ink-40);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon .material-symbols-outlined {
  transform: rotate(45deg);
  color: var(--teal);
}
.faq-answer {
  display: none;
  padding: 0 0 24px;
  font-size: 0.92rem;
  color: var(--ink-70);
  line-height: 1.78;
}
.faq-answer a { color: var(--teal); text-decoration: underline; }
.faq-item.open .faq-answer { display: block; }

/* ── LEAD FORM ── */
.form-section {
  background: var(--ink);
  padding: var(--section-v) 0;
}
.form-container {
  max-width: 660px;
  margin: 0 auto;
}
.section-header--center { text-align: center; margin-bottom: 52px; }
.section-header--center h2 { color: var(--white); margin-bottom: 16px; }
.section-header--center .lead { color: rgba(255,255,255,0.60); margin: 0 auto; }
.section-header--center .label { color: rgba(255,255,255,0.35); margin-bottom: 12px; display: block; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: border-color var(--transition);
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: rgba(255,255,255,0.40); }
.form-field select { cursor: pointer; }
.form-field select option { background: var(--ink); color: var(--white); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 24px; text-align: center; }
.form-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.04em;
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--white); margin-bottom: 12px; font-size: 1.5rem; }
.form-success p { color: rgba(255,255,255,0.60); margin: 0 auto; }
.form-error {
  background: rgba(220,53,69,0.12);
  border: 1px solid rgba(220,53,69,0.30);
  color: #f8d7da;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.88rem;
  margin-bottom: 16px;
  display: none;
}
.form-error.show { display: block; }

/* ── PRICE TABLE ── */
.price-table {
  border: 1px solid var(--ink-15);
  border-radius: 4px;
  overflow: hidden;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--ink-15);
  font-size: 0.9rem;
  gap: 16px;
}
.price-row:last-of-type { border-bottom: none; }
.price-type { font-weight: 500; color: var(--ink); }
.price-range {
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
}
.price-note {
  padding: 14px 24px;
  background: rgba(26,122,110,0.06);
  border-top: 1px solid var(--ink-15);
  font-size: 0.78rem;
  color: var(--ink-70);
  font-style: italic;
}

/* Section on dark bg */
.price-table--dark {
  border-color: rgba(255,255,255,0.08);
}
.price-table--dark .price-row {
  border-color: rgba(255,255,255,0.06);
}
.price-table--dark .price-type { color: rgba(255,255,255,0.80); }
.price-table--dark .price-note { background: rgba(26,122,110,0.12); border-color: rgba(255,255,255,0.06); color: rgba(255,255,255,0.40); }

/* ── FEATURE CARDS ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--ink-15);
  border: 1px solid var(--ink-15);
}
.feature-card {
  background: var(--bg);
  padding: 32px 28px;
  transition: background var(--transition);
}
.feature-card:hover { background: var(--white); }
.feature-card .material-symbols-outlined {
  font-size: 28px;
  color: var(--teal);
  display: block;
  margin-bottom: 16px;
}
.feature-card h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--ink-70);
  line-height: 1.65;
}

/* Feature cards on dark bg */
.feature-grid--dark { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.06); }
.feature-grid--dark .feature-card { background: rgba(255,255,255,0.03); }
.feature-grid--dark .feature-card:hover { background: rgba(255,255,255,0.07); }
.feature-grid--dark .feature-card h4 { color: var(--white); }
.feature-grid--dark .feature-card p { color: rgba(255,255,255,0.60); }

/* ── CONTACT DETAIL ── */
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(26,122,110,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon .material-symbols-outlined { font-size: 20px; color: var(--teal); }
.contact-detail-text strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }
.contact-detail-text span { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.contact-detail-text a { color: rgba(255,255,255,0.80); transition: color var(--transition); }
.contact-detail-text a:hover { color: var(--white); }

/* ── UTILITY GRID ── */
.utility-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.07);
  background-color: var(--ink);
}
.utility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 30px 16px;
  background: var(--ink);
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all var(--transition);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.utility-item:last-child { border-right: none; }
.utility-item:hover { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.90); }
.utility-item .material-symbols-outlined { font-size: 22px; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.55); }
.footer-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 28ch; margin-top: 14px; color: rgba(255,255,255,0.40); }
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.02em;
}

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 52px; }
.section-header .label { display: block; margin-bottom: 14px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--ink-70); }
.section-header--dark .label { color: rgba(255,255,255,0.35); }
.section-header--dark h2 { color: var(--white); }
.section-header--dark p { color: rgba(255,255,255,0.60); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --gutter: 32px; --section-v: 72px; }
  .services-list { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .utility-grid { grid-template-columns: repeat(3, 1fr); }
  .split { gap: 48px; }
  .hero-scroll { display: none; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; --section-v: 56px; }
  .site-header { position: fixed; }
  .header-right .header-phone { display: none; }
  .header-right .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { flex-direction: column; align-items: flex-start; gap: 0; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 10px; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { display: none; }
  .services-list { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .utility-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split--reverse { grid-template-columns: 1fr; direction: ltr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-row { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--ink-15); }
  .trust-item:last-child { border-bottom: none; }
  .breadcrumbs { margin-top: 72px; }
}

@media (max-width: 480px) {
  .utility-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
