/* ============================================================
   Nautical Pools — Editorial Dark Luxury
   Cormorant Garamond + Outfit
   Ink / Teal / Brass
   ============================================================ */

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

:root {
  /* ── Core palette ── */
  --ink:        #05090f;
  --ink-1:      #0b141e;
  --ink-2:      #111d2a;
  --ink-3:      #182638;

  /* Pool-water teal — contextual, unexpected in execution */
  --teal:       #12d4bc;
  --teal-dim:   rgba(18,212,188,.12);
  --teal-glow:  rgba(18,212,188,.2);

  /* Warm brass — replaces generic gold */
  --brass:      #c49456;
  --brass-lt:   #d9ac72;
  --brass-dim:  rgba(196,148,86,.1);

  /* Cream — not sterile white */
  --cream:      #f4f0e8;
  --cream-2:    #ede9e1;
  --stone:      #dbd6cc;
  --white:      #ffffff;
  --navy:       #0c1520;
  --navy-light: #2a3a50;

  /* Typography on dark */
  --on-dark:    rgba(244,240,232,.88);
  --on-dark-2:  rgba(244,240,232,.48);
  --on-dark-3:  rgba(244,240,232,.22);

  /* Typography on light */
  --on-light:   #0c1520;
  --on-light-2: #4a5566;
  --on-light-3: #8a94a6;

  /* Fonts */
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans:  'Outfit', system-ui, sans-serif;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Shadows */
  --sh-sm: 0 2px 12px rgba(5,9,15,.12);
  --sh-md: 0 8px 40px rgba(5,9,15,.18);
  --sh-lg: 0 20px 80px rgba(5,9,15,.28);
  --sh-teal: 0 8px 40px rgba(18,212,188,.18);
  --sh-brass: 0 8px 32px rgba(196,148,86,.22);

  --ease: cubic-bezier(.22,.68,0,1.15);
  --ease-out: cubic-bezier(0,0,.2,1);
  --t: .3s var(--ease-out);

  --pad: clamp(80px, 10vw, 130px);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--on-light);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1 {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: .98;
  font-weight: 300;
  letter-spacing: -.03em;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.02em;
}
h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.01em;
}

.label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: .2;
  max-width: 60px;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 80px;
  text-align: center;
}
.section-header .section-eyebrow { justify-content: center; }
.section-header .section-eyebrow::after { display: none; }

.section-sub {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--on-light-2);
}

/* Dark sections override */
.dark .label,
.dark .section-eyebrow { color: var(--teal); }
.dark h2 { color: var(--on-dark); }
.dark .section-sub { color: var(--on-dark-2); }

/* Italic accent */
.accent {
  font-style: italic;
  color: var(--teal);
}
.accent-brass {
  font-style: italic;
  color: var(--brass);
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--teal);
  color: var(--ink);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: transparent;
  color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal), var(--sh-teal);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(244,240,232,.22);
}
.btn-ghost:hover {
  border-color: var(--on-dark);
  background: rgba(244,240,232,.06);
}

.btn-brass {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
}
.btn-brass:hover {
  background: transparent;
  color: var(--brass);
  box-shadow: inset 0 0 0 1px var(--brass), var(--sh-brass);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--on-light);
  border-color: var(--stone);
}
.btn-outline:hover {
  border-color: var(--on-light);
  background: var(--on-light);
  color: var(--cream);
}

