/* MAGCCO LLC - warm & friendly, veteran-owned contractor
   Palette: deep navy (logo) + warm cream + clay/copper accent */

:root {
  --navy: oklch(26% 0.045 258);
  --navy-deep: oklch(21% 0.04 258);
  --navy-soft: oklch(33% 0.045 258);
  --cream: oklch(97.5% 0.011 85);
  --cream-deep: oklch(94.5% 0.017 82);
  --ink: oklch(25% 0.03 258);
  --ink-soft: oklch(42% 0.02 258);
  --clay: #E87E2F;          /* MAGCCO orange, from their live site */
  --clay-deep: #c9661d;
  --teal: #68ccd1;          /* MAGCCO secondary */
  --gold: oklch(80% 0.13 82);
  --line: oklch(88% 0.012 82);
  --line-dark: oklch(35% 0.03 258);
  --white-warm: oklch(98.5% 0.006 85);
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Albert Sans", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --pad-x: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(2.25rem, 4.5vw, 3.5rem);
  --maxw: 76rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background 0.25s, box-shadow 0.35s var(--ease-out);
}
.btn-lg { padding: 0.85rem 1.7rem; font-size: 0.98rem; }
.btn-clay {
  background: var(--clay);
  color: var(--white-warm);
  box-shadow: 0 10px 24px -10px rgb(201 102 29 / 0.65);
}
.btn-clay:hover { background: var(--clay-deep); transform: translateY(-2px); }
.btn-ghost {
  background: oklch(100% 0 0 / 0.1);
  color: var(--white-warm);
  border: 1px solid oklch(100% 0 0 / 0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: oklch(100% 0 0 / 0.2); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0.8rem var(--pad-x);
  transition: box-shadow 0.35s, padding 0.35s;
  color: var(--ink);
  background: var(--white-warm);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 30px -18px oklch(20% 0.04 258 / 0.55);
  padding: 0.5rem var(--pad-x);
}
.main-nav a[aria-current="page"] {
  color: var(--clay-deep);
  opacity: 1;
  font-weight: 700;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-logo {
  height: 58px;
  width: auto;
  transition: height 0.35s;
}
.site-header.is-scrolled .brand-logo { height: 48px; }
.main-nav { display: flex; align-items: center; gap: 1.5rem; }
.main-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.main-nav a:hover { opacity: 1; }
.nav-phone { font-family: var(--display); font-weight: 700; white-space: nowrap; }
.nav-cta { opacity: 1 !important; }
.main-nav .btn { padding: 0.66rem 1.35rem; font-size: 1.02rem; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white-warm);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
  background:
    linear-gradient(to bottom, oklch(21% 0.04 258 / 0.72), oklch(21% 0.04 258 / 0.55) 45%, oklch(21% 0.04 258 / 0.82)),
    radial-gradient(120% 90% at 50% 85%, oklch(21% 0.04 258 / 0.5), transparent 65%);
}
.hero-content {
  position: relative;
  max-width: 56rem;
  width: 100%;
  margin: 0 auto;
  padding: 5rem var(--pad-x) 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: oklch(100% 0 0 / 0.12);
  border: 1px solid oklch(100% 0 0 / 0.25);
  border-radius: 999px;
  padding: 0.42rem 1rem 0.42rem 0.45rem;
  backdrop-filter: blur(6px);
}
.chip-badge { width: 26px; height: 26px; border-radius: 50%; }
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0.6rem 0 0.4rem;
  max-width: 18ch;
}
.hero-kicker {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.7rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  max-width: 52ch;
  opacity: 0.94;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.1rem; justify-content: center; }
.hero-proof {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.stars { color: var(--gold); letter-spacing: 0.12em; font-size: 1.02rem; }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  color: var(--white-warm);
  opacity: 0.7;
  animation: drift 2.4s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 7px); }
}

/* ---------- Trust band ---------- */
.trust-band {
  background: var(--navy-deep);
  color: var(--white-warm);
  border-top: 1px solid var(--line-dark);
  padding: 1.1rem var(--pad-x);
}
.trust-band ul {
  list-style: none;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem 1.2rem;
  font-size: 0.82rem;
  opacity: 0.95;
}
.trust-band strong { font-family: var(--display); font-weight: 700; color: var(--gold); }
.tb-sep { color: var(--clay); font-size: 0.7rem; }

