/* ============================================================
   Driftwood Web Design & Development — Home page
   Calm, coastal & approachable. Friendly rounded sans.
   Palette derived from the logo (seafoam coral + deep teal).
   ============================================================ */

/* ---------- Self-hosted fonts (was Google Fonts) ----------
   Variable fonts: one file covers weights 400–700. font-display:swap.
   Files live in assets/fonts/ (paths are relative to this stylesheet). */
@font-face {
  font-family: 'Fredoka'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(assets/fonts/fredoka-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Fredoka'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(assets/fonts/fredoka-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Nunito'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(assets/fonts/nunito-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Nunito'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(assets/fonts/nunito-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

:root {
  /* Brand teals (from logo) */
  --teal-900: #123c42;
  --teal-800: #184e54;
  --teal-700: #1f6168;
  --teal-600: #2a7a80;
  --teal-500: #379b95;
  --teal-400: #4fb6a8;
  --sea-300:  #7fd3c4;
  --sea-200:  #aee4d9;
  --sea-100:  #d9f1ec;
  --sea-50:   #eef8f5;

  /* Warm neutrals (sand / driftwood) */
  --sand-50:  #f8f6f1;
  --sand-100: #f1ede4;
  --sand-200: #e6e0d4;

  --ink:    #16292b;
  --body:   #3a4d50;
  --slate:  #5c6b73;
  --line:   #e4ddd0;

  --white:  #ffffff;

  /* Semantic */
  --page-bg:   var(--sand-50);
  --surface:   #ffffff;
  --surface-2: var(--sand-100);
  --text:      var(--ink);
  --text-soft: var(--body);
  --text-mute: var(--slate);
  --border:    var(--line);

  /* Hero */
  --hero-bg-a: #15464d;
  --hero-bg-b: #0e353b;
  --hero-text: #f3faf8;
  --hero-soft: #bfe2db;
  --hero-eyebrow: #7fd3c4;

  --radius:    18px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(18,60,66,.06);
  --shadow:    0 14px 40px -18px rgba(18,60,66,.30);
  --shadow-lg: 0 40px 90px -40px rgba(18,60,66,.45);

  --maxw: 1200px;
  --ff-display: "Fredoka", system-ui, sans-serif;
  --ff-body:    "Nunito", system-ui, sans-serif;
}

/* ---------- Hero direction variants ---------- */
html[data-hero="solid"] {
  --hero-bg-a: #15545b;
  --hero-bg-b: #15545b;
}
html[data-hero="seafoam"] {
  --hero-bg-a: #e7f5f1;
  --hero-bg-b: #d2ece5;
  --hero-text: #143c42;
  --hero-soft: #2f6168;
  --hero-eyebrow: #2a7a80;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 200; width: auto; height: auto; overflow: visible;
  background: var(--teal-700); color: #fff;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--ff-display); font-weight: 600; font-size: 16px;
  box-shadow: var(--shadow-lg); outline: 3px solid var(--sea-300); outline-offset: 2px;
}

/* ---------- Focus-visible ---------- */
:focus-visible {
  outline: 3px solid var(--teal-400);
  outline-offset: 3px;
}
.btn:focus-visible { outline-offset: 4px; border-radius: 999px; }
.nav-burger:focus-visible { outline-offset: 4px; }
.drawer-close:focus-visible { outline-offset: 4px; border-radius: 4px; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  background: var(--page-bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--ff-display); margin: 0; line-height: 1.05; letter-spacing: -0.01em; color: var(--text); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 600; font-size: 16px;
  padding: 15px 30px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff; box-shadow: 0 12px 26px -12px rgba(31,97,104,.8);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(31,97,104,.9); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--teal-400); color: var(--teal-600); }
.btn-sea { background: var(--sea-300); color: var(--teal-900); }
.btn-sea:hover { transform: translateY(-2px); background: var(--sea-200); }

/* ============================================================
   NAV — floating white pill
   ============================================================ */
.nav-shell { position: sticky; top: 0; z-index: 60; padding: 18px 0; pointer-events: none; }
.nav {
  pointer-events: auto;
  display: flex; align-items: center; gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 14px 12px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow .3s ease;
}
.nav-shell.scrolled .nav { box-shadow: var(--shadow-lg); }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 38px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 6px; margin: 0 auto; }
.nav-links a {
  font-family: var(--ff-display); font-weight: 500; font-size: 16px;
  color: var(--text-soft); padding: 9px 16px; border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--teal-600); background: var(--sea-50); }