.btn-lg { padding: 18px 52px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── SCROLL ANIMATIONS ───────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
[data-aos].aos-visible { opacity: 1; transform: translateY(0); }
[data-aos][data-delay="1"] { transition-delay: .1s; }
[data-aos][data-delay="2"] { transition-delay: .2s; }
[data-aos][data-delay="3"] { transition-delay: .3s; }
[data-aos][data-delay="4"] { transition-delay: .4s; }

/* ── NAV ─────────────────────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all .5s var(--ease-out);
}
.nav-wrap.scrolled {
  background: rgba(5,9,15,.82);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(244,240,232,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 40px;
  transition: padding .4s;
}
.nav-wrap.scrolled .nav-inner { padding: 18px 40px; }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--on-dark);
}
.logo-anchor { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; letter-spacing: .06em; color: var(--on-dark); line-height: 1; }
.logo-anchor em { color: var(--teal); font-style: normal; }
.logo-dot { width: 5px; height: 5px; background: var(--teal); border-radius: 50%; margin-bottom: 1px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links > li > a {
  color: rgba(244,240,232,.6);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links > li > a:hover { color: var(--on-dark); background: rgba(244,240,232,.06); }
.nav-links > li > a.active { color: var(--teal); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--ink) !important;
  border-radius: var(--r-sm) !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  padding: 9px 22px !important;
  transition: all .2s var(--ease-out) !important;
}
.nav-cta:hover { background: #0fbaac !important; transform: translateY(-1px) !important; box-shadow: var(--sh-teal) !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--ink-2);
  border: 1px solid rgba(244,240,232,.07);
  border-radius: var(--r-md);
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: var(--sh-lg);
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* Bridge the gap so moving the mouse into the dropdown doesn't close it */
.dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.dropdown li a {
  display: block;
  padding: 10px 16px;
  color: rgba(244,240,232,.6);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: var(--r-sm);
  transition: all .15s;
}
.dropdown li a:hover { color: var(--on-dark); background: rgba(244,240,232,.07); }
.dropdown li a.active { color: var(--teal); }
.caret { font-size: .55em; opacity: .5; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--on-dark); border-radius: 2px; transition: var(--t); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  object-position: center 30%;
  animation: hZoom 14s ease-out forwards;
}
@keyframes hZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,9,15,.5) 0%, transparent 30%),
    linear-gradient(0deg, rgba(5,9,15,.96) 0%, rgba(5,9,15,.7) 38%, rgba(5,9,15,.2) 70%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px 0;
}

.hero-text-block {
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--teal);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fUp .9s .1s var(--ease-out) both;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--teal);
  opacity: .7;
}

.hero-content h1 {
  color: var(--on-dark);
  max-width: 880px;
  margin-bottom: 32px;
  animation: fUp .9s .2s var(--ease-out) both;
}

.hero-sub {
  font-family: var(--sans);
  color: var(--on-dark-2);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.8;
  animation: fUp .9s .3s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fUp .9s .4s var(--ease-out) both;
}

@keyframes fUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Bottom stats strip */
.hero-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(244,240,232,.08);
  background: rgba(5,9,15,.5);
  backdrop-filter: blur(8px);
}
.hero-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.h-stat {
  padding: 28px 24px;
  border-right: 1px solid rgba(244,240,232,.07);
  text-align: center;
}
.h-stat:last-child { border-right: none; }
.h-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.h-stat-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  right: 40px;
  bottom: 130px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--on-dark-3);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  animation: fUp 1s .7s var(--ease-out) both;
}
.scroll-arrow {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--on-dark-3), transparent);
  animation: sPulse 2.4s ease-in-out infinite;
}
@keyframes sPulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

/* ── TRUST BAR ───────────────────────────────────────── */
.trust-bar {
  background: var(--ink-1);
  border-top: 1px solid rgba(244,240,232,.05);
}
.trust-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 32px;
  gap: 6px;
  border-right: 1px solid rgba(244,240,232,.06);
  min-width: 180px;
}
.trust-item:last-child { border-right: none; }
.trust-item strong { font-family: var(--serif); font-size: 1.05rem; color: var(--on-dark); font-weight: 400; }
.trust-item span { font-size: .72rem; color: var(--on-dark-3); letter-spacing: .06em; }
.trust-item .trust-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.trust-item .trust-icon svg { width: 16px; height: 16px; color: var(--teal); }

/* ── SERVICES ─────────────────────────────────────────── */
.services {
  padding: var(--pad) 0;
  background: var(--ink);
  position: relative;
}
/* Subtle grid lines */
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,240,232,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,240,232,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(244,240,232,.06);
  border: 1px solid rgba(244,240,232,.06);
}

.service-card {
  background: var(--ink-1);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  transition: background .3s var(--ease-out);
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(244,240,232,.04);
  line-height: 1;
  pointer-events: none;
  transition: color .3s;
}
.service-card:hover { background: var(--ink-2); }
.service-card:hover::before { color: rgba(18,212,188,.07); }