/* ---------- Sections shared ---------- */
section { padding: var(--section-y) var(--pad-x); }
.trust-band { padding-top: 1.1rem; padding-bottom: 1.1rem; }
.section-head { max-width: var(--maxw); margin: 0 auto 1.8rem; text-align: center; }
.section-head h2, .about h2, .about h1, .contact h2, .contact h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 30ch;
}
.section-head h2 { margin-inline: auto; }
.section-head p {
  margin: 0.7rem auto 0;
  max-width: 62ch;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.section-head-light h2, .section-head-light p { color: var(--white-warm); }
.section-head-light p { opacity: 0.85; }

/* ---------- Services ---------- */
.services { background: var(--cream); }
.svc-grid2 {
  max-width: 68rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.svc-feature {
  background: var(--white-warm);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px -30px oklch(25% 0.03 258 / 0.35);
}
.svc-feature-img { aspect-ratio: 4 / 3; overflow: hidden; }
.svc-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-feature-body { padding: clamp(1rem, 1.8vw, 1.5rem); }
.svc-feature h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.svc-feature p { color: var(--ink-soft); font-size: 0.88rem; }
.svc-points {
  list-style: none;
  margin-top: 1.1rem;
  display: grid;
  gap: 0.45rem;
}
.svc-points li {
  padding-left: 1.4rem;
  position: relative;
  font-weight: 500;
  font-size: 0.85rem;
}
.svc-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--clay);
  font-weight: 800;
}
.svc-list { display: grid; gap: 0; }
.svc-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 0;
}
.svc-item + .svc-item { border-top: 1px solid var(--line); }
.svc-grid2 .svc-item { border-top: 1px solid var(--line); }
.svc-grid2 .svc-item:nth-child(-n+2) { border-top: none; }
.svc-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}
.svc-item h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.svc-item p { color: var(--ink-soft); font-size: 0.85rem; line-height: 1.5; }

/* ---------- Insurance ---------- */
.insurance {
  background:
    radial-gradient(90% 70% at 85% 10%, oklch(30% 0.055 258), transparent 60%),
    var(--navy);
  color: var(--white-warm);
}
.ins-steps {
  list-style: none;
  max-width: 62rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(1.2rem, 2.2vw, 1.8rem);
  counter-reset: step;
}
.ins-steps li {
  border-top: 2px solid oklch(100% 0 0 / 0.18);
  padding-top: 1.4rem;
}
.ins-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.ins-steps h3 {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0.9rem 0 0.6rem;
}
.ins-steps p { font-size: 0.85rem; opacity: 0.85; line-height: 1.55; }
.ins-cta { text-align: center; margin-top: 2rem; }

/* ---------- Before / After ---------- */
.beforeafter { background: var(--cream-deep); }
.ba-pair {
  max-width: 58rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.ba-slider {
  container-type: inline-size;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  box-shadow: 0 20px 44px -30px oklch(25% 0.03 258 / 0.5);
  cursor: ew-resize;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}
.ba-before-wrap .ba-img { width: 100cqw; max-width: none; }
.ba-img { object-position: center 42%; }
.ba-more { text-align: center; margin-top: 1.4rem; font-size: 0.92rem; }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--white-warm);
  box-shadow: 0 0 14px oklch(0% 0 0 / 0.35);
}
.ba-handle-grip {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white-warm);
  color: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px oklch(0% 0 0 / 0.3);
}
.ba-tag {
  position: absolute;
  top: 1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  color: var(--white-warm);
  background: oklch(21% 0.04 258 / 0.65);
  backdrop-filter: blur(4px);
}
.ba-tag-before { left: 1rem; }
.ba-tag-after { right: 1rem; }
.ba-caption {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-warm);
  background: oklch(21% 0.04 258 / 0.65);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* ---------- Work video (Our Work slideshow) ---------- */
.workvideo { background: var(--cream); }
.workvideo-frame {
  max-width: 60rem;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 30px 70px -35px oklch(25% 0.03 258 / 0.55);
  line-height: 0;
}
.workvideo-player {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }
.gallery-grid {
  max-width: 62rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  grid-auto-flow: dense;
  gap: 0.7rem;
}
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: zoom-in;
}
.gallery-grid .g-tall { grid-row: span 2; }
.gallery-grid .g-wide { grid-column: span 2; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-warm);
  background: linear-gradient(to top, oklch(21% 0.04 258 / 0.75), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-grid figure:hover figcaption { opacity: 1; }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream-deep); }
#home-reviews { background: var(--cream); }
.reviews-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 1.02rem !important;
  color: var(--ink) !important;
}
.reviews-meta .stars { font-size: 1.1rem; }
.g-link {
  color: var(--clay-deep);
  font-weight: 700;
  text-decoration: none;
}
.g-link:hover { text-decoration: underline; }
.review-row {
  max-width: 60rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}
