:root {
  --green: #064f3b;
  --green-2: #0b3d2e;
  --green-deep: #05281e;
  --cream: #ead8b1;
  --book: #ba1835;
  --ink: #12211c;
  --muted: #5d6b66;
  --paper: #f6f1e8;
  --mist: #c9d6cf;
  --shell: #041812;
  --bg: #efe8d9;
  --snow: #ffffff;
  --line: #d8cfc0;
  --sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --display: Manrope, ui-sans-serif, system-ui, sans-serif;
  --shadow: 0 0 0 1px rgba(6, 79, 59, 0.06), 0 10px 28px rgba(5, 40, 30, 0.08);
  --shadow-hover: 0 0 0 1px rgba(234, 216, 177, 0.85), 0 18px 36px rgba(5, 40, 30, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
p a,
li a,
address a,
.nap a { text-decoration: underline; text-underline-offset: 0.18em; }
button { font: inherit; }

.wrap { width: min(1152px, calc(100% - 40px)); margin-inline: auto; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.kicker::after {
  content: "";
  width: 2.25rem;
  height: 2px;
  background: currentColor;
}
.kicker.cream { color: var(--cream); }
.kicker.green { color: var(--green); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  text-decoration: none !important;
  transition: transform 280ms var(--ease), filter 280ms var(--ease), box-shadow 280ms var(--ease);
}
.btn i { font-size: 18px; font-weight: 400; line-height: 1; }
.btn.cream { background: var(--cream); color: var(--green-deep); }
.btn.book { background: var(--book); color: var(--snow); }
.btn.green { background: var(--green); color: var(--snow); }
.btn.wide { width: 100%; }

.linen {
  background-color: var(--paper);
  background-image: radial-gradient(rgba(6, 79, 59, 0.05) 1px, transparent 1px);
  background-size: 18px 18px;
}
.slats {
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 47px,
    rgba(234, 216, 177, 0.08) 47px,
    rgba(234, 216, 177, 0.08) 48px
  );
}
.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.lift {
  box-shadow: var(--shadow);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.promo {
  background: var(--green-deep);
  color: var(--mist);
  font-size: 13px;
}
.promo .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
}
.promo a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  font-weight: 800;
  text-decoration: none;
}
.promo a i { font-size: 14px; }

.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(6, 79, 59, 0.8);
  backdrop-filter: blur(12px);
  transition: background 200ms, box-shadow 200ms;
}
.site.on { background: rgba(6, 79, 59, 0.95); box-shadow: 0 10px 28px rgba(5, 40, 30, 0.2); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}
.brand {
  background: var(--snow);
  border-radius: 10px;
  padding: 4px 8px;
}
.brand img { height: 48px; width: auto; }
.links { display: flex; align-items: center; gap: 20px; }
.links a {
  position: relative;
  color: var(--snow);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--cream);
  transition: width 280ms var(--ease);
}
.links a:hover { color: var(--cream); }
.links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--snow);
  font-size: 26px;
  line-height: 1;
}
.mobile-links {
  display: none;
  background: var(--green-deep);
  border-radius: 16px;
  padding: 8px;
  margin-bottom: 10px;
}
.site.is-open .mobile-links { display: block; }
.mobile-links a {
  display: block;
  color: var(--snow);
  font-weight: 700;
  padding: 12px;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--shell);
  color: var(--snow);
}
.hero-media,
.hero-film,
.hero-poster { position: absolute; inset: 0; }
.hero-poster,
.hero-film { width: 100%; height: 100%; object-fit: cover; }
.hero-film { transform: scale(1.05); }
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 24, 18, 0.92), rgba(4, 24, 18, 0.48) 55%, rgba(4, 24, 18, 0.18)),
    linear-gradient(180deg, rgba(4, 24, 18, 0.25), transparent 40%, rgba(4, 24, 18, 0.7));
}
.hero-inner { position: relative; z-index: 2; padding: 88px 0 80px; }
h1 {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
  max-width: 16ch;
  margin-top: 16px;
}
h1 em { font-style: normal; color: var(--cream); }
.lead { max-width: 42ch; margin: 20px 0 0; color: var(--mist); font-size: 18px; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 32px; }
.faces { display: flex; padding-left: 4px; }
.faces img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--snow);
  margin-left: -8px;
}
.faces img:first-child { margin-left: 0; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(234, 216, 177, 0.25);
  background: rgba(4, 24, 18, 0.4);
  backdrop-filter: blur(10px);
}
.stats div { padding: 16px 20px; border-left: 1px solid rgba(234, 216, 177, 0.15); }
.stats div:first-child { border-left: 0; }
.stats i { display: block; font-size: 20px; color: var(--cream); line-height: 1; margin-bottom: 6px; }
.stats b { display: block; font-family: var(--display); font-size: 30px; color: var(--cream); }
.stats span { font-size: 14px; color: var(--mist); }