/* Teal line that grows on hover */
.service-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s var(--ease-out);
}
.service-card:hover::after { transform: scaleY(1); }

.service-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.service-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(18,212,188,.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: all .3s;
}
.service-icon svg { width: 22px; height: 22px; color: var(--teal); transition: color .3s; }
.service-card:hover .service-icon { background: var(--teal); border-color: var(--teal); }
.service-card:hover .service-icon svg { color: var(--ink); }

.service-card--wide .service-icon { width: 56px; height: 56px; margin-bottom: 0; }
.service-card--wide .service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  color: var(--on-dark);
  margin-bottom: 14px;
  font-size: 1.6rem;
}
.service-card > p { color: var(--on-dark-2); font-size: .9rem; line-height: 1.75; margin-bottom: 0; }

.service-list { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }
.service-list li {
  font-size: .82rem;
  color: var(--on-dark-3);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
  letter-spacing: .02em;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: .7rem;
}
.service-list--cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  transition: gap .25s;
}
.service-link::after { content: '→'; transition: transform .25s; }
.service-card:hover .service-link { gap: 14px; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ── GALLERY ──────────────────────────────────────────── */
.gallery {
  padding: var(--pad) 0;
  background: var(--cream);
}
.gallery .label { color: var(--brass); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 8px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-grid--sm {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 360px;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--feature { grid-column: 1 / -1; height: 480px; }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-item img { transition: transform .7s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,9,15,.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s;
  display: flex; align-items: flex-end;
  padding: 20px;
}
.gallery-overlay span {
  color: var(--on-dark);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── BEFORE & AFTER ──────────────────────────────────── */
.before-after {
  padding: var(--pad) 0;
  background: var(--cream);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 60px;
}

.ba-pair {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 3 / 4;
  background: var(--ink-2);
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
}

.ba-after img,
.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* Before sits on top, clipped from the right */
.ba-before {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.9);
}

.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.ba-handle-circle svg {
  width: 14px;
  height: 14px;
  color: var(--ink);
}

.ba-labels {
  display: flex;
  justify-content: space-between;
}

.ba-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.ba-label--before {
  background: rgba(5,9,15,.12);
  color: var(--ink-3);
}

.ba-label--after {
  background: var(--teal-dim);
  color: var(--teal);
  border: 1px solid rgba(18,212,188,.25);
}

.ba-caption {
  font-size: .82rem;
  color: var(--on-light-2);
  font-style: italic;
  text-align: center;
}

@media (max-width: 900px) {
  .ba-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    padding: 0 28px;
  }
}

/* ── ABOUT ────────────────────────────────────────────── */
.about {
  padding: var(--pad) 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
/* Giant watermark */
.about-watermark {
  position: absolute;
  bottom: -40px; right: -20px;
  font-family: var(--serif);
  font-size: clamp(120px, 20vw, 260px);
  font-weight: 700;
  font-style: italic;
  color: rgba(244,240,232,.025);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%; height: 80%;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 46%;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 4px solid var(--ink);
}
/* Teal accent square */
.about-images::after {
  content: '';
  position: absolute;
  bottom: 52px; left: -16px;
  width: 56px; height: 56px;
  border: 1.5px solid var(--teal);
  opacity: .35;
}

.about-content h2 { color: var(--on-dark); margin-bottom: 24px; }
.about-content .label { color: var(--teal); }
.about-content > p { color: var(--on-dark-2); font-size: .95rem; margin-bottom: 18px; line-height: 1.85; }

/* Pull quote */
.pull-quote {
  margin: 36px 0;
  padding: 24px 32px;
  border-left: 2px solid var(--teal);
  background: rgba(18,212,188,.04);
}
.pull-quote p {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--on-dark);
  line-height: 1.5;
  margin: 0 !important;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid rgba(244,240,232,.08);
  border-bottom: 1px solid rgba(244,240,232,.08);
}
.stat { display: flex; flex-direction: column; gap: 6px; padding-right: 24px; }
.stat:not(:last-child) { border-right: 1px solid rgba(244,240,232,.08); margin-right: 24px; }
.stat strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--on-dark);
  font-weight: 400;
}
.stat span { font-size: .72rem; color: var(--on-dark-3); letter-spacing: .06em; }

