/* ----------  Base  ---------- */
:root {
  --navy: #0e1a2e;
  --navy-2: #142540;
  --navy-3: #1a3a5f;
  --text: #0e1a2e;
  --muted: #5a6878;
  --line: #e1e7ef;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-cream: #f1f4f8;
  --teal: #2dd4bf;
  --teal-d: #14b8a6;
  --teal-l: #ccfbf1;
  --accent-red: #d44a2c;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 6px 18px -8px rgba(14,26,46,0.18);
  --shadow: 0 30px 60px -30px rgba(14,26,46,0.25);
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ----------  Typography  ---------- */
h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

.script-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 20px;
}
.script-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid var(--teal);
}
.script-eyebrow .dot.teal { background: var(--teal); }
.script-eyebrow.light { color: var(--teal-d); }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn-lg { padding: 18px 32px; font-size: 0.95rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--teal);
  color: var(--navy);
}
.btn-primary:hover { background: var(--teal-d); transform: translateY(-2px); }
.btn-ghost-dark {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-ghost-dark:hover { background: var(--navy); color: #fff; }
.btn-ghost-light {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
}
.btn-ghost-light:hover { background: #fff; color: var(--navy); }

/* ----------  Header  ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.header-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--navy);
}
.logo-text b {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.logo-text em {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}

.nav-desktop {
  display: flex;
  gap: 28px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-left: auto;
}
.nav-desktop > a,
.nav-desktop .has-drop > a {
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-desktop > a:hover,
.nav-desktop .has-drop > a:hover { color: var(--teal-d); }
.has-drop { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-width: 230px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.has-drop:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  color: var(--navy);
}
.dropdown a:hover { background: var(--bg-cream); color: var(--teal-d); }

.header-cta { display: flex; gap: 18px; align-items: center; padding-left: 22px; border-left: 1px solid var(--line); }
.phone-link {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.phone-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--teal-d);
  padding: 4px 10px;
  background: var(--teal-l);
  border-radius: 999px;
  align-self: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 12px 28px 28px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.nav-mobile a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
.nav-mobile a.btn { border: none; margin-top: 16px; justify-content: center; }
.nav-mobile.open { display: flex; }
.mobile-phone { color: var(--teal-d) !important; }

/* ----------  Hero  ---------- */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 600px;
  align-items: center;
  position: relative;
}
.hero-panel {
  padding: 80px 60px 110px 28px;
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero-panel .script-eyebrow {
  color: var(--teal);
  font-size: 1.7rem;
}
.hero-panel h1 {
  color: #fff;
  margin-bottom: 28px;
  font-weight: 800;
}
.underlined {
  position: relative;
  display: inline-block;
}
.underlined::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
}
.hero-panel .lede {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 14px 14px 24px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  transition: background .2s ease;
}
.learn-more:hover { background: rgba(255,255,255,0.12); }
.learn-more b { font-weight: 800; }
.arrow-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Gradient fade from navy panel into the photo */
.hero-photo::after {
  content: '';
  position: absolute;
  left: 38%;
  top: 0; bottom: 0;
  width: 260px;
  background: linear-gradient(to right, var(--navy) 0%, rgba(14,26,46,0.85) 35%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
/* Subtle dark tint over the photo for legibility */
.hero-photo::before {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 62%;
  height: 100%;
  background: linear-gradient(180deg, rgba(14,26,46,0.15) 0%, rgba(14,26,46,0.45) 100%);
  pointer-events: none;
  z-index: 2;
}
/* Teal arc decoration bottom-right */
.hero-inner::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal) 0%, var(--teal-d) 60%, transparent 70%);
  opacity: 0.35;
  z-index: 3;
  pointer-events: none;
}

.hero-curve {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 80px;
  z-index: 4;
}

/* ----------  Stats strip  ---------- */
.stats {
  background: #fff;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
  text-align: center;
}
.stat-num {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 600;
}
.stat.trusted {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
}
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  display: inline-block;
}
.avatars span:first-child { margin-left: 0; }
.trusted-num {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}
.trusted-sub {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ----------  Section head  ---------- */
.section-head {
  max-width: 700px;
  margin-bottom: 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  color: var(--navy);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* ----------  Services  ---------- */
.services {
  padding: 110px 0;
  background: var(--bg-soft);
}
/* Accordion */
.accordion {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: var(--shadow-sm);
}
.acc-item {
  border-bottom: 1px solid var(--line);
}
.acc-item:last-child { border-bottom: none; }

.acc-head {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 60px;
  align-items: center;
  gap: 24px;
  padding: 26px 32px;
  text-align: left;
  font-family: inherit;
  background: #fff;
  transition: background .2s ease;
  cursor: pointer;
}
.acc-head:hover { background: var(--bg-soft); }

.acc-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.acc-meta {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  text-align: right;
}

.acc-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  justify-self: end;
  transition: background .25s ease, border-color .25s ease;
}
.acc-toggle::before,
.acc-toggle::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 1px;
  top: 50%; left: 50%;
  transition: transform .3s ease, background .25s ease;
}
.acc-toggle::before {
  width: 14px; height: 2px;
  transform: translate(-50%, -50%);
}
.acc-toggle::after {
  width: 2px; height: 14px;
  transform: translate(-50%, -50%);
}
.acc-item.open .acc-toggle {
  background: var(--teal);
  border-color: var(--teal);
}
.acc-item.open .acc-toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.acc-item.open .acc-body {
  max-height: 500px;
}
.acc-body-inner {
  padding: 4px 32px 30px 32px;
  max-width: 720px;
}
.acc-body-inner p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 18px;
}
.svc-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
}
.svc-card p {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 0.95rem;
}
.card-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal-d);
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}
.card-link:hover { color: var(--navy); border-color: var(--navy); }

