:root {
  --ink: #181613;
  --text: #45413b;
  --muted: #756f66;
  --line: #e8e0d5;
  --paper: #ffffff;
  --warm: #f7f2eb;
  --sand: #e9ddcf;
  --taupe: #8b7a67;
  --gold: #b69665;
  --charcoal: #26231f;
  --shadow: 0 18px 50px rgba(24, 22, 19, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { color: var(--ink); line-height: 1.08; margin: 0; font-family: "Playfair Display", Georgia, serif; letter-spacing: 0; }
h1 { font-size: clamp(2.7rem, 8vw, 5.8rem); max-width: 900px; }
h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
h3 { font-size: 1.45rem; }

.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section.alt { background: var(--warm); }
.section-head { max-width: 760px; margin-bottom: 2.2rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 1rem; }
.grid { display: grid; gap: 24px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(232, 224, 213, 0.85);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(232, 224, 213, 1);
  box-shadow: 0 10px 30px rgba(24, 22, 19, 0.08);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header .nav-wrap {
  width: calc(100% - 32px);
  max-width: none;
}
.brand { display: inline-flex; align-items: center; gap: 14px; font-weight: 900; color: var(--ink); letter-spacing: 0.04em; text-transform: uppercase; }
.brand-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(24, 22, 19, 0.1);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 0.94rem; font-weight: 700; color: var(--ink); }
.nav-links a {
  position: relative;
  padding: 7px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--gold); font-weight: 900; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.social-actions { display: flex; align-items: center; gap: 8px; margin-left: 4px; }
.social-button {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}
.social-button:hover { transform: translateY(-1px); border-color: var(--gold); color: var(--gold); }
.social-button svg { width: 18px; height: 18px; display: block; fill: currentColor; }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--paper); height: 42px; width: 42px; border-radius: var(--radius); color: var(--ink); }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: ""; display: block; width: 18px; height: 2px; background: currentColor; margin: 4px auto; transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle.active::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active::after { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 20px; border-radius: var(--radius);
  border: 1px solid var(--ink); background: var(--ink); color: #fff;
  font-weight: 800; font-size: 0.94rem; cursor: pointer; transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-1px); background: #000; border-color: #000; }