/* ── GOOGLE REVIEWS ──────────────────────────────────── */
.reviews { padding: var(--pad) 0; background: var(--surface); }
.reviews-rating-summary {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; flex-wrap: wrap;
  margin-top: 12px;
}
.reviews-stars { color: #f9bc2a; font-size: 1.25rem; letter-spacing: 2px; }
.reviews-score { font-size: 1.1rem; font-weight: 600; color: var(--on-light); }
.reviews-google-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--on-light-2); text-decoration: none;
  border: 1px solid var(--stone); border-radius: 20px;
  padding: 4px 12px; transition: border-color .2s, color .2s;
}
.reviews-google-link:hover { border-color: #4285F4; color: #4285F4; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 12px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.review-card-header {
  display: flex; align-items: center; gap: 12px;
}
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink-2); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; flex-shrink: 0;
}
.reviewer-info { flex: 1; min-width: 0; }
.reviewer-info strong { display: block; font-size: .9rem; color: var(--on-light); }
.reviewer-info span { font-size: .72rem; color: var(--on-light-2); }
.review-card .review-stars { color: #f9bc2a; font-size: .9rem; letter-spacing: 1px; flex-shrink: 0; }
.review-text {
  font-size: .875rem; color: var(--on-light-2);
  line-height: 1.75; margin: 0; flex: 1;
}
.review-date { font-size: .72rem; color: var(--on-light-3, #aaa); }

/* ── CTA BAND ─────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: var(--pad) 0;
  overflow: hidden;
  text-align: center;
  background: var(--ink);
}
.cta-band-bg { position: absolute; inset: 0; }
.cta-band-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 120% at 50% 100%, rgba(18,212,188,.06) 0%, transparent 70%),
              linear-gradient(to top, rgba(5,9,15,.98) 0%, rgba(5,9,15,.88) 100%);
}
.cta-band-content { position: relative; z-index: 2; }
.cta-band-content h2 { color: var(--on-dark); margin-bottom: 20px; }
.cta-band-content p { color: var(--on-dark-2); font-size: 1.05rem; max-width: 500px; margin: 0 auto 44px; line-height: 1.8; }

/* ── CONTACT ──────────────────────────────────────────── */
.contact {
  padding: var(--pad) 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 96px;
  align-items: start;
}
.contact-info h2 { color: var(--on-light); margin-bottom: 18px; }
.contact-info .label { color: var(--brass); }
.contact-info > p { color: var(--on-light-2); margin-bottom: 44px; line-height: 1.8; }

.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-detail {
  display: flex; align-items: center;
  gap: 18px; font-size: .88rem; color: var(--on-light-2);
}
.contact-detail-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--stone);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 16px; height: 16px; color: var(--brass); }

/* Form */
.contact-form {
  background: var(--ink);
  border-radius: 0;
  padding: 52px;
}
.form-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--on-dark);
  margin-bottom: 32px;
  font-weight: 400;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid rgba(244,240,232,.1);
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--on-dark);
  background: rgba(244,240,232,.04);
  transition: all .2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--on-dark-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(18,212,188,.08);
  background: rgba(18,212,188,.03);
}
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2312d4bc' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option { background: var(--ink-2); color: var(--on-dark); }
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: .72rem; color: var(--on-dark-3); margin-top: 16px; letter-spacing: .04em; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(244,240,232,.05);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  color: var(--on-dark-3);
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.footer-links a:hover { color: var(--teal); }
.footer-copy { color: rgba(244,240,232,.15); font-size: .72rem; }

/* ── LIGHTBOX ─────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5,9,15,.95);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(12px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap { max-width: 90vw; max-height: 88vh; overflow: hidden; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 88vh; width: auto; height: auto; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  background: rgba(244,240,232,.08); border: 1px solid rgba(244,240,232,.1);
  color: var(--on-dark); font-size: .9rem; width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(18,212,188,.15); color: var(--teal); border-color: var(--teal); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(244,240,232,.07); border: 1px solid rgba(244,240,232,.1);
  color: var(--on-dark); width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(18,212,188,.1); border-color: var(--teal); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ── PAGE HERO (inner pages) ──────────────────────────── */
