:root {
  --bg: #070708;
  --bg-2: #0e0e10;
  --panel: #121216;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f6f3ec;
  --muted: #a39d93;
  --orange: #f15a22;
  --orange-2: #ff8a3d;
  --gold: #e8c39a;
  --silver: #d7dbe3;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --header: 86px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Oswald", "Manrope", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--text); font-family: var(--font); }
body { overflow-x: hidden; padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
body.intro-lock, body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font-family: inherit; font-size: 16px; }
button { cursor: pointer; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor.big { width: 54px; height: 54px; background: transparent; border: 1px solid var(--orange); }
@media (pointer: coarse) { .cursor { display: none; } }

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(10px + env(safe-area-inset-top)) 4vw 10px;
  height: calc(var(--header) + env(safe-area-inset-top));
  transition: background .35s, border-color .35s, backdrop-filter .35s, height .35s;
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: rgba(7, 7, 8, 0.82);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.brand img {
  height: 64px;
  width: auto;
  background: transparent;
}
.brand span { display: none; }

nav.primary { display: flex; gap: 28px; align-items: center; }
nav.primary a {
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver);
  position: relative;
}
nav.primary a:after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s;
}
nav.primary a:hover:after, nav.primary a.active:after { width: 100%; }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), #ff7a2e);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  border: 0;
  box-shadow: 0 10px 30px rgba(241, 90, 34, .35);
  transition: transform .25s, box-shadow .25s;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(241, 90, 34, .5); }
.cta.ghost {
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
  color: var(--text);
}
.nav-cta { display: none; width: fit-content; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.3);
  border-radius: 12px;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: #fff; margin: 5px auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  padding: calc(var(--header) + env(safe-area-inset-top) + 24px) 6vw 12vh;
  overflow: hidden;
}
.hero-media, .hero-media img, .hero-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,8,.25) 0%, rgba(7,7,8,.55) 45%, rgba(7,7,8,.92) 100%),
    radial-gradient(circle at 80% 20%, rgba(241,90,34,.28), transparent 42%);
}
.hero-content { position: relative; z-index: 2; max-width: 980px; }
.eyebrow {
  color: var(--orange-2);
  letter-spacing: .42em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow:before { content: ""; width: 42px; height: 1px; background: var(--orange); }
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 108px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #fff, var(--orange-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  max-width: 640px;
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  position: absolute;
  right: 6vw; bottom: 10vh;
  z-index: 2;
  text-align: right;
}
.hero-meta b { display: block; font-size: 42px; font-family: var(--display); }
.hero-meta span { color: var(--muted); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #0b0b0d;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: slide 28s linear infinite;
  font-family: var(--display);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 14px;
}
@keyframes slide { to { transform: translateX(-50%); } }

.section { padding: 110px 6vw; position: relative; }
.section.alt { background: linear-gradient(180deg, #0b0b0d, #101014); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 54px; flex-wrap: wrap; }
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 62px);
  text-transform: uppercase;
  line-height: .95;
  max-width: 720px;
}
.kicker { color: var(--orange); letter-spacing: .3em; text-transform: uppercase; font-size: 12px; margin-bottom: 12px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}
.stat:before {
  content: "";
  position: absolute; inset: auto -20% -40% auto;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(241,90,34,.35), transparent 70%);
}
.stat b {
  font-family: var(--display);
  font-size: 52px;
  display: block;
  background: linear-gradient(180deg, #fff, var(--orange-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span { color: var(--muted); display: block; margin-top: 8px; }

.grid-2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.photo-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
}
.photo-frame img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  transform: scale(1.12);
  transition: transform 1.4s ease;
}
.photo-frame.in-view img { transform: scale(1); }
.photo-frame {
  clip-path: inset(12% 12% 12% 12% round 28px);
  transition: clip-path 1.1s cubic-bezier(.22,1,.36,1);
}
.photo-frame.in-view { clip-path: inset(0 0 0 0 round 28px); }
.photo-badge {
  position: absolute;
  left: 22px; bottom: 22px;
  background: rgba(7,7,8,.78);
  backdrop-filter: blur(10px);
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.photo-badge strong { display: block; font-size: 28px; font-family: var(--display); }

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  transition: transform .35s, border-color .35s;
}
.card:hover { transform: translateY(-8px); border-color: rgba(241,90,34,.5); }
.card .num {
  font-family: var(--display);
  color: var(--orange);
  letter-spacing: .2em;
  margin-bottom: 40px;
}
.card h3 { font-size: 22px; margin-bottom: 12px; text-transform: uppercase; font-family: var(--display); }
.card p { color: var(--muted); line-height: 1.7; }
.card .glow {
  position: absolute; right: -40px; top: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(241,90,34,.4), transparent 70%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s;
}
.product:hover { transform: translateY(-8px); }
.product .thumb {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.product .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s;
}
.product:hover .thumb img { transform: scale(1.08); }
.product .body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tag {
  display: inline-flex;
  width: fit-content;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-2);
  border: 1px solid rgba(241,90,34,.35);
  padding: 4px 10px;
  border-radius: 999px;
}
.product h3 { font-size: 22px; }
.product p { color: var(--muted); flex: 1; }
.price { color: var(--gold); font-weight: 700; }