.section { padding: 96px 0; }
h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 12px;
}
h3 { font-family: var(--display); font-weight: 700; }
.muted { color: var(--muted); }
.intro { max-width: 48ch; margin-top: 16px; color: var(--muted); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-photo {
  position: relative;
  align-self: start;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  height: min(calc(100svh - 160px), 520px);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 900ms var(--ease);
}
.badge {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 20px;
  transition: transform 320ms var(--ease);
}
.badge-inner {
  min-width: 148px;
  padding: 14px 20px;
  border-radius: 18px;
  background: rgba(6, 79, 59, 0.94);
  color: var(--snow);
  border: 1px solid rgba(234, 216, 177, 0.38);
  box-shadow: 0 14px 28px rgba(5, 40, 30, 0.28);
  backdrop-filter: blur(10px);
  animation: soft-float 3.2s ease-in-out infinite alternate;
  transition: background 280ms var(--ease), border-color 280ms var(--ease), box-shadow 280ms var(--ease);
}
.badge small {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}
.badge b { display: block; font-family: var(--display); font-size: 28px; line-height: 1; margin-top: 2px; }
.badge span { display: block; margin-top: 4px; color: var(--cream); font-size: 13px; font-weight: 700; }
.checks { margin-top: 28px; }
.checks li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(6, 79, 59, 0.1);
}
.checks li:first-child { padding-top: 0; }
.checks li:last-child { border: 0; }
.tick {
  color: var(--green);
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

.hl-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  margin-top: 40px;
}
.hl {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 0;
  grid-column: span 2;
}
.hl-featured { grid-row: span 2; }
.hl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.hl:hover img { transform: scale(1.05); }
.hl-veil,
.hl-scrim { position: absolute; inset: 0; pointer-events: none; }
.hl-veil { background: var(--green); opacity: 0.78; transition: opacity 350ms ease; }
.hl:hover .hl-veil { opacity: 0; }
.hl-scrim {
  background: linear-gradient(to top, rgba(5, 40, 30, 0.88), transparent 58%);
  transition: opacity 350ms ease;
}
.hl:hover .hl-scrim { opacity: 0.4; }
.hl-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  color: var(--snow);
  text-shadow: 0 2px 16px rgba(5, 40, 30, 0.7);
}
.hl-head { display: flex; align-items: center; gap: 12px; }
.hl:not(.hl-featured) .icon-well { width: 40px; height: 40px; font-size: 20px; border-radius: 12px; }
.icon-well {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--green);
  flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
}
.icon-well.lg { width: 60px; height: 60px; font-size: 32px; }
.hl-copy h3 { font-size: 18px; line-height: 1.15; }
.hl-featured .hl-copy { padding: 28px; }
.hl-featured .hl-copy h3 { font-size: clamp(28px, 3vw, 36px); margin-top: 16px; }
.hl-copy p { margin-top: 10px; color: var(--mist); font-size: 14px; }
.hl:not(.hl-featured) .hl-copy p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hl-featured .hl-copy p { font-size: 16px; max-width: 42ch; }
.hl-copy .btn { margin-top: 16px; min-height: 44px; padding: 8px 16px; font-size: 14px; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.svc {
  background: var(--snow);
  border-radius: 24px;
  padding: 24px;
}
.svc-top { display: flex; }
.svc h3 { margin-top: 20px; font-size: 20px; }
.svc p { margin-top: 8px; font-size: 14px; color: var(--muted); }
.repair-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 32px;
}
.repair-list li {
  display: flex;
  gap: 8px;
  background: var(--paper);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
}

