/* ============================================================
   HEPH Reno — Building & Design
   Dark charcoal + brushed copper. Mobile-first.
   ============================================================ */

:root {
  --bg: #0b0b0c;
  --surface: #141416;
  --surface-2: #1c1c1f;
  --line: #26262a;
  --line-strong: #33333a;

  --text: #f5f2ec;
  --muted: #a8a29a;
  --muted-dim: #7d786f;

  --copper: #b87333;
  --copper-hi: #d4a574;
  --copper-dim: rgba(184, 115, 51, 0.14);

  --r: 6px;
  --r-lg: 10px;

  --shell: 1200px;
  --pad: 20px;

  --f-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --f-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--copper-hi); text-decoration: none; }
a:hover { color: var(--text); }

h1, h2, h3 { margin: 0; line-height: 1.15; font-weight: 500; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--copper-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--copper);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--r) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ── type helpers ───────────────────────────────────────────── */
.eyebrow {
  margin: 0 0 14px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-hi);
}
.eyebrow::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--copper), transparent);
}

.lede, .section-lede {
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 56ch;
}

/* ── buttons ────────────────────────────────────────────────── */
.btn {
  --btn-pad: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-pad);
  border: 1px solid transparent;
  border-radius: var(--r);
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-primary {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
}
.btn-primary:hover {
  background: var(--copper-hi);
  border-color: var(--copper-hi);
  color: #17130f;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--copper); color: var(--copper-hi); }
.btn-sm { --btn-pad: 11px 20px; font-size: 0.78rem; }
.btn-lg { --btn-pad: 17px 34px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: progress; transform: none; }

/* ── header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(11, 11, 12, 0.72);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(11, 11, 12, 0.95);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: auto; height: 34px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
}
.brand-sub {
  margin-top: 6px;
  font-size: 0.54rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper-hi);
}

.nav-desktop { display: none; }
.nav-desktop a {
  position: relative;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 6px 0;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--copper);
  transition: right 0.3s var(--ease);
}
.nav-desktop a:hover { color: var(--text); }
.nav-desktop a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn-sm { display: none; }

.nav-toggle {
  width: 42px; height: 42px;
  display: grid;
  place-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 68px 0 auto;
  z-index: 88;
  background: rgba(11, 11, 12, 0.98);
  border-bottom: 1px solid var(--line);
  padding: 8px var(--pad) 28px;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav a {
  padding: 16px 2px;
  color: var(--text);
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a.btn { margin-top: 20px; border: 1px solid var(--copper); color: #fff; justify-content: center; }
.mobile-nav a.btn:hover { color: #17130f; }
body.nav-open { overflow: hidden; }

/* ── hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 56px 0 64px;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(184, 115, 51, 0.13), transparent 60%),
    linear-gradient(180deg, #0d0d0f 0%, var(--bg) 70%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 115, 51, 0.5), transparent);
}
.hero-grid { display: grid; gap: 40px; }

h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.35rem, 9vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-meta {
  margin: 26px 0 0;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

/* ── hero shot ──────────────────────────────────────────────── */
.hero-shot { margin: 0; }
.hero-shot-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 14px;
  box-shadow:
    inset 0 0 0 1px rgba(245, 242, 236, 0.09),
    0 34px 70px -34px rgba(0, 0, 0, 0.85);
}
.hero-shot-frame::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 48%;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(8, 8, 9, 0.55) 42%, rgba(8, 8, 9, 0.9));
  pointer-events: none;
}
.hero-shot picture { display: block; }
.hero-shot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}

.hero-shot-tag {
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px 10px 14px;
  background: rgba(11, 11, 12, 0.6);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-right: 1px solid rgba(184, 115, 51, 0.45);
  border-bottom: 1px solid rgba(184, 115, 51, 0.45);
  border-radius: 0 0 12px 0;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-hi);
}
.hero-shot-tag::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.22);
}