.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--silver);
  padding: 10px 16px;
  border-radius: 999px;
}
.filter-btn.on, .filter-btn:hover { border-color: var(--orange); color: #fff; background: rgba(241,90,34,.15); }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.person {
  border: 1px solid var(--line);
  border-radius: 24px;
  min-height: 280px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(241,90,34,.16), transparent 50%),
    var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.person span { color: var(--orange-2); letter-spacing: .2em; font-size: 12px; text-transform: uppercase; }
.person h3 { font-size: 32px; font-family: var(--display); text-transform: uppercase; margin-top: 8px; }

.locations { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.loc {
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  position: relative;
  border: 1px solid var(--line);
}
.loc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.loc .shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.82)); }
.loc .txt { position: absolute; left: 24px; right: 24px; bottom: 24px; }
.map-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--orange-2);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.map-frame {
  margin-top: 22px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 20px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after { content: "+"; color: var(--orange); font-size: 28px; }
.faq details[open] summary:after { content: "–"; }
.faq p { color: var(--muted); padding-top: 12px; max-width: 780px; line-height: 1.7; }

.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.form, .info-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
label { display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 14px 0 8px; }
input, textarea, select {
  width: 100%;
  background: #0a0a0c;
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 12px;
  padding: 14px 14px;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--orange); }
textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.notice { margin-top: 12px; color: var(--gold); min-height: 20px; }

footer {
  border-top: 1px solid var(--line);
  padding: 56px 6vw 28px;
  background: #08080a;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 24px; }
footer h4 { font-family: var(--display); letter-spacing: .16em; margin-bottom: 16px; text-transform: uppercase; }
footer p, footer li { color: var(--muted); line-height: 1.8; list-style: none; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #6d6a64;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}

.reveal { opacity: 0; transform: translateY(28px); animation: up .8s forwards; }
.d1 { animation-delay: .1s; } .d2 { animation-delay: .2s; } .d3 { animation-delay: .3s; } .d4 { animation-delay: .45s; }
@keyframes up { to { opacity: 1; transform: none; } }

.scroll-in { opacity: 0; transform: translateY(40px) scale(.98); filter: blur(6px); transition: opacity .85s var(--delay, 0ms) ease, transform .85s var(--delay, 0ms) cubic-bezier(.22,1,.36,1), filter .85s var(--delay, 0ms) ease; }
.scroll-in.in-view { opacity: 1; transform: none; filter: none; }
.scroll-in.from-left { transform: translateX(-48px) translateY(16px); }
.scroll-in.from-right { transform: translateX(48px) translateY(16px); }
.scroll-in.from-left.in-view, .scroll-in.from-right.in-view { transform: none; }

.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 120;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  pointer-events: none;
}
.intro {
  position: fixed; inset: 0; z-index: 200; background: #050506;
  display: grid; place-items: center; color: #fff;
  transition: opacity .7s ease, visibility .7s;
}
.intro.done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-inner { text-align: center; padding: 24px; max-width: 420px; }
.intro-inner img { width: min(220px, 58vw); margin: 0 auto 22px; animation: introPop 1.1s cubic-bezier(.22,1,.36,1); }
@keyframes introPop { from { opacity: 0; transform: scale(.82) translateY(18px); } to { opacity: 1; transform: none; } }
.intro-name { font-family: var(--display); letter-spacing: .28em; font-size: clamp(18px, 4vw, 26px); overflow: hidden; }
.intro-name span { display: inline-block; animation: letter .7s both; }
@keyframes letter { from { opacity: 0; transform: translateY(120%); } to { opacity: 1; transform: none; } }
.intro-line { width: 0; height: 2px; margin: 18px auto 14px; background: linear-gradient(90deg, transparent, var(--orange), transparent); animation: grow 1.1s .35s forwards; }
@keyframes grow { to { width: min(220px, 70%); } }
.intro-sub { color: var(--muted); letter-spacing: .22em; font-size: 11px; text-transform: uppercase; margin-bottom: 28px; }
.intro-track { width: min(240px, 70vw); height: 2px; margin: 0 auto; background: rgba(255,255,255,.12); overflow: hidden; }
.intro-fill { height: 100%; width: 0; background: var(--orange); }
.intro-skip { margin-top: 22px; background: none; border: 0; color: var(--muted); letter-spacing: .18em; text-transform: uppercase; font-size: 11px; }
.scroll-hint {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--silver); font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  transition: opacity .4s;
}
.scroll-hint.gone { opacity: 0; pointer-events: none; }
.scroll-hint b { width: 18px; height: 28px; border: 1px solid rgba(255,255,255,.35); border-radius: 12px; position: relative; }
.scroll-hint b:after {
  content: ""; width: 3px; height: 7px; background: var(--orange); border-radius: 2px;
  position: absolute; left: 50%; top: 6px; transform: translateX(-50%);
  animation: wheel 1.4s ease-in-out infinite;
}
@keyframes wheel { 50% { top: 14px; opacity: .2; } }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 55; }
body.nav-open .nav-overlay { display: block; }