.page-hero {
  position: relative;
  min-height: 440px;
  display: flex; align-items: flex-end;
  overflow: hidden; padding-top: 80px;
  background: var(--ink);
}
.page-hero--short { min-height: 320px; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(5,9,15,.96) 0%, rgba(5,9,15,.6) 50%, rgba(5,9,15,.25) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 52px 40px; color: var(--on-dark);
}
.page-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--on-dark); margin: 16px 0 20px; max-width: 700px;
}
.page-hero-content > p {
  color: var(--on-dark-2); font-size: 1rem;
  max-width: 560px; margin-bottom: 32px; line-height: 1.8;
}

.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: .7rem; letter-spacing: .1em;
  color: var(--on-dark-3); text-transform: uppercase;
}
.breadcrumb a { color: var(--on-dark-3); transition: color .2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: rgba(244,240,232,.15); }

/* ── SERVICE DETAIL ───────────────────────────────────── */
.service-detail { padding: var(--pad) 0; background: var(--cream); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px; align-items: start;
}
.service-detail-main h2 {
  font-size: 1.7rem; color: var(--on-light);
  margin: 52px 0 16px; font-weight: 700; font-family: var(--sans);
}
.service-detail-main h2:first-child { margin-top: 0; }
.service-detail-main p { color: var(--on-light-2); margin-bottom: 16px; line-height: 1.85; }
.service-detail-main a { color: var(--brass); }
.service-detail-main a:hover { color: var(--on-light); }
.service-detail-main ol { counter-reset: p-c; display: flex; flex-direction: column; gap: 10px; }
.service-detail-main ol li { counter-increment: p-c; font-size: .95rem; color: var(--on-light-2); padding-left: 28px; position: relative; line-height: 1.65; }
.service-detail-main ol li::before { content: counter(p-c) '.'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

.check-list { margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  font-size: .9rem; color: var(--on-light-2);
  padding-left: 28px; position: relative; line-height: 1.6;
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid rgba(18,212,188,.3);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3 5.5L7 1' stroke='%2312d4bc' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

.info-box {
  background: var(--brass-dim);
  border-left: 2px solid var(--brass);
  padding: 22px 28px; margin: 36px 0;
}
.info-box strong { display: block; color: var(--on-light); font-size: .9rem; margin-bottom: 8px; font-weight: 700; }
.info-box p { color: var(--on-light-2); margin: 0; font-size: .875rem; line-height: 1.75; }

.filter-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0 32px; }
.filter-type {
  border: 1px solid var(--stone); padding: 24px;
  transition: border-color .2s, box-shadow .2s;
}
.filter-type:hover { border-color: var(--brass); box-shadow: 0 4px 20px rgba(196,148,86,.08); }
.filter-type h3 { font-size: .95rem; color: var(--on-light); margin-bottom: 10px; font-family: var(--sans); font-weight: 700; }
.filter-type p { font-size: .85rem; color: var(--on-light-2); margin: 0; line-height: 1.7; }

/* FAQ */
.faq-list { margin-top: 24px; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--stone); }
.faq-item { border-bottom: 1px solid var(--stone); }
.faq-item.open { background: rgba(18,212,188,.02); }
.faq-q {
  width: 100%; text-align: left; padding: 22px 0;
  background: none; border: none;
  font-family: var(--sans); font-size: .92rem; font-weight: 600;
  color: var(--on-light); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem; font-weight: 300;
  color: var(--teal); flex-shrink: 0;
  transition: transform .3s var(--ease-out);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 22px; }