/* Split band */
.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.split-card {
  padding: 50px 44px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.split-card.residential {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
}
.split-card.commercial {
  background: var(--navy);
  color: #fff;
}
.split-tag {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 18px;
}
.split-card.residential .split-tag { color: var(--teal-d); }
.split-card.commercial .split-tag { color: var(--teal); }
.split-card h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}
.split-card > p {
  margin-bottom: 22px;
  max-width: 380px;
}
.split-card.commercial > p { color: rgba(255,255,255,0.75); }
.split-card.residential > p { color: var(--muted); }
.split-card ul {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.split-card ul li {
  padding-left: 20px;
  position: relative;
  font-size: 0.93rem;
}
.split-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 1.5px;
  background: var(--teal);
}
.split-card.residential ul li { color: var(--muted); }
.split-card.commercial ul li { color: rgba(255,255,255,0.85); }

/* ----------  Work  ---------- */
.work {
  padding: 110px 0;
  background: #fff;
}
.work-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.wf-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-soft);
  transition: all .25s ease;
}
.wf-btn.active {
  background: var(--navy);
  color: #fff;
}
.wf-btn:not(.active):hover { background: var(--line); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.work-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.work-card.hidden { display: none; }
.work-img {
  aspect-ratio: 1.4;
  overflow: hidden;
  position: relative;
  background: var(--bg-cream);
}
.work-img img,
.work-img svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.work-card:hover .work-img img,
.work-card:hover .work-img svg { transform: scale(1.05); }
.work-body {
  padding: 24px 26px 28px;
}
.work-body .tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--teal-d);
  font-weight: 700;
}
.work-body h3 {
  margin: 10px 0 8px;
  color: var(--navy);
  font-size: 1.2rem;
}
.work-body p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ----------  About  ---------- */
.about {
  padding: 120px 0;
  background: var(--bg-cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  margin: 14px 0 24px;
  color: var(--navy);
}
.about-text > p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.about-text b { color: var(--navy); }

.principles {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.principle {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.principle:last-child { border-bottom: 1px solid var(--line); }
.p-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal-d);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  min-width: 36px;
  padding-top: 2px;
}
.principle h4 {
  margin-bottom: 4px;
  color: var(--navy);
}
.principle p {
  color: var(--muted);
  font-size: 0.95rem;
}

.about-visual {
  position: relative;
}
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 0.85;
  box-shadow: var(--shadow);
  background: var(--navy);
}
.about-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,26,46,0.05) 0%, rgba(14,26,46,0.45) 100%);
  pointer-events: none;
}
.badge {
  position: absolute;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  z-index: 2;
}
.badge-light {
  background: #fff;
  color: var(--navy);
  top: 32px;
  left: 32px;
}
.badge-teal {
  background: var(--teal);
  color: var(--navy);
  bottom: 32px;
  right: 32px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.about-stats > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.as-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-d);
  line-height: 1;
}
.as-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ----------  Contact  ---------- */
.contact {
  padding: 120px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.contact-left h2 {
  margin: 14px 0 16px;
  color: var(--navy);
}
.contact-left > p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cm {
  display: block;
  padding: 22px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease, background .2s ease;
}
a.cm:hover { border-color: var(--teal); background: #fff; }
.cm-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--teal-d);
  margin-bottom: 6px;
  font-weight: 700;
}
.cm-value { font-weight: 700; font-size: 1rem; word-break: break-word; color: var(--navy); }

