﻿:root {
  /* Palette */
  --bg: #f3f1ea;
  --surface: #e7efea;
  --sea: #2f6f73;
  --ink: #1e2b2c;
  --accent: #c77b5a;

  --line: rgba(30, 43, 44, 0.14);
  --shadow: 0 14px 40px rgba(30, 43, 44, 0.12);
  --shadow2: 0 10px 26px rgba(30, 43, 44, 0.1);

  --r-xl: 26px;
  --r-lg: 20px;
  --r-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(47, 111, 115, 0.18);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
}

/* Typography */
.h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.05;
  margin: 14px 0 12px;
  letter-spacing: 0.2px;
}

.h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
  margin: 0 0 10px;
}

.h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.lead {
  font-size: 17px;
  margin: 0 0 18px;
  color: rgba(30, 43, 44, 0.86);
}

.muted {
  color: rgba(30, 43, 44, 0.72);
}
.tiny {
  font-size: 13px;
}
.accent {
  color: var(--sea);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(47, 111, 115, 0.28);
  outline-offset: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(243, 241, 234, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(47, 111, 115, 0.18),
    rgba(199, 123, 90, 0.18)
  );
  border: 1px solid var(--line);
  font-weight: 900;
  letter-spacing: 0.6px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-weight: 900;
  letter-spacing: 0.2px;
}
.brand-sub {
  font-size: 12px;
  color: rgba(30, 43, 44, 0.65);
}

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: rgba(30, 43, 44, 0.78);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
}

.nav a:hover {
  background: rgba(47, 111, 115, 0.1);
  color: var(--ink);
}

/* Burger + mobile */
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(47, 111, 115, 0.1);
  border: 1px solid var(--line);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(30, 43, 44, 0.8);
  margin: 5px auto;
  border-radius: 4px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 0 14px;
}

.mobile-nav a {
  display: block;
  padding: 12px 16px;
  margin: 6px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  color: rgba(30, 43, 44, 0.82);
  background: rgba(47, 111, 115, 0.08);
  border: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: block;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-soft {
  background: rgba(47, 111, 115, 0.06);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  transition:
    transform 0.08s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  user-select: none;
  color: inherit;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    rgba(47, 111, 115, 0.22),
    rgba(47, 111, 115, 0.12)
  );
  border-color: rgba(47, 111, 115, 0.28);
  box-shadow: var(--shadow2);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    rgba(47, 111, 115, 0.28),
    rgba(199, 123, 90, 0.14)
  );
}

.btn-ghost {
  background: rgba(243, 241, 234, 0.6);
  color: rgba(30, 43, 44, 0.88);
}

.btn-ghost:hover {
  background: rgba(47, 111, 115, 0.1);
}
.btn-wide {
  width: 100%;
}

/* HERO */
.service-hero {
  min-height: 68vh;
  min-height: 68svh;
  padding: 48px 0 30px;
}

.service-hero .hero-left {
  max-width: 760px;
}

.hero-cover {
  position: relative;
  min-height: 84vh;
  min-height: 84svh;
  display: flex;
  align-items: center;
  padding: 56px 0 36px;

  background-image: url("./img/hero-texture.webp");
  background-size: cover;
  background-position: 65% 35%;
  background-repeat: no-repeat;

  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 43, 44, 0.62) 0%,
    rgba(47, 111, 115, 0.38) 38%,
    rgba(243, 241, 234, 0.94) 76%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-left {
  max-width: 680px;
  animation: heroFade 900ms ease-out both;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Better headline contrast on textured hero image */
.hero-cover .h1 {
  color: rgba(247, 248, 246, 0.98);
  text-shadow:
    0 2px 8px rgba(30, 43, 44, 0.45),
    0 10px 26px rgba(30, 43, 44, 0.25);
}

.hero-cover .lead {
  color: rgba(243, 241, 234, 0.92);
  text-shadow: 0 2px 10px rgba(30, 43, 44, 0.35);
  max-width: 58ch;
}

.hero-cover .accent {
  color: rgba(127, 191, 194, 0.98);
}

.pill {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(243, 241, 234, 0.28);
  background: rgba(30, 43, 44, 0.18);
  font-weight: 800;
  font-size: 13px;
  color: rgba(243, 241, 234, 0.95);
}

.hero-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(243, 241, 234, 0.18);
  background: linear-gradient(
    135deg,
    rgba(30, 43, 44, 0.18),
    rgba(47, 111, 115, 0.14)
  );
  box-shadow: 0 18px 34px rgba(30, 43, 44, 0.18);
  backdrop-filter: blur(10px);
}

.hero-actions .btn {
  min-width: 210px;
  box-shadow: var(--shadow2);
}