.hero-shot-plate {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px;
}
.hero-shot-plate::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--copper);
}
.hero-shot-title {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}
.hero-shot-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-top: 12px;
}
.hero-shot-specs li {
  padding: 5px 10px;
  border: 1px solid rgba(245, 242, 236, 0.16);
  border-radius: 999px;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ── trust strip ────────────────────────────────────────────── */
.trust {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.trust-item {
  padding: 18px 8px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
.trust-item:nth-last-child(-n+2) { border-bottom: 0; }
.trust-item span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── section frame ──────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-alt { background: linear-gradient(180deg, #0f0f11, var(--bg)); border-block: 1px solid var(--line); }
.section-head { max-width: 62ch; margin-bottom: 40px; }
.section-head-mid { margin-top: 72px; }
.section-head h2, .cta-band h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 6vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-head .section-lede { margin-bottom: 0; }

/* ── about ──────────────────────────────────────────────────── */
.about-grid { display: grid; gap: 36px; }
.about-copy p { color: var(--muted); }
.about-copy .about-closing {
  color: var(--text);
  font-family: var(--f-display);
  font-size: 1.3rem;
  line-height: 1.35;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 26px;
}
.about-side { display: grid; gap: 18px; }
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--copper);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 26px 24px;
}
.panel h3 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-hi);
  margin-bottom: 12px;
}
.panel p { margin: 0; color: var(--muted); font-size: 0.96rem; }

.values { margin-top: 56px; }
.values-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dim);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.values-grid { display: grid; gap: 26px; }
.values-grid li { display: grid; gap: 6px; }
.values-grid .num,
.service .num {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--copper);
  letter-spacing: 0.06em;
}
.values-grid strong { font-weight: 500; font-size: 1.02rem; }
.val-copy { color: var(--muted); font-size: 0.92rem; }

/* ── services ───────────────────────────────────────────────── */
.services-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.service {
  background: var(--bg);
  padding: 26px 22px 28px;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.service .num { display: block; margin-bottom: 10px; }
.service h3 { font-size: 1.02rem; font-weight: 500; margin-bottom: 8px; }
.service p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.service:hover { background: var(--surface-2); }
.service-cta {
  background: linear-gradient(140deg, rgba(184, 115, 51, 0.18), rgba(184, 115, 51, 0.04));
}
.service-cta:hover { background: linear-gradient(140deg, rgba(184, 115, 51, 0.26), rgba(184, 115, 51, 0.07)); }
.service-cta .num { font-size: 1.3rem; }
.service-cta a { text-decoration: underline; text-decoration-color: rgba(212, 165, 116, 0.5); text-underline-offset: 3px; }

/* ── before / after ─────────────────────────────────────────── */
.ba-list { display: grid; gap: 44px; }
.ba-head { margin-bottom: 18px; }
.ba-head h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.ba-head p { margin: 0; color: var(--muted); font-size: 0.93rem; max-width: 62ch; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ba-shot { position: relative; margin: 0; }
.ba-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: var(--r);
  transition: transform 0.35s var(--ease);
}
.ba-btn:hover { transform: translateY(-2px); }
.ba-btn:hover img { border-color: rgba(184, 115, 51, 0.55); }
.ba-shot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--line);
}
.ba-shot figcaption { position: absolute; top: 10px; left: 10px; }
.tag {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 3px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.tag-before { background: rgba(11, 11, 12, 0.75); color: var(--muted); border: 1px solid var(--line-strong); }
.tag-after { background: var(--copper); color: #fff; }

/* ── gallery ────────────────────────────────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.shot {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.shot img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
  filter: saturate(0.94);
}
.shot-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 12px 10px;
  background: linear-gradient(transparent, rgba(8, 8, 9, 0.88));
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-align: left;
}
.shot:hover { border-color: rgba(184, 115, 51, 0.55); transform: translateY(-2px); }
.shot:hover img { transform: scale(1.04); filter: saturate(1.02); }

/* ── cta band ───────────────────────────────────────────────── */
.cta-band {
  background:
    linear-gradient(120deg, rgba(184, 115, 51, 0.16), rgba(184, 115, 51, 0.03) 60%),
    var(--surface);
  border-block: 1px solid var(--line);
  padding: 54px 0;
}
.cta-inner { display: grid; gap: 26px; align-items: center; }
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { margin: 0; color: var(--muted); max-width: 52ch; }

/* ── contact ────────────────────────────────────────────────── */
.contact-grid { display: grid; gap: 40px; }
.contact-email {
  display: grid;
  gap: 4px;
  margin: 26px 0 30px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--copper);
  border-radius: 0 var(--r) var(--r) 0;
}
.contact-email span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dim);
}
.contact-email a { font-size: 1.05rem; word-break: break-all; }