.faq-a p { color: var(--on-light-2); font-size: .875rem; margin: 0; line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 0; position: sticky; top: 100px; }
.sidebar-card {
  background: var(--ink);
  padding: 32px;
  border-bottom: 1px solid rgba(244,240,232,.06);
}
.sidebar-card:first-child { border-top: 1px solid rgba(244,240,232,.06); }
.sidebar-card h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--on-dark); margin-bottom: 12px; font-weight: 400; }
.sidebar-card > p { color: var(--on-dark-2); font-size: .85rem; margin-bottom: 22px; line-height: 1.7; }
.sidebar-card--services ul { display: flex; flex-direction: column; gap: 0; }
.sidebar-card--services li { border-bottom: 1px solid rgba(244,240,232,.06); }
.sidebar-card--services li:last-child { border-bottom: none; }
.sidebar-card--services li a {
  font-size: .8rem; color: var(--on-dark-3);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; transition: color .2s; letter-spacing: .04em;
}
.sidebar-card--services li a::after { content: '→'; font-size: .8rem; transition: transform .2s; }
.sidebar-card--services li a:hover { color: var(--teal); }
.sidebar-card--services li a:hover::after { transform: translateX(4px); }
.blog-teaser { display: block; }
.blog-teaser strong { display: block; font-family: var(--serif); font-size: 1.1rem; color: var(--on-dark); margin-bottom: 8px; font-weight: 400; }
.blog-teaser span { color: var(--teal); font-size: .75rem; letter-spacing: .06em; }
.sidebar-card--gallery img { height: 150px; object-fit: cover; margin-bottom: 12px; }
.gallery-link { font-size: .78rem; color: var(--teal); letter-spacing: .1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }

/* ── BLOG LISTING ─────────────────────────────────────── */
.blog-listing { padding: var(--pad) 0; background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--stone);
  transition: all .3s var(--ease-out);
  overflow: hidden;
}
.blog-card:hover { border-color: var(--teal); box-shadow: 0 12px 40px rgba(18,212,188,.06), var(--sh-md); transform: translateY(-6px); }
.blog-card-img { display: block; height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 32px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.blog-tag {
  font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); padding: 3px 10px;
  border: 1px solid rgba(18,212,188,.25);
  background: rgba(18,212,188,.06);
}
.blog-date { font-size: .74rem; color: var(--on-light-3); }
.blog-card-body h2 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
  margin-bottom: 12px; line-height: 1.3; color: var(--on-light);
}
.blog-card-body h2 a { transition: color .2s; }
.blog-card-body h2 a:hover { color: var(--teal); }
.blog-card-body p { font-size: .875rem; color: var(--on-light-2); margin-bottom: 20px; line-height: 1.7; }
.read-more {
  font-size: .72rem; font-weight: 700; color: var(--brass);
  letter-spacing: .14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.read-more::after { content: '→'; transition: transform .2s; }
.read-more:hover { gap: 10px; }
.read-more:hover::after { transform: translateX(3px); }

/* ── BLOG POST ────────────────────────────────────────── */
.post-hero { position: relative; height: 480px; margin-top: 80px; overflow: hidden; background: var(--ink); }
.post-hero-img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,9,15,.85) 0%, transparent 55%); }

.post-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 64px; padding: 72px 40px 100px;
  max-width: 1240px; margin: 0 auto; align-items: start;
}
.post-main .breadcrumb { margin-bottom: 24px; }
.post-main .breadcrumb a { color: var(--on-light-3); }
.post-main .breadcrumb span { color: var(--stone); }
.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.blog-author { font-size: .74rem; color: var(--on-light-3); }
.post-main h1 { font-size: clamp(2rem, 3.8vw, 3rem); color: var(--on-light); margin-bottom: 28px; font-weight: 400; }
.post-intro { font-size: 1.1rem; color: var(--on-light-2); line-height: 1.85; margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--stone); font-style: italic; }
.post-main h2 { font-size: 1.5rem; color: var(--on-light); margin: 44px 0 14px; font-weight: 700; font-family: var(--sans); }
.post-main h3 { font-size: 1.05rem; color: var(--on-light); margin: 28px 0 10px; font-weight: 700; }
.post-main p { color: var(--on-light-2); line-height: 1.85; margin-bottom: 18px; }
.post-main ul, .post-main ol { margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.post-main li { color: var(--on-light-2); font-size: .95rem; padding-left: 20px; position: relative; line-height: 1.7; }
.post-main ul li::before { content: '—'; position: absolute; left: 0; color: var(--teal); font-size: .8rem; top: 2px; }
.post-main ol { counter-reset: pc; }
.post-main ol li { counter-increment: pc; }
.post-main ol li::before { content: counter(pc) '.'; position: absolute; left: 0; color: var(--brass); font-weight: 700; font-size: .85rem; }
.post-main a { color: var(--brass); text-decoration: underline; text-decoration-color: rgba(196,148,86,.3); transition: text-decoration-color .2s; }
.post-main a:hover { text-decoration-color: var(--brass); }
.post-main strong { color: var(--on-light); font-weight: 700; }
.post-cta {
  background: var(--ink);
  padding: 44px;
  margin-top: 56px;
  border-top: 2px solid var(--teal);
}
.post-cta h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--on-dark); margin-bottom: 12px; font-weight: 400; }
.post-cta p { color: var(--on-dark-2); margin-bottom: 24px; }
.post-cta .btn { margin-right: 12px; margin-top: 8px; }