.hero-actions .btn-primary {
  background: linear-gradient(
    135deg,
    rgba(127, 191, 194, 0.4),
    rgba(47, 111, 115, 0.3)
  );
  border-color: rgba(243, 241, 234, 0.18);
  color: rgba(247, 248, 246, 0.98);
}

.hero-actions .btn-primary:hover {
  background: linear-gradient(
    135deg,
    rgba(127, 191, 194, 0.5),
    rgba(47, 111, 115, 0.36)
  );
}

.hero-actions .btn-ghost {
  background: rgba(243, 241, 234, 0.12);
  border-color: rgba(243, 241, 234, 0.24);
  color: rgba(247, 248, 246, 0.98);
}

.hero-actions .btn-ghost:hover {
  background: rgba(243, 241, 234, 0.2);
}

/* Peek section */
.peek {
  margin-top: -34px;
  padding-bottom: 18px;
}

.peek-card {
  background: rgba(243, 241, 234, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(6px);
}

.peek-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.peek-head .h2 {
  margin: 0;
}

.peek-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.type {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  padding: 14px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(231, 239, 234, 0.72);
  transition:
    transform 0.12s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.type:hover {
  transform: translateY(-2px);
  background: rgba(231, 239, 234, 0.9);
  box-shadow: 0 10px 24px rgba(30, 43, 44, 0.1);
}

.ui-ico {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(47, 111, 115, 0.12);
  border: 1px solid var(--line);
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
}

.ui-ico.ui-ico-putty {
  position: relative;
  overflow: visible;
  font-size: 0;
  border-color: rgba(31, 43, 45, 0.26);
}

.ui-ico.ui-ico-putty::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 5px;
  width: 17px;
  height: 12px;
  border-radius: 3px;
  border: 1.6px solid #1f2b2d;
  background: linear-gradient(
    135deg,
    #d7d7de 0 35%,
    #b9b9c5 35% 68%,
    #ececf2 68% 100%
  );
  transform: rotate(-44deg);
  box-shadow: -2px 2px 0 rgba(31, 43, 45, 0.08);
}

.ui-ico.ui-ico-putty::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 15px;
  height: 7px;
  border-radius: 999px;
  border: 1.6px solid #1f2b2d;
  background:
    radial-gradient(
      circle at 3px 50%,
      transparent 0 1.5px,
      #1f2b2d 1.6px 2.3px,
      transparent 2.4px
    ),
    linear-gradient(180deg, #f9b525 0 70%, #e38d06 70% 100%);
  transform: rotate(-44deg);
  box-shadow: 1px 1px 0 rgba(227, 141, 6, 0.85);
}

.type-title {
  font-weight: 900;
}
.type-text {
  color: rgba(30, 43, 44, 0.7);
  font-size: 13px;
  line-height: 1.35;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service {
  background: rgba(243, 241, 234, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 16px;
  box-shadow: 0 8px 20px rgba(30, 43, 44, 0.08);
}

.service-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 10px;
}

.tag {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(231, 239, 234, 0.7);
  font-size: 12px;
  font-weight: 900;
  color: rgba(30, 43, 44, 0.8);
}

.service-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(30, 43, 44, 0.72);
}
.service-list li {
  margin: 7px 0;
}

.service-more {
  display: inline-flex;
  margin-top: 14px;
  text-decoration: none;
  font-weight: 900;
  color: var(--sea);
}

.service-more:hover {
  color: var(--ink);
}

.service-cta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: rgba(231, 239, 234, 0.55);
}

/* Features */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature {
  background: rgba(243, 241, 234, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 16px;
}

.feature .ui-ico {
  margin-bottom: 10px;
}

/* Promise */
.promise {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  padding: 18px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: rgba(231, 239, 234, 0.55);
  box-shadow: 0 10px 26px rgba(30, 43, 44, 0.08);
}

.promise-right {
  display: grid;
  gap: 10px;
  align-content: start;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(243, 241, 234, 0.72);
  font-weight: 900;
  color: rgba(30, 43, 44, 0.82);
}

.promise-item .ui-ico {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  font-size: 13px;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(243, 241, 234, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 16px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(199, 123, 90, 0.16);
  border: 1px solid var(--line);
  font-weight: 900;
}

/* Gallery */
.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 28vw, 360px);
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scroll-behavior: smooth;
  padding: 2px 2px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 111, 115, 0.45) rgba(47, 111, 115, 0.08);
}

.gallery::-webkit-scrollbar {
  height: 10px;
}

.gallery::-webkit-scrollbar-track {
  background: rgba(47, 111, 115, 0.08);
  border-radius: 999px;
}

.gallery::-webkit-scrollbar-thumb {
  background: rgba(47, 111, 115, 0.45);
  border-radius: 999px;
}