.button.secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.button.secondary:hover { border-color: var(--gold); background: #fff; }
.button.gold { background: var(--gold); border-color: var(--gold); color: #fff; }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(18,16,13,0.78), rgba(18,16,13,0.38) 45%, rgba(18,16,13,0.12));
  z-index: 1;
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; padding: 12vh 0 10vh; max-width: 830px; }
.hero h1, .hero p { color: #fff; }
.hero p { max-width: 690px; font-size: clamp(1.08rem, 2.5vw, 1.35rem); margin: 1.25rem 0 2rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .button.secondary {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.hero-actions .button.secondary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.hero-actions .button.gold {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.page-hero {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; padding: clamp(86px, 12vw, 150px) 0; }
.page-hero h1, .page-hero p { color: #fff; }
.page-hero p { max-width: 720px; font-size: 1.15rem; margin-top: 1rem; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }

.trust-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.trust-item { padding: 28px 20px; border-right: 1px solid var(--line); min-height: 116px; }
.trust-item:last-child { border-right: 0; }
.trust-icon, .feature-card .num { display: none; }
.trust-item strong { display: block; color: var(--ink); }
.trust-item span { color: var(--muted); font-size: 0.9rem; }
.trust-stat span { display: block; margin-top: 8px; line-height: 1.4; }
.trust-stat b { color: var(--ink); font-weight: 900; }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.card:hover { transform: translateY(-3px); border-color: rgba(182, 150, 101, 0.6); box-shadow: var(--shadow); }
.card-body { padding: 24px; }
.card p { color: var(--muted); }
.card img { width: 100%; height: 260px; object-fit: cover; }
.card-link { color: var(--gold); font-weight: 900; font-size: 0.92rem; }
.feature-card { padding: 28px; border-left: 2px solid var(--gold); background: #fff; }
.card.has-card-link { cursor: pointer; }
.feature-card .num { color: var(--gold); font-weight: 900; margin-bottom: 18px; }

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(28px, 4vw, 52px);
  align-items: stretch;
}
.about-intro p {
  color: var(--muted);
  font-size: 1.04rem;
  margin-top: 1.1rem;
}
.about-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
  box-shadow: var(--shadow);
  justify-self: end;
  width: min(100%, 360px);
  height: 100%;
  min-height: 560px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}
.about-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Allura", "Brush Script MT", cursive;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-style: normal;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-align: right;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.36);
}
.certification-badge {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(100%, 560px);
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(28, 30, 27, 0.08);
}
.certification-badge img {
  width: 192px;
  max-width: 42%;
  height: auto;
  flex: 0 0 auto;
}
.certification-badge strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
  font-size: 1.12rem;
  color: var(--ink);
}
.certification-badge span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.ba-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow);
  background: var(--sand);
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-range { position: absolute; inset: auto 24px 24px; z-index: 4; width: calc(100% - 48px); accent-color: var(--gold); }
.ba-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; z-index: 3; box-shadow: 0 0 0 1px rgba(0,0,0,0.15); }
.ba-handle { position: absolute; top: 50%; left: 50%; z-index: 5; translate: -50% -50%; width: 52px; height: 52px; border-radius: 50%; border: 2px solid #fff; background: rgba(24,22,19,0.68); color: #fff; display: grid; place-items: center; font-weight: 900; cursor: ew-resize; touch-action: none; user-select: none; }
.ba-labels { position: absolute; inset: 20px 20px auto; display: flex; justify-content: space-between; z-index: 4; color: #fff; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.76rem; }

.portfolio-controls {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.portfolio-count {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}
.view-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.view-btn {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}
.view-btn.active {
  background: var(--ink);
  color: #fff;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  transition: opacity 180ms ease;
}
.gallery.is-filtering { opacity: 0.45; }
.gallery.featured-view { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery.featured-view .gallery-item:first-child,
.gallery.featured-view .gallery-item:nth-child(11),
.gallery.featured-view .gallery-item:nth-child(23) {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 576px;
}
.gallery-item {
  display: block;
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--sand);
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}
.gallery-item[hidden] { display: none !important; }
.gallery a.gallery-item { color: inherit; text-decoration: none; }
.gallery-item[data-gallery-link] { cursor: pointer; }
.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 240ms ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; inset: auto 0 0; padding: 18px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,0.72)); font-weight: 800; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 0; }
.filter-btn { border: 1px solid var(--line); background: #fff; padding: 10px 16px; border-radius: 999px; font-weight: 800; cursor: pointer; color: var(--ink); transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease; }
.filter-btn:hover { border-color: var(--gold); transform: translateY(-1px); }
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 16px;
  padding: 72px clamp(14px, 4vw, 40px) 32px;
  background: rgba(18, 16, 13, 0.92);
}
.lightbox[hidden] { display: none; }
.lightbox-frame {
  margin: 0;
  justify-self: center;
  width: min(100%, 1120px);
}
.lightbox-frame img {
  width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  border-radius: var(--radius);
  background: #111;
}
.lightbox-frame figcaption {
  margin-top: 12px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}
.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  min-height: 46px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 0 18px;
}
.lightbox-nav {
  width: 100%;
  padding: 0 10px;
}