.band {
  background: var(--cream);
  color: var(--green-deep);
  padding: 48px 0;
}
.band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.band p { font-family: var(--display); font-size: 24px; font-weight: 800; }
.band span { display: block; margin-top: 4px; font-family: var(--sans); font-size: 16px; font-weight: 400; color: var(--green); }

.why { background: var(--green-deep); color: var(--snow); padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-card {
  border: 1px solid rgba(234, 216, 177, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
}
.why-card i { display: block; font-size: 22px; color: var(--cream); line-height: 1; margin-bottom: 8px; }
.why-card b { display: block; font-family: var(--display); font-size: 30px; color: var(--cream); }
.why-card span { font-size: 14px; color: var(--mist); }
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.step-top i { font-size: 28px; color: var(--cream); line-height: 1; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(234, 216, 177, 0.2);
}
.steps .n { font-family: var(--display); font-size: 30px; color: var(--cream); }
.steps h3 { margin-top: 4px; font-size: 20px; }
.steps p { margin-top: 8px; font-size: 14px; color: var(--mist); }

.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tab {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(6, 79, 59, 0.2);
  background: var(--snow);
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.tab.on,
.tab:hover { background: var(--green); color: var(--snow); border-color: var(--green); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.person { overflow: hidden; border-radius: 20px; background: var(--snow); text-align: center; }
.person img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  object-position: 50% 14%;
  transition: transform 700ms var(--ease);
}
.person.owner img { object-position: 50% 18%; }
.person div { padding: 10px 8px 12px; }
.person h3 { font-size: 16px; transition: color 250ms var(--ease); }
.person p { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); transition: color 250ms var(--ease); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 12px;
  margin-top: 32px;
}
.work { position: relative; overflow: hidden; border-radius: 24px; }
.work.wide { grid-column: span 2; grid-row: span 2; }
.work img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.work:hover img { transform: scale(1.08); }
.work figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: max-content;
  max-width: 16rem;
  background: rgba(4, 24, 18, 0.75);
  color: var(--snow);
  font-family: var(--display);
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.areas { background: var(--green); color: var(--snow); padding: 64px 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chip {
  border: 1px solid rgba(234, 216, 177, 0.3);
  color: var(--cream);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  transition: background 250ms var(--ease), color 250ms var(--ease), border-color 250ms var(--ease);
}

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.qa {
  position: relative;
  overflow: hidden;
  background: var(--snow);
  border-radius: 24px;
  padding: 16px 20px 16px 24px;
  transition: box-shadow 300ms var(--ease);
}
.qa::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--cream);
  transition: width 250ms var(--ease);
}
.qa[open]::before { width: 5px; }
.qa summary { min-height: 44px; cursor: pointer; font-weight: 700; list-style: none; display: flex; align-items: center; }
.qa summary::-webkit-details-marker { display: none; }
.qa p { margin-top: 8px; color: var(--muted); }

.contact { background: var(--green); color: var(--snow); padding: 96px 0; }
.contact .lede { text-align: center; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; align-items: start; }
.card { border-radius: 24px; padding: 24px; }
.card.paper { background: var(--snow); color: var(--ink); height: fit-content; }
.card.deep { background: var(--green-deep); }
.card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 8px;
}
.card.paper h3 i { color: var(--green); font-size: 22px; line-height: 1; }
.card.deep h3 i { color: var(--cream); font-size: 22px; line-height: 1; }
.phones { margin-top: 16px; }
.phones li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(6, 79, 59, 0.1);
  font-size: 14px;
}
.phones a { color: var(--green); font-weight: 700; }
.card.deep label { display: block; margin: 12px 0 6px; font-size: 14px; font-weight: 700; color: var(--cream); }
.card.deep input,
.card.deep textarea {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: var(--snow);
}
.card.deep textarea { min-height: 88px; resize: vertical; }
.form-cta { margin-top: 18px; }
.thanks { margin-top: 24px; background: rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 16px; color: var(--cream); }
.form-done:focus { outline: none; }

