/* =========================================
   DIAMOND IMAGE DETAIL — LP
   Dark cinematic + chrome accent
   ========================================= */

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

:root {
  /* Surfaces */
  --bg: #06070a;
  --bg-2: #0c0d12;
  --bg-3: #131419;
  --card: rgba(255,255,255,0.025);
  --card-hi: rgba(255,255,255,0.05);
  --line: rgba(255,255,255,0.07);
  --line-hi: rgba(255,255,255,0.14);

  /* Type */
  --ink: #f3f4f7;
  --ink-mid: rgba(243,244,247,0.72);
  --ink-low: rgba(243,244,247,0.48);

  /* Accent — chrome / icy diamond */
  --ice-1: #E6F4FF;
  --ice-2: #B8E1FE;
  --ice-3: #67E8F9;
  --ice-4: #06B6D4;
  --shine-grad: linear-gradient(100deg,
      #E6F4FF 0%,
      #B8E1FE 22%,
      #67E8F9 48%,
      #B8E1FE 74%,
      #E6F4FF 100%);

  --display: "Bebas Neue", "Anton", "Impact", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }

/* Subtle film grain — automotive shoot vibe */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  mix-blend-mode: overlay;
}

/* Shine treatment — used sparingly on key words */
.shine {
  background: var(--shine-grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0%; }
  100% { background-position: -100% 0%; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0 var(--pad-x);
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% 10%, rgba(103,232,249,0.06), transparent 70%),
    radial-gradient(900px 700px at 10% 90%, rgba(14,165,233,0.05), transparent 70%),
    var(--bg);
}

.hex-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(60deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(-60deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 96px;
  mask-image: radial-gradient(900px 600px at 70% 25%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 600px at 70% 25%, black 30%, transparent 75%);
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle at center, rgba(103,232,249,0.16), transparent 60%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

/* hero photo as full-bleed cinematic backdrop behind the form */
.hero-image-wrap {
  position: absolute;
  top: 0; right: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.78;
}
.hero-image {
  width: 100%; height: 100%; object-fit: cover; object-position: 72% 50%;
  filter: contrast(1.12) saturate(0.95);
}
.hero-image-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(6,7,10,0.92) 18%, rgba(6,7,10,0.55) 42%, rgba(6,7,10,0.20) 68%, rgba(6,7,10,0.55) 100%),
    linear-gradient(180deg, rgba(6,7,10,0.50) 0%, transparent 35%, rgba(6,7,10,0.78) 100%);
}

/* Topbar */
.topbar {
  position: relative;
  z-index: 5;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.brand:hover { opacity: 0.92; transform: translateY(-1px); }
.brand-icon {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.5));
}
.brand-words {
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding-left: 4px;
  border-left: 1px solid var(--line-hi);
  padding-left: 12px;
}
.brand-name {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.22em;
  color: var(--ink);
}
.brand-sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  margin-top: 5px;
  color: var(--ink-low);
  text-transform: uppercase;
}
.topbar-call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--ink);
  transition: all 150ms ease;
}
.topbar-call:hover { border-color: var(--ice-3); color: var(--ice-1); }
.topbar-call svg { color: var(--ice-3); }

/* Hero layout */
.hero-inner {
  position: relative; z-index: 4;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 7vh, 90px) 0 clamp(60px, 10vh, 120px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 12px;
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ice-3);
  box-shadow: 0 0 12px var(--ice-3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero title */
.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 8.2vw, 124px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-title .title-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 700ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-title .line-1 { animation-delay: 80ms; }
.hero-title .line-2 { animation-delay: 200ms; }
.hero-title .line-3 { animation-delay: 320ms; font-family: var(--body); font-weight: 300; font-size: 0.28em; line-height: 1.2; letter-spacing: 0.005em; margin-top: 0.5em; color: var(--ink-mid); }
.hero-title .line-3 em { font-style: italic; font-weight: 300; color: var(--ink); }
.hero-title .line-4 { animation-delay: 440ms; font-family: var(--body); font-weight: 300; font-size: 0.28em; line-height: 1.2; letter-spacing: 0.005em; color: var(--ink-mid); }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 28px;
}