.review {
  background: var(--white-warm);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem;
}
.review-mid {
  background: var(--navy);
  color: var(--white-warm);
  border-color: var(--navy);
  transform: translateY(-10px);
}
.review .stars { display: block; margin-bottom: 0.9rem; }
.review p {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.45;
}
.review footer { margin-top: 1.1rem; font-weight: 700; font-size: 0.92rem; }
.review footer span { font-weight: 400; opacity: 0.65; }

/* ---------- Google-style review cards ---------- */
.greview-row { align-items: stretch; }
.greview {
  min-width: 0;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  font-family: Roboto, "Albert Sans", Arial, sans-serif;
  color: #202124;
  box-shadow: 0 1px 3px rgb(60 64 67 / 0.12);
  text-align: left;
}
.greview header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.greview header div { flex: 1; min-width: 0; }
.greview header strong { display: block; font-size: 0.95rem; font-weight: 500; }
.greview header small { color: #5f6368; font-size: 0.78rem; }
.gr-avatar {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 500;
}
.gr-glogo {
  flex: none;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23FFC107' d='M43.6 20.1H42V20H24v8h11.3C33.7 32.7 29.2 36 24 36c-6.6 0-12-5.4-12-12s5.4-12 12-12c3.1 0 5.9 1.2 8 3l5.7-5.7C34.5 6.1 29.5 4 24 4 13 4 4 13 4 24s9 20 20 20 20-9 20-20c0-1.3-.1-2.6-.4-3.9z'/%3E%3Cpath fill='%23FF3D00' d='M6.3 14.7l6.6 4.8C14.7 15.1 19 12 24 12c3.1 0 5.9 1.2 8 3l5.7-5.7C34.5 6.1 29.5 4 24 4 16.3 4 9.7 8.3 6.3 14.7z'/%3E%3Cpath fill='%234CAF50' d='M24 44c5.2 0 9.9-2 13.4-5.2l-6.2-5.2C29.2 35.1 26.7 36 24 36c-5.2 0-9.6-3.3-11.3-8l-6.5 5C9.5 39.6 16.2 44 24 44z'/%3E%3Cpath fill='%231976D2' d='M43.6 20.1H42V20H24v8h11.3c-.8 2.2-2.2 4.2-4.1 5.6l6.2 5.2C41.4 35.4 44 30.1 44 24c0-1.3-.1-2.6-.4-3.9z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.gr-stars {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.7rem 0 0.5rem;
}
.gr-stars .stars { color: #fbbc04; font-size: 0.95rem; letter-spacing: 0.05em; }
.gr-stars time { color: #5f6368; font-size: 0.8rem; }
.gr-text { font-size: 0.82rem; line-height: 1.5; color: #3c4043; }

/* ---------- About ---------- */
.about { background: var(--cream); }
main > .about:first-child,
main > .contact:first-child { padding-top: clamp(6.5rem, 10vw, 8rem); }
.about-grid {
  max-width: 58rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-photo { position: relative; }
.about-photo > img:first-child {
  border-radius: 20px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}
.about-badge {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: clamp(90px, 10vw, 130px);
  border-radius: 50%;
  box-shadow: 0 12px 30px -10px oklch(25% 0.03 258 / 0.45);
  border: 5px solid var(--cream);
}
.about h2, .about h1 { margin-bottom: 1.2rem; }
.about-body p { color: var(--ink-soft); margin-bottom: 0.8rem; max-width: 58ch; font-size: 0.9rem; }
.about-body p strong { color: var(--ink); }
.about-team {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin: 1.6rem 0;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-team strong { font-family: var(--display); font-size: 1.05rem; display: block; }
.about-team span { font-size: 0.85rem; color: var(--ink-soft); }
.about-values {
  font-family: var(--display);
  font-weight: 700;
  color: var(--clay-deep) !important;
  letter-spacing: 0.01em;
}

/* ---------- FAQ ---------- */
.faq { background: var(--cream-deep); }
.faq-list { max-width: 46rem; margin: 0 auto; }
.faq details {
  background: var(--white-warm);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.04rem;
  padding: 1.1rem 1.3rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 2.5px;
  background: var(--clay);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease-out);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq details p {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
  max-width: 65ch;
}

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(80% 60% at 10% 0%, oklch(30% 0.055 258), transparent 55%),
    var(--navy-deep);
  color: var(--white-warm);
}
.contact-grid {
  max-width: 60rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.contact-intro > p { opacity: 0.85; margin-top: 0.9rem; max-width: 42ch; font-size: 0.92rem; }
.contact-facts { list-style: none; margin-top: 2.2rem; display: grid; gap: 1.3rem; }
.cf-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}
.contact-facts a {
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
}
.contact-facts a:hover { color: var(--gold); }
.contact-note { margin-top: 2rem; font-weight: 600; color: var(--gold); }
.contact-form {
  background: var(--white-warm);
  color: var(--ink);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: grid;
  gap: 1.1rem;
  box-shadow: 0 40px 80px -40px oklch(10% 0.03 258 / 0.8);
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px oklch(63% 0.125 45 / 0.2);
}
.contact-form textarea { resize: vertical; }
.contact-form .btn { justify-content: center; margin-top: 0.3rem; }
.form-fine { font-size: 0.8rem; color: var(--ink-soft); text-align: center; }
.form-status {
  margin-top: 0.2rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}
.form-status.is-success {
  background: oklch(92% 0.08 150);
  color: oklch(38% 0.09 150);
}
.form-status.is-error {
  background: oklch(93% 0.06 30);
  color: oklch(45% 0.14 30);
}
.form-status a { color: inherit; text-decoration: underline; }
.hp { position: absolute; left: -9999px; }

/* ---------- Page head (sub-pages) ---------- */
.page-head {
  background:
    radial-gradient(90% 70% at 85% 10%, oklch(30% 0.055 258), transparent 60%),
    var(--navy);
  color: var(--white-warm);
  padding-top: clamp(6rem, 9vw, 7rem);
  padding-bottom: clamp(2rem, 3.5vw, 2.75rem);
  padding-inline: max(var(--pad-x), calc((100% - var(--maxw)) / 2));
}
.page-head { text-align: center; }
.page-head h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.9vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 44ch;
  margin-inline: auto;
}
.page-head p {
  margin: 0.8rem auto 0;
  max-width: 62ch;
  font-size: 0.92rem;
  opacity: 0.85;
}
.reviews-meta-light { color: var(--white-warm) !important; justify-content: center; }
.reviews-meta-light .g-link { color: var(--gold); }

/* ---------- How we work ---------- */
.howwork { background: var(--cream-deep); }
.how-steps {
  list-style: none;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.2rem, 3.5vw, 3rem);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
}
.how-steps li { display: flex; align-items: center; gap: 0.5rem; }
.how-steps span {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clay);
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(80% 60% at 10% 0%, oklch(30% 0.055 258), transparent 55%),
    var(--navy-deep);
  color: var(--white-warm);
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.01em;
}
.cta-inner p { margin: 0.7rem 0 1.4rem; opacity: 0.85; font-size: 0.95rem; }
.cta-inner .hero-actions { justify-content: center; }

/* ---------- Services inline link ---------- */
.svc-link {
  color: var(--clay-deep);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.svc-link:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--white-warm);
  border-top: 1px solid var(--line-dark);
  padding: 3.5rem var(--pad-x) 1.5rem;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.footer-brand .brand-logo {
  height: 56px;
  background: var(--white-warm);
  padding: 6px 12px;
  border-radius: 8px;
}
.footer-brand p { font-size: 0.9rem; opacity: 0.7; max-width: 38ch; }
.footer-nav, .footer-contact { display: grid; gap: 0.55rem; align-content: start; }
.footer-contact span { font-size: 0.93rem; opacity: 0.8; }
.footer-nav a, .footer-contact a {
  text-decoration: none;
  font-size: 0.93rem;
  opacity: 0.8;
  transition: opacity 0.2s;
  justify-self: start;
}
.footer-nav a:hover, .footer-contact a:hover { opacity: 1; }
.footer-legal {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
  padding-top: 1.4rem;
  font-size: 0.82rem;
  opacity: 0.55;
}

/* ---------- Reveal on scroll (animates in AND out) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide.is-active { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .svc-grid2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .review-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .review-row { grid-template-columns: 1fr; }
  .ba-pair { grid-template-columns: 1fr; max-width: 22rem; }
}
@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--cream-deep);
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
  }
  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.2s;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(21rem, 85vw);
    background: var(--white-warm);
    color: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5rem;
    gap: 1.4rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    box-shadow: -20px 0 60px oklch(0% 0 0 / 0.4);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { font-size: 1.15rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 26rem; }
  .review-mid { transform: none; }
}
@media (max-width: 560px) {
  .brand-logo { height: 42px; padding: 4px 8px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-grid .g-wide { grid-column: span 2; }
  .svc-item { grid-template-columns: 72px 1fr; gap: 1rem; }
  .svc-item img { width: 72px; height: 72px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}


/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: oklch(15% 0.03 258 / 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3vmin;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  cursor: zoom-out;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 94vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 30px 80px oklch(0% 0 0 / 0.5);
}
.lightbox figcaption {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white-warm);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0.9;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--white-warm);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}