.post-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 0; }
.post-list { display: flex; flex-direction: column; gap: 0; }
.post-list li { padding-left: 0; border-bottom: 1px solid rgba(244,240,232,.06); }
.post-list li:last-child { border-bottom: none; }
.post-list li::before { display: none; }
.post-list a { font-size: .8rem; color: var(--on-dark-2); line-height: 1.5; display: block; padding: 12px 0; transition: color .2s; }
.post-list a:hover { color: var(--teal); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .container { padding: 0 28px; }
  .nav-inner { padding: 22px 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 64px; }
  .about-images { height: 440px; }
  .about-watermark { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .post-layout { grid-template-columns: 1fr; padding: 52px 28px 80px; }
  .post-sidebar { position: static; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-types { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .h-stat { border-right: none; border-bottom: 1px solid rgba(244,240,232,.07); }
  .h-stat:nth-child(2n) { border-bottom: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 18px 20px; }
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(82vw, 300px); height: 100dvh;
    background: var(--ink-1);
    border-left: 1px solid rgba(244,240,232,.06);
    flex-direction: column; align-items: flex-start;
    padding: 88px 24px 40px;
    gap: 0; transform: translateX(100%);
    transition: transform .35s var(--ease-out);
    z-index: 99; overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    font-size: .8rem; padding: 14px 0; border-radius: 0;
    border-bottom: 1px solid rgba(244,240,232,.05); width: 100%;
  }
  .nav-cta { margin-top: 20px; width: 100% !important; border-radius: var(--r-sm) !important; justify-content: center; }

  /* Mobile dropdown */
  .dropdown {
    position: static; opacity: 1; pointer-events: all; transform: none;
    box-shadow: none; border: none; min-width: auto;
    background: rgba(244,240,232,.04); border-radius: 0;
    padding: 0 0 4px 16px; margin: 0; display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown::before { display: none; }
  .dropdown li a { padding: 10px 12px; }

  .hero-content { padding: 0 20px; }
  .hero-text-block { padding-bottom: 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .scroll-hint { display: none; }
  .hero-strip { display: none; }

  .trust-grid { flex-wrap: wrap; }
  .trust-item { min-width: 50%; border-right: none !important; border-bottom: 1px solid rgba(244,240,232,.06); }

  .services-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-template-columns: 1fr; gap: 24px; }
  .service-card { padding: 36px 28px; }
  .service-list--cols { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; padding: 0 16px; gap: 6px; }
  .gallery-grid--sm { grid-template-columns: 1fr; grid-auto-rows: 280px; padding: 0 16px; }
  .gallery-item--feature { height: 280px; }

  .about-images { height: 340px; }
  .about-img-accent { display: none; }
  .about-img-main { width: 100%; height: 100%; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .stat:not(:last-child) { border-right: none; margin-right: 0; border-bottom: 1px solid rgba(244,240,232,.08); padding-bottom: 20px; margin-bottom: 20px; }

  .contact-form { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; gap: 16px; }

  .post-hero { height: 300px; }
  .post-cta .btn { display: block; width: 100%; margin-right: 0; margin-top: 12px; }

  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-auto-rows: 150px; }
  .about-stats { grid-template-columns: 1fr; }
  .hero-strip-inner { display: none; }
  .services-grid { background: none; gap: 12px; }
  .service-card { border: 1px solid rgba(244,240,232,.06); }
}