.gallery::-webkit-scrollbar-thumb:hover {
  background: rgba(47, 111, 115, 0.62);
}

.shot {
  margin: 0;
  scroll-snap-align: start;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(243, 241, 234, 0.55);
  box-shadow: 0 8px 20px rgba(30, 43, 44, 0.08);
  transform: translateZ(0);
}

.shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.shot:hover img {
  transform: scale(1.04);
  filter: contrast(1.03);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}

.lightbox.is-open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 43, 44, 0.72);
  backdrop-filter: blur(6px);
}

.lightbox-panel {
  position: absolute;
  inset: 18px;
  display: grid;
  place-items: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right)
    env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.lightbox-img {
  max-width: min(1100px, 95vw);
  max-height: 88vh;
  max-height: 88svh;
  border-radius: 20px;
  border: 1px solid rgba(243, 241, 234, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  background: rgba(243, 241, 234, 0.15);
  -webkit-user-drag: none;
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: calc(12px + env(safe-area-inset-top));
  right: calc(12px + env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(243, 241, 234, 0.22);
  background: rgba(243, 241, 234, 0.14);
  color: rgba(243, 241, 234, 0.92);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(243, 241, 234, 0.28);
  background: rgba(243, 241, 234, 0.14);
  color: rgba(243, 241, 234, 0.95);
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  display: grid;
  place-items: center;
  touch-action: manipulation;
}

.lightbox-prev {
  left: calc(14px + env(safe-area-inset-left));
}

.lightbox-next {
  right: calc(14px + env(safe-area-inset-right));
}

.lightbox-count {
  position: absolute;
  bottom: calc(10px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(243, 241, 234, 0.24);
  background: rgba(30, 43, 44, 0.48);
  color: rgba(243, 241, 234, 0.95);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(243, 241, 234, 0.22);
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: rgba(243, 241, 234, 0.78);
  cursor: pointer;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq-a {
  display: none;
  padding: 12px 16px 14px;
  margin-top: -6px;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(231, 239, 234, 0.55);
  color: rgba(30, 43, 44, 0.78);
}

.faq-q.is-open {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.faq-q.is-open + .faq-a {
  display: block;
}

/* Footer */
.footer {
  padding: 24px 0 18px;
  border-top: 1px solid var(--line);
  background: rgba(243, 241, 234, 0.68);
}

.footer-stack {
  display: grid;
  gap: 14px;
}

.footer-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(
    135deg,
    rgba(243, 241, 234, 0.68),
    rgba(231, 239, 234, 0.72)
  );
  box-shadow: 0 10px 26px rgba(30, 43, 44, 0.08);
}

.footer-kicker {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(47, 111, 115, 0.78);
}

.footer-title {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1;
}

.footer-text {
  max-width: 560px;
  margin: 8px 0 0;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 20px;
  border: 1px solid rgba(17, 137, 67, 0.12);
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #1a9755, #167b47);
  box-shadow: 0 14px 24px rgba(17, 137, 67, 0.16);
}

.footer-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 28px rgba(17, 137, 67, 0.2);
}

.footer-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.footer-whatsapp-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-whatsapp-copy {
  display: grid;
  gap: 2px;
}

.footer-whatsapp-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.86;
}

.footer-whatsapp-number {
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.link {
  color: inherit;
}

/* Responsive */
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .burger {
    display: block;
  }

  .peek-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .peek-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
  .promise {
    grid-template-columns: 1fr;
  }
  .footer-contact-card {
    grid-template-columns: 1fr;
  }

  .footer-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    width: 100%;
    padding: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .footer {
    padding-top: 22px;
  }

  .footer-contact-card {
    padding: 16px;
    border-radius: 22px;
  }

  .footer-title {
    font-size: 26px;
  }

  .footer-whatsapp {
    width: 100%;
    padding: 12px 14px;
    justify-content: flex-start;
  }

  .footer-whatsapp-number {
    font-size: 17px;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .peek {
    margin-top: -22px;
  }
  .peek-grid {
    grid-template-columns: 1fr;
  }

  .hero-cover {
    min-height: 78vh;
    min-height: 78svh;
    background-position: 60% 25%;
    padding: 52px 0 28px;
  }

  .service-hero {
    min-height: 64vh;
    min-height: 64svh;
    padding: 44px 0 24px;
  }

  .gallery {
    scroll-snap-type: x proximity;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
  .lightbox-prev {
    left: calc(14px + env(safe-area-inset-left));
  }
  .lightbox-next {
    right: calc(14px + env(safe-area-inset-right));
  }
  .lightbox-img {
    max-height: 82vh;
    max-height: 82svh;
  }
}

/* Motion reduce */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}