.hero-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-mid);
}
.hero-bullets .check {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(103,232,249,0.12);
  color: var(--ice-3);
  font-size: 11px;
  font-weight: 600;
}

.hero-trust {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.stars {
  font-size: 16px; letter-spacing: 2px;
  color: var(--ice-3);
  text-shadow: 0 0 8px rgba(103,232,249,0.4);
}
.trust-label { font-size: 13px; color: var(--ink-low); }

/* =========================================
   HERO FORM
   ========================================= */
.hero-form-wrap {
  position: relative;
  z-index: 6;
}
.form-shell {
  position: relative;
  padding: 32px 30px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.015) 100%),
    rgba(12,13,18,0.86);
  border: 1px solid var(--line-hi);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(103,232,249,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.form-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 90deg at 50% 50%,
    transparent 0deg,
    rgba(103,232,249,0.18) 60deg,
    transparent 120deg,
    transparent 240deg,
    rgba(103,232,249,0.12) 300deg,
    transparent 360deg);
  animation: rotate 16s linear infinite;
  opacity: 0.4;
  z-index: -1;
  filter: blur(40px);
}
@keyframes rotate { to { transform: rotate(360deg); } }

.form-head { margin-bottom: 22px; }
.form-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--ice-3);
  padding: 4px 10px;
  border: 1px solid rgba(103,232,249,0.35);
  border-radius: 4px;
  margin-bottom: 14px;
}
.form-title {
  font-family: var(--display);
  font-size: 36px; letter-spacing: 0.005em;
  line-height: 1;
  margin-bottom: 8px;
}
.form-sub {
  font-size: 13px; color: var(--ink-low); line-height: 1.5;
}

.lead-form { display: flex; flex-direction: column; gap: 12px; }
.row { display: grid; gap: 12px; }
.row.two { grid-template-columns: 1fr 1fr; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field .lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-low);
  font-weight: 500;
}
.field input,
.field select {
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  transition: all 150ms ease;
  outline: none;
  appearance: none;
}
.field input::placeholder { color: rgba(243,244,247,0.28); }
.field input:hover,
.field select:hover {
  border-color: var(--line-hi);
  background: rgba(255,255,255,0.035);
}
.field input:focus,
.field select:focus {
  border-color: var(--ice-3);
  background: rgba(103,232,249,0.04);
  box-shadow: 0 0 0 4px rgba(103,232,249,0.08);
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%2367E8F9' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field select option { background: #0c0d12; color: var(--ink); }

/* CTA BUTTON */
.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 22px;
  border: none;
  border-radius: 10px;
  background: var(--shine-grad);
  background-size: 200% 100%;
  color: #06181f;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 200ms ease;
  overflow: hidden;
  margin-top: 6px;
  box-shadow:
    0 8px 28px rgba(103,232,249,0.28),
    0 0 0 1px rgba(255,255,255,0.4) inset;
  animation: shimmer-btn 6s linear infinite;
}
@keyframes shimmer-btn {
  0%   { background-position: 200% 0%; }
  100% { background-position: -100% 0%; }
}
.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 36px rgba(103,232,249,0.42),
    0 0 0 1px rgba(255,255,255,0.6) inset;
}
.cta-btn:active { transform: translateY(0); }
.cta-arrow { transition: transform 200ms ease; font-size: 18px; }
.cta-btn:hover .cta-arrow { transform: translateX(4px); }

.form-fine {
  font-size: 11px;
  color: var(--ink-low);
  text-align: center;
  margin-top: 6px;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; animation: rise 500ms ease forwards; }