.nav-links a.active { color: var(--teal-700); background: var(--sea-100); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav .btn { padding: 12px 26px; font-size: 15px; }
.nav-burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface-2); cursor: pointer; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--hero-bg-a), var(--hero-bg-b));
  color: var(--hero-text);
  margin: -82px 0 0; padding: 150px 0 120px;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(620px 420px at 78% 8%, rgba(127,211,196,.22), transparent 60%),
    radial-gradient(520px 380px at 8% 95%, rgba(79,182,168,.18), transparent 60%);
}
html[data-hero="seafoam"] .hero-glow {
  background:
    radial-gradient(560px 420px at 82% 6%, rgba(47,128,136,.10), transparent 60%),
    radial-gradient(520px 380px at 4% 96%, rgba(127,211,196,.35), transparent 60%);
}
.hero-waves { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: auto; display: block; pointer-events: none; }
html[data-hero="solid"] .hero-waves { display: none; }

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center;
}
.hero-eyebrow { color: var(--hero-eyebrow); margin-bottom: 18px; display: inline-flex; align-items: center; gap: 10px; }
.hero h1 {
  font-size: clamp(40px, 5.6vw, 74px); font-weight: 600; color: var(--hero-text);
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--hero-eyebrow); }
.hero-sub { margin-top: 22px; font-size: 19px; max-width: 30em; color: var(--hero-soft); }
.hero-price {
  margin-top: 26px; display: inline-flex; align-items: baseline; gap: 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: 12px 20px; border-radius: 999px; backdrop-filter: blur(6px);
}
html[data-hero="seafoam"] .hero-price { background: rgba(20,60,66,.05); border-color: rgba(20,60,66,.12); }
.hero-price b { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--hero-text); white-space: nowrap; }
.hero-price span { font-size: 14px; color: var(--hero-soft); }
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
html[data-hero="seafoam"] .hero-cta .btn-ghost { border-color: rgba(20,60,66,.2); color: var(--teal-700); }
html:not([data-hero="seafoam"]) .hero-cta .btn-ghost { border-color: rgba(255,255,255,.28); color: #fff; }
html:not([data-hero="seafoam"]) .hero-cta .btn-ghost:hover { border-color: var(--sea-300); color: var(--sea-200); }


/* browser mockup */
.mockup { position: relative; }
.browser {
  background: var(--surface); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.5);
  transform: rotate(.4deg);
}
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.browser-bar .r { background: #ff6159; } .browser-bar .y { background: #ffbd2e; } .browser-bar .g { background: #28c840; }
.browser-url { margin-left: 12px; flex: 1; background: var(--page-bg); border-radius: 999px; padding: 6px 16px; font-size: 12px; color: var(--text-mute); font-family: var(--ff-body); display: flex; align-items: center; gap: 8px; }
.browser-url svg { width: 12px; height: 12px; }
.browser .mini-site { width: 100%; height: 360px; background: var(--sand-50); padding: 18px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; }
.ms-nav { display: flex; align-items: center; gap: 10px; }
.ms-logo { width: 64px; height: 14px; border-radius: 5px; background: var(--teal-600); }
.ms-links { display: flex; gap: 10px; margin-left: auto; }
.ms-links i { width: 26px; height: 7px; border-radius: 4px; background: var(--sand-200); }
.ms-btn { width: 50px; height: 18px; border-radius: 999px; background: var(--sea-300); }
.ms-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 14px; align-items: center; background: linear-gradient(150deg, var(--teal-600), var(--teal-800)); border-radius: 12px; padding: 18px; }
.ms-htext { display: flex; flex-direction: column; gap: 7px; }
.ms-ey { width: 40px; height: 6px; border-radius: 4px; background: var(--sea-300); }
.ms-h { width: 100%; height: 13px; border-radius: 5px; background: rgba(255,255,255,.92); }
.ms-h.sh { width: 62%; }
.ms-p { width: 100%; height: 6px; border-radius: 4px; background: rgba(255,255,255,.45); margin-top: 3px; }
.ms-p.w2 { width: 80%; }
.ms-cta { width: 64px; height: 18px; border-radius: 999px; background: var(--sea-300); margin-top: 6px; }
.ms-himg { height: 86px; border-radius: 10px; background: linear-gradient(140deg, var(--sea-200), var(--sea-300)); }
.ms-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ms-cards > div { height: 64px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); }
.mockup-badge {
  position: absolute; z-index: 3; background: var(--surface); color: var(--text);
  border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; border: 1px solid var(--border);
}
.mockup-badge .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--sea-100); color: var(--teal-600); display: grid; place-items: center; }
.mockup-badge .ic svg { width: 20px; height: 20px; }
.mockup-badge b { font-family: var(--ff-display); font-size: 16px; display: block; white-space: nowrap; }
.mockup-badge small { font-size: 12px; color: var(--text-mute); white-space: nowrap; }
.badge-tl { top: -26px; left: -38px; }
.badge-br { bottom: -26px; right: -28px; }