.cta-strip {
  margin: 0 6vw 80px;
  padding: 42px 40px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(241,90,34,.28), transparent 42%),
    #121216;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(28px, 4vw, 44px); }

.wa-fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 70;
  height: 58px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
  animation: pulse 2.4s ease-in-out infinite;
  max-width: min(92vw, 320px);
}
.wa-fab img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.9);
  flex-shrink: 0;
}
.wa-copy { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.wa-copy b { font-size: 13px; font-weight: 800; }
.wa-copy small { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); }
  70% { box-shadow: 0 0 0 16px transparent; }
}

.modal[hidden] { display: none !important; }
.modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 20px; padding-bottom: max(20px, env(safe-area-inset-bottom)); }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); backdrop-filter: blur(8px); }
.modal-card {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88svh, 900px);
  overflow: auto;
  background: #121216;
  border: 1px solid var(--line);
  border-radius: 28px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  animation: up .35s ease;
}
.modal-img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.modal-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.modal-x {
  position: absolute;
  right: 14px; top: 14px;
  width: 40px; height: 40px;
  border: 0; border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff; font-size: 26px;
  z-index: 2;
}

.product { cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .intro { display: none !important; }
  .scroll-in { opacity: 1; transform: none; filter: none; }
}

.page-hero {
  padding: calc(var(--header) + env(safe-area-inset-top) + 70px) 6vw 70px;
  background:
    radial-gradient(circle at 10% 20%, rgba(241,90,34,.22), transparent 30%),
    linear-gradient(180deg, #101014, var(--bg));
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 86px);
  text-transform: uppercase;
  line-height: .92;
}

.admin-shell { padding: calc(var(--header) + 40px) 5vw 80px; max-width: 1200px; margin: 0 auto; }
.admin-grid { display: grid; grid-template-columns: 360px 1fr; gap: 22px; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; padding: 12px 8px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: middle; }
.table img { width: 54px; height: 42px; object-fit: cover; border-radius: 8px; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 1024px) {
  .stats, .services, .product-grid, .team, .grid-2, .locations, .contact-wrap, .footer-grid, .admin-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-meta { position: static; text-align: left; margin-top: 28px; }
}
@media (max-width: 900px) {
  .modal-card { grid-template-columns: 1fr; }
  .modal-img { min-height: 200px; max-height: 240px; }
}
@media (max-width: 760px) {
  :root { --header: 70px; }
  .section { padding: 72px 5vw; }
  .section-head { margin-bottom: 28px; }
  nav.primary, .header-cta { display: none; }
  nav.primary.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100svh;
    background: rgba(8,8,10,.98);
    padding: calc(var(--header) + env(safe-area-inset-top) + 12px) 28px 40px;
    gap: 22px;
    z-index: 61;
    border-left: 1px solid var(--line);
    overflow: auto;
  }
  nav.primary.open .nav-cta { display: inline-flex; margin-top: 8px; }
  .nav-toggle { display: grid; place-items: center; z-index: 62; }
  .stats, .services, .product-grid, .team, .locations, .contact-wrap, .footer-grid, .form-row, .admin-grid, .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero { place-items: end start; }
  .hero h1 { font-size: clamp(36px, 12vw, 58px); }
  .hero p.lead { font-size: 16px; }
  .brand img { height: 52px; }
  .photo-frame { min-height: 280px; }
  .card, .person { min-height: auto; }
  .loc { min-height: 240px; }
  .cta-strip { margin: 0 5vw 48px; padding: 28px 22px; }
  .filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .filter-btn { flex: 0 0 auto; min-height: 42px; }
  .faq summary { font-size: 17px; min-height: 44px; }
  .page-hero h1 { font-size: clamp(32px, 11vw, 54px); }
  footer { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
}