.rev-widget {
  margin-top: 28px;
  background: #eceff3;
  border-radius: 16px;
  padding: 8px 8px 18px;
}
.rev-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px 14px;
}
.rev-head-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}
.rev-head-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}
.rev-head-btn { flex-shrink: 0; min-height: 44px; padding: 10px 18px; }
.rev-body { position: relative; padding: 0 44px; }
.rev-viewport { overflow: hidden; }
.rev-track {
  display: flex;
  gap: 16px;
  transition: transform 450ms var(--ease);
}
.rev-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  padding: 20px 18px 18px;
  box-shadow: 0 1px 2px rgba(5, 40, 30, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 250px;
}
.rev-card.summary { background: linear-gradient(180deg, #e7f0ea 0%, #f3f7f4 100%); }
.rev-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  min-width: 0;
}
.rev-av {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.rev-av.c1 { background: var(--green); }
.rev-av.c2 { background: var(--book); }
.rev-av.c3 { background: #2b4a40; }
.rev-av.c4 { background: #7a4a32; }
.rev-av.c5 { background: #3d4f5c; }
.rev-faces { display: flex; padding-right: 8px; }
.rev-faces .rev-av { margin-right: -10px; border: 2px solid #e7f0ea; }
.rev-name {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rev-date { font-size: 12px; color: var(--muted); margin-top: 2px; }
.stars {
  display: inline-flex;
  gap: 2px;
  margin: 2px 0 10px;
}
.stars i {
  width: 14px;
  height: 14px;
  background: #fbbc04;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.rev-head-meta .stars { margin: 0; }
.rev-text {
  color: #3b4450;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rev-card.is-open .rev-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.rev-more {
  margin-top: auto;
  padding-top: 10px;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.rev-more:hover { text-decoration: underline; color: var(--ink); }
.rev-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(5, 40, 30, 0.16);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rev-nav.prev { left: 6px; }
.rev-nav.next { right: 6px; }
.close { max-width: 48ch; margin: 40px auto 0; text-align: center; color: var(--mist); }

footer { background: var(--shell); color: var(--mist); padding: 48px 0 88px; font-size: 14px; }
.foot { display: grid; grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr; gap: 32px; }
footer b { display: block; color: var(--snow); font-family: var(--display); margin-bottom: 8px; }
footer a { color: var(--mist); text-decoration: none; }
footer li { margin: 6px 0; }
.legal { margin-top: 32px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 12px; color: #8a9691; }

.dock {
  display: none;
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 50;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  font-weight: 800;
  box-shadow: var(--shadow);
  text-decoration: none !important;
}

.icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in { animation: fadeInUp 560ms var(--ease) forwards; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.reveal.d1.is-in { animation-delay: 80ms; }
.reveal.d2.is-in { animation-delay: 160ms; }
.reveal.d3.is-in { animation-delay: 240ms; }
.reveal.d4.is-in { animation-delay: 320ms; }
.reveal.d5.is-in { animation-delay: 400ms; }
.hl-grid .hl.reveal.is-in:nth-child(1) { animation-delay: 0ms; }
.hl-grid .hl.reveal.is-in:nth-child(2) { animation-delay: 80ms; }
.hl-grid .hl.reveal.is-in:nth-child(3) { animation-delay: 160ms; }
.hl-grid .hl.reveal.is-in:nth-child(4) { animation-delay: 240ms; }
.hl-grid .hl.reveal.is-in:nth-child(5) { animation-delay: 320ms; }
.team-grid .person.reveal.is-in:nth-child(1) { animation-delay: 0ms; }
.team-grid .person.reveal.is-in:nth-child(2) { animation-delay: 60ms; }
.team-grid .person.reveal.is-in:nth-child(3) { animation-delay: 120ms; }
.team-grid .person.reveal.is-in:nth-child(4) { animation-delay: 180ms; }
.team-grid .person.reveal.is-in:nth-child(5) { animation-delay: 240ms; }
.team-grid .person.reveal.is-in:nth-child(n + 6) { animation-delay: 300ms; }
.faq-grid .qa.reveal.is-in:nth-child(odd) { animation-delay: 0ms; }
.faq-grid .qa.reveal.is-in:nth-child(even) { animation-delay: 80ms; }
@keyframes soft-float {
  0% { transform: translateY(4px); }
  100% { transform: translateY(0); }
}

@media (hover: hover) {
  .btn:hover { transform: translateY(-3px); filter: brightness(1.08); }
  .about-photo:hover img { transform: scale(1.06); }
  .badge:hover,
  .about-photo:hover .badge { transform: translateY(-8px); }
  .badge:hover .badge-inner,
  .about-photo:hover .badge-inner {
    animation-play-state: paused;
    background: var(--green-deep);
    border-color: var(--cream);
    box-shadow: 0 20px 40px rgba(5, 40, 30, 0.38), 0 0 0 1px var(--cream);
  }
  .person:hover img { transform: scale(1.08); }
  .person:hover h3 { color: var(--green); }
  .person:hover p { color: var(--book); }
  .chip:hover {
    background: var(--cream);
    color: var(--green-deep);
    border-color: var(--cream);
  }
  .qa:hover::before { width: 5px; }
}

@media (max-width: 1024px) {
  .stats,
  .svc-grid,
  .repair-list,
  .team-grid,
  .foot { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hl-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: minmax(220px, 32vw); }
  .hl { grid-column: auto; }
  .hl-featured { grid-column: 1 / -1; grid-row: auto; min-height: 320px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .rev-card { flex-basis: calc((100% - 16px) / 2); }
}

@media (max-width: 900px) {
  .wrap { width: min(1152px, calc(100% - 32px)); }
  .links, .nav-cta .desk { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .about-grid,
  .why-grid,
  .faq-grid,
  .contact-grid,
  .band .wrap { grid-template-columns: 1fr; }
  .hl-grid { grid-template-columns: 1fr; }
  .hl-featured { grid-column: auto; grid-row: auto; min-height: 280px; }
  .svc-grid,
  .repair-list,
  .stats,
  .team-grid,
  .work-grid,
  .steps,
  .foot { grid-template-columns: 1fr 1fr; }
  .work.wide { grid-column: auto; grid-row: auto; min-height: 200px; }
  .hero { min-height: 0; }
  .hero-inner { padding: 40px 0 32px; }
  .lead { font-size: 16px; }
  .actions { margin-top: 20px; }
  .actions .btn { flex: 1 1 100%; }
  .faces { display: none; }
  .about-photo img { object-position: 50% 12%; }
  .stats { margin-top: 28px; }
  .stats div { padding: 12px; }
  .stats b { font-size: 22px; }
  .stats span { font-size: 12px; }
  .section,
  .why,
  .contact,
  .areas { padding: 56px 0; }
  .about-photo { height: min(62svh, 340px); }
  .svc { padding: 16px; }
  .svc h3 { margin-top: 12px; font-size: 18px; }
  .repair-list { gap: 6px; margin-top: 20px; }
  .repair-list li { padding: 10px 12px; font-size: 13px; }
  .tabs { gap: 6px; }
  .tab { min-height: 40px; padding: 0 12px; font-size: 13px; }
  .team-grid { gap: 10px; }
  .person h3 { font-size: 14px; }
  .person p { font-size: 10px; letter-spacing: 0.08em; }
  .person div { padding: 8px 6px 10px; }
  .why-card { padding: 14px; }
  .why-card b { font-size: 24px; }
  .steps { gap: 16px; margin-top: 32px; padding-top: 28px; }
  .band { padding: 32px 0; }
  .band p { font-size: 20px; }
  .card { padding: 20px; }
  .card.deep { padding-bottom: 88px; }
  .card.deep input,
  .card.deep textarea { font-size: 16px; }
  .dock { display: inline-flex; align-items: center; gap: 8px; }
  footer { padding-bottom: 110px; }
  .badge { left: 12px; bottom: 12px; }
  .rev-head { flex-direction: column; align-items: flex-start; padding: 14px 12px 10px; }
  .rev-head-btn { width: 100%; }
  .rev-body { padding: 0 38px; }
  .rev-card { flex-basis: 100%; min-height: 220px; }
  .rev-name { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-film { display: none; }
  .lift:hover { transform: none; }
  .badge,
  .badge-inner { animation: none !important; transform: none; }
}