.steps { counter-reset: step; display: grid; gap: 20px; }
.steps li {
  counter-increment: step;
  display: grid;
  gap: 3px;
  padding-left: 46px;
  position: relative;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  width: 32px; height: 32px;
  display: grid; place-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 0.85rem;
  color: var(--copper-hi);
}
.steps strong { font-weight: 500; }
.steps span { color: var(--muted); font-size: 0.92rem; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 22px 28px;
}
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field-row { display: grid; gap: 0; }
.field label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field label span[aria-hidden] { color: var(--copper); }
.field .opt { text-transform: none; letter-spacing: 0.02em; color: var(--muted-dim); font-weight: 400; }

.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1rem;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 21px, calc(100% - 15px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 42px;
}
.field input::placeholder, .field textarea::placeholder { color: #5e5a54; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--copper);
  outline: none;
  background: #101012;
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #b5533a; }
.field-error { color: #e0876b; font-size: 0.8rem; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { margin: 14px 0 0; font-size: 0.78rem; color: var(--muted-dim); }
.form-status { margin: 12px 0 0; font-size: 0.92rem; min-height: 1.2em; }
.form-status.ok { color: var(--copper-hi); }
.form-status.err { color: #e0876b; }

/* ── footer ─────────────────────────────────────────────────── */
.site-footer { background: #08080a; border-top: 1px solid var(--line); padding: 56px 0 26px; }
.footer-grid { display: grid; gap: 34px; }
.footer-brand img { width: auto; height: 118px; margin-bottom: 22px; }
.footer-brand p { color: var(--muted-dim); font-size: 0.88rem; max-width: 42ch; margin: 0; }
.footer-col h3 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-hi);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--text); }
.footer-base {
  display: grid;
  gap: 8px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.footer-base p { margin: 0; font-size: 0.78rem; color: var(--muted-dim); }

/* ── lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 6, 7, 0.95);
  backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: min(1000px, 100%); max-height: 100%; display: grid; gap: 14px; }
.lightbox img {
  max-height: 78vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--r);
  border: 1px solid var(--line-strong);
}
.lightbox figcaption { text-align: center; color: var(--muted); font-size: 0.85rem; }
.lb-close {
  position: absolute;
  top: 14px; right: 16px;
  width: 44px; height: 44px;
  font-size: 1.8rem;
  line-height: 1;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  color: var(--text);
  cursor: pointer;
}
.lb-close:hover { border-color: var(--copper); color: var(--copper-hi); }

/* ── reveal on scroll ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Breakpoints
   ============================================================ */
@media (min-width: 600px) {
  :root { --pad: 28px; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-item { border-bottom: 0; border-right: 1px solid var(--line); }
  .trust-item:last-child { border-right: 0; }
  .field-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 26px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .form-card { padding: 32px 30px 34px; }
  .footer-base { grid-template-columns: 1fr auto; }
}

@media (min-width: 900px) {
  html { scroll-padding-top: 96px; }
  .header-inner { min-height: 80px; }
  .brand-mark { height: 40px; }
  .brand-name { font-size: 1.08rem; }
  .brand-sub { font-size: 0.58rem; }
  .nav-desktop { display: flex; gap: 34px; }
  .header-actions .btn-sm { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }

  .hero { padding: 72px 0 80px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
  .hero-shot img { aspect-ratio: 4 / 5; max-height: 620px; }
  .hero-shot-plate { padding: 28px 26px 26px; }
  .hero-shot-tag { padding: 11px 18px 11px 16px; }

  .section { padding: 104px 0; }
  .section-head { margin-bottom: 56px; }
  .about-grid { grid-template-columns: 1.15fr 0.85fr; gap: 56px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(5, 1fr); gap: 26px 20px; }
  .ba-list { grid-template-columns: 1fr 1fr; gap: 48px 40px; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .cta-inner { grid-template-columns: 1fr auto; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
}

@media (min-width: 1200px) {
  h1 { font-size: 3.5rem; }
}

@media (max-width: 479px) {
  .hero-cta { display: grid; }
  .hero-cta .btn { width: 100%; }
}

/* ── reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .shot:hover img { transform: none; }
}