/* Form */
.contact-form {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45,212,191,0.18);
}
.field textarea { resize: vertical; min-height: 110px; }

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 10px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  background: #fff;
  color: var(--navy);
  transition: all .2s ease;
  user-select: none;
}
.chip input:checked + span {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
}

.form-status {
  margin-top: 16px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal-d);
  min-height: 20px;
}

/* ----------  Footer  ---------- */
.site-footer {
  background: var(--navy);
  padding: 80px 0 30px;
  color: rgba(255,255,255,0.75);
}
.site-footer .logo { color: var(--teal); }
.site-footer .logo-text { color: #fff; }
.site-footer .logo-text em { color: rgba(255,255,255,0.55); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-tag {
  margin-top: 18px;
  font-size: 0.92rem;
  max-width: 320px;
}
.site-footer h5 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 18px;
}
.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer ul li {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.78);
}
.site-footer ul li a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ----------  Reveal animation  ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------  Responsive  ---------- */
@media (max-width: 1100px) {
  .nav-desktop { gap: 22px; font-size: 0.78rem; }
  .header-cta .phone-link span:last-child { display: none; }
}

@media (max-width: 960px) {
  .nav-desktop { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel { padding: 60px 28px 40px; }
  .hero-photo {
    position: relative;
    height: 320px;
    order: 2;
    width: 100%;
    margin-top: -60px;
  }
  .hero-img {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 100%;
  }
  /* Vertical fade: navy at top → photo visible at bottom */
  .hero-photo::after {
    left: 0;
    width: 100%;
    height: 50%;
    top: 0; bottom: auto;
    background: linear-gradient(to bottom, var(--navy) 0%, rgba(14,26,46,0.6) 50%, transparent 100%);
  }
  .hero-photo::before {
    width: 100%;
    right: auto;
    left: 0;
    background: linear-gradient(180deg, rgba(14,26,46,0.0) 0%, rgba(14,26,46,0.5) 100%);
  }
  .hero-inner::after {
    right: -100px;
    bottom: -100px;
    width: 240px;
    height: 240px;
    opacity: 0.25;
    z-index: 1;
  }
  .hero-panel { padding-bottom: 60px; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }

  .services, .work, .about, .contact { padding: 80px 0; }
  .split-band { grid-template-columns: 1fr; }
  .split-card { padding: 40px 32px; }
  .acc-head { padding: 22px 24px; gap: 14px; grid-template-columns: 1fr auto 44px; }
  .acc-title { font-size: 1.3rem; }
  .acc-body-inner { padding: 0 24px 26px; }

  .work-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .header-wrap { padding: 14px 20px; }
  .wrap { padding: 0 20px; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .hero-panel { padding: 50px 20px 30px; }
  .hero-panel .lede { font-size: 1rem; }
  .hero-photo { height: 240px; }
  .learn-more { padding: 10px 12px 10px 18px; font-size: 0.78rem; }
  .arrow-circle { width: 32px; height: 32px; }

  .stats { padding: 18px 0 22px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 20px 8px; align-items: start; }
  .stat-num { font-size: 1.7rem; }
  .stat-label { font-size: 0.65rem; letter-spacing: 0.08em; margin-top: 6px; }
  .hero-curve { height: 40px; }

  .section-head { margin-bottom: 36px; }
  .work-grid { grid-template-columns: 1fr; }
  .acc-head {
    grid-template-columns: 1fr 40px;
    padding: 20px;
  }
  .acc-meta { display: none; }
  .acc-toggle { width: 40px; height: 40px; }
  .acc-body-inner { padding: 0 20px 24px; }
  .work-filter { gap: 6px; }
  .wf-btn { padding: 9px 16px; font-size: 0.76rem; }

  .contact-methods { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .row-2 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