/* ============================================================
   SECTION scaffolding
   ============================================================ */
section { position: relative; }
.section { padding: 100px 0; }
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head .eyebrow { color: var(--teal-600); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.section-head .eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--teal-400); border-radius: 2px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 600; }
.section-head p { margin-top: 16px; font-size: 18px; color: var(--text-soft); }

/* ---------- Services ---------- */
.services { background: var(--page-bg); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sea-200); }
.svc-card .ic { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(140deg, var(--sea-100), var(--sea-200)); color: var(--teal-700); margin-bottom: 22px; }
.svc-card .ic svg { width: 27px; height: 27px; }
.svc-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.svc-card p { color: var(--text-soft); font-size: 15.5px; }
.svc-feature { grid-column: span 1; background: linear-gradient(150deg, var(--teal-600), var(--teal-800)); color: #fff; border: none; }
.svc-feature h3, .svc-feature p { color: #fff; }
.svc-feature p { color: var(--sea-100); }
.svc-feature .ic { background: rgba(255,255,255,.15); color: #fff; }

/* Robin portrait card */
.svc-person { text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
.person-photo {
  width: 96px; height: 96px; border-radius: 50%; overflow: hidden; margin-bottom: 20px;
  box-shadow: 0 0 0 4px var(--sea-100), var(--shadow-sm);
  background: var(--sea-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 96' fill='none' stroke='%2345a89e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='48' cy='38' r='16'/%3E%3Cpath d='M16 84a32 32 0 0 1 64 0'/%3E%3C/svg%3E") center/cover;
}
.person-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-person h3 { margin-bottom: 2px; }
.svc-person .person-role {
  font-family: var(--ff-display); font-weight: 600; font-size: 14px; letter-spacing: .03em;
  color: var(--teal-600); margin-bottom: 12px;
}

/* ---------- Areas served ---------- */
.locations { background: var(--surface); }
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.loc-county {
  background: var(--page-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.loc-county:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sea-200); }
.loc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.loc-head .ic {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--sea-100), var(--sea-200)); color: var(--teal-700);
}
.loc-head .ic svg { width: 23px; height: 23px; }
.loc-head h3 { font-size: 21px; font-weight: 600; margin-bottom: 2px; }
.loc-head small { font-family: var(--ff-display); font-weight: 500; font-size: 13px; color: var(--text-mute); letter-spacing: .03em; display: block; }
.loc-cities { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 0; }
.loc-cities li {
  font-family: var(--ff-body); font-size: 14.5px; font-weight: 600; color: var(--teal-700);
  background: var(--sea-50); border: 1px solid var(--sea-100); border-radius: 999px;
  padding: 7px 15px; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.loc-cities li:hover { background: var(--sea-100); border-color: var(--sea-200); color: var(--teal-800); }
.loc-cities a { color: inherit; text-decoration: none; display: block; }
.loc-cities li:has(a) { border-color: var(--sea-200); cursor: pointer; }
.loc-cities li:has(a):hover { background: var(--teal-600); border-color: var(--teal-600); color: #fff; }
.loc-note { text-align: center; margin-top: 36px; font-size: 16px; color: var(--text-soft); }
.loc-note a { color: var(--teal-600); font-weight: 600; border-bottom: 1.5px solid var(--sea-200); }
.loc-note a:hover { color: var(--teal-700); border-color: var(--teal-400); }

/* ---------- Process ---------- */
.process { background: var(--page-bg); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step { position: relative; padding: 28px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.step .num { font-family: var(--ff-display); font-weight: 700; font-size: 15px; color: var(--teal-600); width: 40px; height: 40px; border-radius: 50%; background: var(--sea-100); display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--text-soft); }

/* ---------- Pricing ---------- */
.pricing { background: var(--surface); }
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.price-card {
  background: linear-gradient(155deg, var(--teal-700), var(--teal-900)); color: #fff;
  border-radius: var(--radius-lg); padding: 42px 38px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.price-card .ribbon { position: absolute; top: 22px; right: -34px; background: var(--sea-300); color: var(--teal-900); font-family: var(--ff-display); font-weight: 700; font-size: 12px; letter-spacing: .1em; padding: 6px 44px; transform: rotate(40deg); }
.price-card .tier { font-family: var(--ff-display); font-weight: 600; color: var(--sea-200); letter-spacing: .04em; display: block; }
.price-card .amount { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 4px; }
.price-card .amount .num { font-family: var(--ff-display); font-weight: 700; font-size: 64px; line-height: 1; color: #fff; }
.price-card .amount .per { color: var(--sea-200); font-size: 17px; }
.price-card .down { color: var(--sea-100); font-size: 15px; }
.price-card .pc-list { margin: 26px 0; display: grid; gap: 12px; padding: 0; }
.price-card .pc-list li { list-style: none; display: flex; gap: 10px; align-items: center; font-size: 15.5px; color: #eaf6f3; }
.price-card .pc-list .ck { width: 22px; height: 22px; border-radius: 50%; background: rgba(127,211,196,.22); color: var(--sea-200); display: grid; place-items: center; flex-shrink: 0; }
.price-card .pc-list .ck svg { width: 13px; height: 13px; }
.price-card .btn { width: 100%; justify-content: center; }

.price-card-hourly {
  background: var(--page-bg); color: var(--text);
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.price-card-hourly .tier { color: var(--teal-600); }
.price-card-hourly .amount .num { color: var(--teal-800); }
.price-card-hourly .amount .per { color: var(--text-soft); }
.price-card-hourly .down { color: var(--text-mute); }
.price-card-hourly .pc-list li { color: var(--text-soft); }
.price-card-hourly .pc-list .ck { background: var(--sea-100); color: var(--teal-600); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--page-bg); }
.cta-inner {
  background: linear-gradient(150deg, var(--teal-600), var(--teal-800));
  border-radius: var(--radius-lg); padding: 64px 56px; text-align: center; color: #fff;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-inner h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 600; color: #fff; max-width: 16em; margin: 0 auto; }
.cta-inner p { margin: 16px auto 0; color: var(--sea-100); font-size: 18px; max-width: 32em; }
.cta-inner .btns { margin-top: 32px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-inner .btn-ghost { border-color: rgba(255,255,255,.3); color: #fff; }
.cta-inner .btn-ghost:hover { border-color: var(--sea-300); color: var(--sea-200); }
.cta-wave { position: absolute; inset: 0; opacity: .5; pointer-events: none; }

/* ---------- Contact ---------- */
.contact { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start; }
.contact-card { display: grid; gap: 16px; margin-top: 28px; }
.contact-row { display: flex; align-items: center; gap: 16px; }
.contact-row .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--sea-100); color: var(--teal-600); display: grid; place-items: center; flex-shrink: 0; }
.contact-row .ic svg { width: 22px; height: 22px; }
.contact-row small { color: var(--text-mute); font-size: 13px; font-family: var(--ff-display); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; display: block; }
.contact-row b { font-family: var(--ff-display); font-size: 18px; font-weight: 600; display: block; }
.contact-row a { color: inherit; text-decoration: none; }
.contact-row a:hover b { color: var(--teal-600); }
.form { background: var(--page-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--ff-display); font-weight: 600; font-size: 14px; margin-bottom: 7px; color: var(--text); }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); font-family: var(--ff-body); font-size: 15.5px; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal-400); box-shadow: 0 0 0 4px rgba(79,182,168,.16); }
.field textarea { resize: vertical; min-height: 110px; }
.form .btn { width: 100%; justify-content: center; }
.form-note { margin-top: 14px; text-align: center; font-size: 13.5px; color: var(--text-mute); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: linear-gradient(160deg, var(--teal-900), #0c2c31); color: #cfe6e0; padding: 70px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 42px; margin-bottom: 18px; }
.footer-brand p { color: #a9cdc6; font-size: 15px; max-width: 26em; }
.footer-col h5 { font-family: var(--ff-display); font-weight: 600; font-size: 15px; color: #fff; margin-bottom: 16px; letter-spacing: .03em; }
.footer-col a { display: block; color: #a9cdc6; font-size: 15px; padding: 6px 0; transition: color .2s ease; }
.footer-col a:hover { color: var(--sea-200); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; gap: 16px; flex-wrap: wrap; }
.footer-bottom small { color: #8db4ad; font-size: 13.5px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cfe6e0; transition: background .2s ease, color .2s ease; }
.footer-social a:hover { background: var(--sea-300); color: var(--teal-900); }
.footer-social svg { width: 18px; height: 18px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile nav drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 80; display: none; }
.drawer.open { display: block; }
.drawer-bg { position: absolute; inset: 0; background: rgba(10,30,33,.5); backdrop-filter: blur(3px); }
.drawer-panel { position: absolute; top: 14px; right: 14px; left: 14px; background: var(--surface); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-lg); }
.drawer-panel a { display: block; font-family: var(--ff-display); font-weight: 600; font-size: 20px; padding: 14px 8px; color: var(--text); border-bottom: 1px solid var(--border); }
.drawer-panel a:last-of-type { border-bottom: none; }
.drawer-panel .btn { width: 100%; justify-content: center; text-align: center; margin-top: 16px; }
.drawer-close { position: absolute; top: 22px; right: 22px; background: none; border: none; cursor: pointer; color: var(--text-mute); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .mockup { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: 1fr; max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-burger { display: grid; place-items: center; }
  .nav-right { margin-left: auto; }
  .hero { padding: 130px 0 90px; }
  .hero-waves { height: 50px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .section { padding: 70px 0; }
  .svc-grid, .steps, .loc-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner { padding: 44px 24px; }
  .badge-tl, .badge-br { display: none; }
  .hero-price { flex-direction: column; align-items: flex-start; gap: 4px; border-radius: 18px; }
}