.form-success.show + form { display: none; }
.success-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(103,232,249,0.15);
  color: var(--ice-3);
  font-size: 28px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(103,232,249,0.3);
}
.form-success h3 {
  font-family: var(--display);
  font-size: 32px;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 14px;
  color: var(--ink-mid);
  margin-bottom: 18px;
}
.success-call {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--ice-3);
  border-radius: 8px;
  font-size: 13px;
  color: var(--ice-3);
}
.success-call:hover { background: rgba(103,232,249,0.08); }

/* =========================================
   TRUST STRIP
   ========================================= */
.strip {
  position: relative;
  padding: 36px var(--pad-x);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr) ;
  align-items: center;
  gap: 8px;
}
.strip-item { text-align: center; }
.strip-num {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.02em;
  background: var(--shine-grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 10s linear infinite;
}
.strip-cap {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-low);
  margin-top: 4px;
}
.strip-divider {
  height: 28px;
  width: 1px;
  background: var(--line);
  justify-self: center;
  display: none;
}

/* =========================================
   SECTION HEADS (shared)
   ========================================= */
.section-head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ice-3);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(38px, 5.8vw, 76px);
  line-height: 0.96;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
  color: var(--ink);
}
.section-sub {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.6;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.section-head.left .section-sub { margin-left: 0; }

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  max-width: calc(var(--maxw) + 100px);
  margin: 0 auto;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  position: relative;
  padding: 36px 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all 250ms ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice-3), transparent);
  opacity: 0;
  transition: opacity 250ms ease;
}
.card:hover {
  background: var(--card-hi);
  border-color: var(--line-hi);
  transform: translateY(-3px);
}
.card:hover::before { opacity: 0.8; }
.card-feature {
  border-color: rgba(103,232,249,0.18);
  background: linear-gradient(180deg, rgba(103,232,249,0.03), rgba(0,0,0,0)), var(--card);
}
.card-num {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--ice-3);
  margin-bottom: 18px;
}
.card-title {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.card-body {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-list { list-style: none; }
.card-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-bottom: 8px;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--ice-3);
}

/* =========================================
   PROCESS
   ========================================= */
.process {
  padding: clamp(60px, 10vw, 120px) var(--pad-x);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process > .section-head,
.process > .steps,
.process > .section-head.left { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
}
.step {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 200ms ease;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--card); }
.step-tag {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ice-3);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}
.step-body h4 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.step-body p {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.6;
}

/* =========================================
   COASTAL
   ========================================= */
.coastal {
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.coastal-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.coastal-copy .section-eyebrow,
.coastal-copy .section-title { text-align: left; }
.coastal-copy .section-title { margin-bottom: 20px; }
.coastal-p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}
.coastal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.cstat-n {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: 0.02em;
  background: var(--shine-grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite;
}
.cstat-l {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-low);
  margin-top: 4px;
}
.coastal-visual {
  position: relative;
  padding: 40px;
  background:
    radial-gradient(circle at 50% 50%, rgba(103,232,249,0.08), transparent 70%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
}
.coastal-visual img {
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5));
}

/* =========================================
   GALLERY
   ========================================= */
.gallery {
  padding: clamp(80px, 10vw, 120px) var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  aspect-ratio: 1/1;
  position: relative;
}
.gallery-card.tall { aspect-ratio: 1/1; }
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2,0.7,0.2,1);
}
.gallery-card:hover img { transform: scale(1.04); }

/* =========================================
   FINAL CTA
   ========================================= */