.testimonial { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.testimonial:hover, .testimonial.active { transform: translateY(-2px); border-color: rgba(182, 150, 101, 0.6); box-shadow: var(--shadow); }
.stars { color: var(--gold); letter-spacing: 0.08em; margin-bottom: 14px; }
.quote { color: var(--ink); font-size: 1.08rem; }
.quote.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-toggle {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.review-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.byline { margin-top: 20px; color: var(--muted); font-weight: 800; }

.cta-band { background: var(--charcoal); color: #fff; padding: clamp(58px, 8vw, 92px) 0; }
.cta-band h2, .cta-band p { color: #fff; }
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.cta-band p { max-width: 660px; margin-top: 1rem; }
.proof-cta { margin-top: 24px; display: grid; gap: 14px; }
.proof-cta p { margin: 0; font-weight: 800; color: var(--ink); }

.form-panel { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--ink); font-weight: 800; font-size: 0.9rem; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius); min-height: 48px;
  padding: 12px 14px; font: inherit; color: var(--ink); background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--muted); font-size: 0.92rem; margin-top: 12px; }
.success-message { display: none; margin-top: 16px; padding: 14px; border: 1px solid #b7d8bd; color: #225b2c; background: #eef8f0; border-radius: var(--radius); }
.success-message.show { display: block; }
.field-error { color: #9f2f24; font-size: 0.85rem; font-weight: 800; }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #b94134; box-shadow: 0 0 0 3px rgba(185, 65, 52, 0.12); }

.site-footer { background: #15130f; color: #d7d0c6; padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 220px 1.35fr 1fr 1fr 1fr; gap: 28px; align-items: start; }
.footer-brand-logo {
  width: min(220px, 100%);
  margin: 0;
}
.footer-brand-logo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}
.site-footer h3, .site-footer strong { color: #fff; }
.site-footer a { color: #d7d0c6; display: block; margin: 8px 0; }
.footer-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); color: #aaa197; font-size: 0.9rem; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.mobile-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px 12px; background: rgba(255,255,255,0.96); border-top: 1px solid var(--line); backdrop-filter: blur(12px);
  gap: 10px;
}
.mobile-cta .button { flex: 1; min-height: 44px; padding: 0 12px; }
.mobile-cta .text-button { border-color: var(--gold); color: var(--ink); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: #fff;
  color: var(--ink);
  padding: 18px 20px;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-trigger::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.faq-trigger[aria-expanded="true"]::after { content: "-"; background: var(--gold); border-color: var(--gold); color: #fff; }
.faq-panel { padding: 0 20px 20px; color: var(--muted); }

.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.contact-actions .button { min-width: 140px; }

.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track {
  --testimonial-index: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 33.333%);
  gap: 18px;
  transform: translateX(calc(var(--testimonial-index) * -33.333%));
  transition: transform 260ms ease;
}
.review-marquee {
  overflow: hidden;
}
.review-marquee .testimonial-track {
  --review-offset: 0px;
  display: flex;
  gap: 0;
  width: max-content;
  align-items: stretch;
  transform: translateX(var(--review-offset));
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.review-marquee .review-sequence {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  padding-right: 18px;
}
.review-marquee .testimonial {
  flex: 0 0 clamp(300px, 31vw, 360px);
  min-height: 230px;
  padding: 24px;
}
.carousel-controls { display: flex; justify-content: flex-end; gap: 10px; margin: 0 0 18px; }
.carousel-btn {
  min-width: 44px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}
.carousel-btn:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 980px) {
  .grid.three, .grid.four, .gallery, .gallery.featured-view { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-intro { grid-template-columns: 1fr; }
  .about-photo { justify-self: start; width: min(100%, 360px); }
  .gallery.featured-view .gallery-item:first-child,
  .gallery.featured-view .gallery-item:nth-child(11),
  .gallery.featured-view .gallery-item:nth-child(23) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 280px;
  }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid var(--line); }
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: grid; position: absolute; left: 16px; right: 16px; top: 76px; z-index: 80;
    gap: 4px; background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow);
    animation: navDrop 180ms ease both;
  }
  .nav-links.open a { display: block; padding: 10px 8px; }
  .cta-band .container { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand-logo { grid-column: 1 / -1; }
  .testimonial-track { grid-auto-columns: minmax(280px, 50%); transform: translateX(calc(var(--testimonial-index) * -50%)); }
  .review-marquee .testimonial { flex-basis: min(360px, 48vw); }
}

@media (max-width: 680px) {
  body { padding-bottom: 66px; }
  .container { width: min(100% - 24px, var(--max)); }
  .grid.two, .grid.three, .grid.four, .gallery, .form-grid { grid-template-columns: 1fr; }
  .portfolio-controls { display: grid; gap: 14px; }
  .view-toggle { width: 100%; }
  .view-btn { flex: 1; }
  .hero { min-height: 760px; }
  .hero-content { padding: 82px 0 74px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; }
  .ba-slider { min-height: 360px; }
  .gallery-item { min-height: 245px; }
  .about-photo { width: min(100%, 320px); }
  .brand-mark { width: 52px; height: 52px; }
  .footer-brand-logo { width: 190px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  .mobile-cta .button { font-size: 0.84rem; padding: 0 8px; white-space: nowrap; }
  .testimonial-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; transform: none; padding-bottom: 8px; }
  .testimonial-track .testimonial { min-width: 86%; scroll-snap-align: start; }
  .review-marquee .testimonial-track { overflow: visible; scroll-snap-type: none; transform: translateX(var(--review-offset)); }
  .review-marquee .testimonial-track .testimonial { min-width: 0; flex-basis: 86vw; }
  .carousel-controls { justify-content: flex-start; }
  .lightbox {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 70px 12px 84px;
  }
  .lightbox-frame {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .lightbox-frame img { max-height: calc(100vh - 220px); }
  .lightbox-nav { grid-row: 2; }
}

@keyframes navDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