.final {
  position: relative;
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  background:
    radial-gradient(800px 400px at 80% 50%, rgba(103,232,249,0.08), transparent 70%),
    radial-gradient(800px 400px at 20% 50%, rgba(14,165,233,0.05), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(60deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(-60deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 96px;
  mask-image: radial-gradient(900px 500px at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(900px 500px at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.final-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.final-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(420px, 60vw, 720px);
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.4px);
}
.final-title {
  font-family: var(--display);
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin-bottom: 22px;
}
.final-sub {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.final-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-btn.solid { font-size: 16px; padding: 18px 28px; }
.ghost-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 22px;
  border: 1px solid var(--line-hi);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 200ms ease;
  color: var(--ink);
}
.ghost-btn:hover { border-color: var(--ice-3); color: var(--ice-1); }
.ghost-btn svg { color: var(--ice-3); }

/* =========================================
   FOOTER
   ========================================= */
.foot {
  padding: 32px var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.foot-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.foot-logo {
  height: 84px;
  width: auto;
  opacity: 0.9;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.45));
}
.foot-brand-meta { display: flex; flex-direction: column; }
.foot-name {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.18em;
}
.foot-tag {
  font-size: 11px;
  color: var(--ink-low);
  margin-top: 3px;
  letter-spacing: 0.05em;
}
.foot-meta {
  font-size: 13px;
  color: var(--ink-mid);
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.foot-meta a:hover { color: var(--ice-3); }
.foot-sep { color: var(--ink-low); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 30px 0 60px;
  }
  .hero-image-wrap {
    width: 100%; right: 0;
    opacity: 0.38;
  }
  .hero-bullets { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .strip-inner .strip-divider { display: none; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .coastal-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-card.tall { aspect-ratio: 1/1; }
}

@media (max-width: 560px) {
  .topbar-call span { display: none; }
  .topbar-call { padding: 9px 11px; }
  .brand-icon { height: 38px; }
  .brand-name { font-size: 15px; letter-spacing: 0.18em; }
  .brand-sub { font-size: 8px; letter-spacing: 0.28em; }
  .foot-logo { height: 60px; }
  .row.two { grid-template-columns: 1fr; }
  .form-shell { padding: 26px 22px 24px; }
  .form-title { font-size: 30px; }
  .strip-inner { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
  .strip-num { font-size: 26px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
  .coastal-stats { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.tall { aspect-ratio: 1/1; }
  .final-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .cta-btn.solid, .ghost-btn { width: 100%; }
  .foot-inner { flex-direction: column; align-items: flex-start; }
}

/* ============== REVIEWS ============== */
.reviews {
  position: relative;
  padding: clamp(72px, 9vw, 120px) var(--pad-x) clamp(56px, 7vw, 96px);
  background:
    radial-gradient(900px 540px at 18% 0%, rgba(103, 232, 249, 0.05), transparent 60%),
    radial-gradient(900px 540px at 82% 100%, rgba(6, 182, 212, 0.04), transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews .section-head { max-width: var(--maxw); margin: 0 auto 56px; }

.reviews-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 26px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  border: 1px solid var(--line-hi);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 22px 50px rgba(0,0,0,0.35);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(103, 232, 249, 0.22), transparent 35%, transparent 65%, rgba(103, 232, 249, 0.12));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
  opacity: 0.45;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.22);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 28px 58px rgba(0,0,0,0.45);
}

.review-stars {
  font-size: 17px;
  letter-spacing: 3px;
  color: #FFC107;
  text-shadow: 0 0 18px rgba(255, 193, 7, 0.35);
}

.review-body {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.65;
  flex: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.review-author {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 1.2px;
  color: var(--ink);
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--ink-low);
  text-transform: uppercase;
}

.reviews-foot {
  max-width: var(--maxw);
  margin: 44px auto 0;
  text-align: center;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: none;
  background: rgba(255,255,255,0.025);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.reviews-link:hover {
  border-color: var(--ice-3);
  background: rgba(103, 232, 249, 0.06);
  transform: translateY(-1px);
}

.reviews-link .arrow {
  color: var(--ice-3);
  transition: transform 200ms ease;
}

.reviews-link:hover .arrow { transform: translateX(3px); }

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

@media (max-width: 720px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 24px 22px 20px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .title-line { opacity: 1 !important; transform: none !important; }
}
