/* Isaac pitch — amber. DRAFT — Mara Media. Do not publish. */

:root {
  --bg: #07080a; --bg-2: #0c0e12; --bg-3: #090b0f;
  --panel: #13161b; --panel-2: #1a1e25; --panel-3: #10131a;
  --line: #2a2f38; --line-soft: rgba(201, 120, 42, 0.22);
  --text: #f2eee6; --muted: #9a9386; --faint: #6e685c;
  --accent: #c9782a; --accent-2: #e08a38; --accent-3: #f0a04b;
  --accent-dim: rgba(201, 120, 42, 0.12); --accent-glow: rgba(201, 120, 42, 0.28);
  --ink: #140c04; --white: #ffffff; --danger: #c44b2a; --ok: #3d9b6a;
  --radius: 2px; --radius-lg: 4px; --max: 1180px; --max-wide: 1280px;
  --header: 76px; --banner: 32px; --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --font-display: "Barlow Condensed", sans-serif; --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}


*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.no-js .js-only { display: none !important; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
code { color: var(--accent); font-size: 0.95em; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.wrap-wide { width: min(var(--max-wide), calc(100% - 40px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.draft-banner {
  position: sticky; top: 0; z-index: 60;
  height: var(--banner);
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.72);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 0 16px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  backdrop-filter: blur(10px);
}
.eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 12px;
}
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0;
}
h1 { font-size: clamp(3.1rem, 8vw, 6.4rem); font-weight: 600; }
h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h3 { font-size: 1.55rem; line-height: 1.15; }
p { margin: 0 0 1em; color: var(--muted); }
.lede { font-size: 1.2rem; max-width: 42rem; color: #cfc8bb; }
.muted { color: var(--muted); }
.faint { color: var(--faint); }

.site-header {
  position: sticky; top: var(--banner); z-index: 50;
  height: var(--header);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; width: min(var(--max), calc(100% - 40px));
}
.brand { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.brand-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--muted);
  position: relative;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--accent);
}
.header-phone {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--accent-2); }
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line); color: var(--text);
  width: 44px; height: 44px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); margin: 6px 8px; }
.cart-link strong { color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 22px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn:disabled, .btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-sm { padding: 10px 14px; font-size: 0.82rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.link-more {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--accent);
}
.link-more:hover { color: var(--accent-2); }

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-media {
  position: absolute; inset: 0;
  background: #0a0c10 center/cover no-repeat;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,8,10,0.25) 0%, rgba(7,8,10,0.55) 40%, rgba(7,8,10,0.96) 100%),
    linear-gradient(90deg, rgba(7,8,10,0.55) 0%, rgba(7,8,10,0.12) 55%);
}
.hero-inner { position: relative; z-index: 1; padding: 80px 0 72px; }
.hero .kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero .kicker::before { content: ""; width: 36px; height: 1px; background: var(--accent); }
.hero h1 { max-width: 16ch; margin-bottom: 22px; }
.hero .lede { color: #d7d0c4; }
.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(800px 280px at 10% 0%, var(--accent-dim), transparent 60%),
    var(--bg);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lede { margin-top: 8px; }

section { padding: 88px 0; }
.section-head { margin-bottom: 42px; max-width: 40rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.section-tight { padding-top: 0; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.rev > :first-child { order: 2; }
.split img, .frame-img {
  width: 100%; height: 520px; object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.85) contrast(1.05);
}
.frame-img {
  background-size: cover;
  background-position: center;
  min-height: 420px;
}
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px 26px;
}
.panel-soft { background: var(--panel-3); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px 24px;
  min-height: 100%;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card-num {
  font-family: var(--font-display);
  color: var(--accent);
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 16px;
}
.list-plain { list-style: none; padding: 0; margin: 0; }
.list-plain li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 1.02rem;
  opacity: 0.9;
}
.list-plain li:last-child { border-bottom: 0; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--text);
  opacity: 0.9;
  border-bottom: 1px solid var(--line);
}
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 10px;
  color: var(--accent);
  font-weight: 700;
}

.project-card {
  display: flex; flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 100%;
  transition: border-color 0.2s;
}
.project-card:hover { border-color: var(--accent); }
.project-card img {
  width: 100%; height: 220px; object-fit: cover;
  filter: saturate(0.8) contrast(1.08);
  cursor: zoom-in;
}
.project-card .body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.project-meta {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.project-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.project-card p { flex: 1; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%; height: 200px; object-fit: cover;
  border: 1px solid var(--line);
  cursor: zoom-in;
  filter: saturate(0.85) contrast(1.05);
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.gallery-grid img:hover { border-color: var(--accent); transform: translateY(-2px); }
.gallery-grid.dense img { height: 240px; }

.strip {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  padding: 28px 0;
}
.strip-row {
  display: flex; flex-wrap: wrap; gap: 18px 36px;
  justify-content: space-between;
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--muted);
}
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-3);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--muted);
}
.marquee-track span {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-track .dot { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 26px 22px;
  min-height: 100%;
}
.why-card .n {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px 22px 24px;
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  color: var(--accent);
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 14px;
}
.process-step h3 { margin-bottom: 10px; font-size: 1.35rem; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body {
  padding: 0 22px 20px;
  border-top: 1px solid var(--line);
}
.faq-item .faq-body p { margin: 14px 0 0; }
.cta-band {
  padding: 96px 0;
  text-align: center;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(700px 240px at 50% 0%, var(--accent-dim), transparent 65%),
    var(--bg-2);
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { margin-inline: auto; max-width: 36rem; }
.cta-band .btn-row { justify-content: center; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 48px 0;
  border-block: 1px solid var(--line);
  background: var(--bg-3);
}
.stat { text-align: center; padding: 12px; }
.stat .n {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  letter-spacing: 0.04em;
}
.stat .l {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.detail dt {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--faint);
  margin-top: 18px;
}
.detail dd { margin: 4px 0 0; font-size: 1.15rem; }
.detail a { color: var(--accent); }
label { display: block; font-size: 0.85rem; color: var(--muted); margin: 14px 0 6px; }
input, select, textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 12px;
  font-size: 1rem;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--faint); margin-top: 10px; }
.form-success {
  display: none;
  border: 1px solid var(--accent);
  background: var(--accent-dim);
  padding: 22px;
  margin-top: 12px;
}
.form-success.is-on { display: block; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 36px;
  background: #050608;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
.site-footer h3 { font-size: 1.15rem; margin-bottom: 12px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--accent); }
.legal {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 0.82rem;
  color: var(--faint);
}
.disclaimer {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 18px 20px;
  font-size: 0.92rem;
  color: var(--muted);
}
.disclaimer strong { color: var(--text); }
.lightbox {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0,0,0,0.88);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.is-on { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; object-fit: contain; }
.lightbox button {
  position: absolute; top: 18px; right: 18px;
  background: none; border: 1px solid var(--line); color: var(--text);
  width: 44px; height: 44px; cursor: pointer; font-size: 1.4rem;
}

.product-card {
  display: flex; flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 100%;
  --paccent: var(--accent);
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.product-card:hover { border-color: var(--paccent); transform: translateY(-2px); }
.product-card .thumb {
  width: 100%; height: 180px; object-fit: cover;
  background: var(--panel-2);
}
.product-card .body {
  padding: 18px 18px 20px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.product-meta {
  display: flex; justify-content: space-between; gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paccent);
  font-family: var(--font-display);
}
.product-card h3 { font-size: 1.15rem; }
.product-card .price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
  margin-top: auto;
}
.product-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.pdp-art {
  border: 1px solid var(--line);
  background: var(--panel);
  min-height: 420px;
  overflow: hidden;
}
.pdp-art img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  margin: 16px 0;
}
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 8px;
}
.spec {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 14px 16px;
}
.spec b {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--faint);
  margin-bottom: 4px;
  font-weight: 600;
}
.cart-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.cart-table th, .cart-table td {
  text-align: left; padding: 12px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.cart-table th {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--faint);
  font-weight: 600;
}
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  background: var(--panel);
  border: 1px solid var(--accent);
  color: var(--text);
  padding: 12px 16px;
  font-size: 0.9rem;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
}
.toast.show { opacity: 1; transform: translateY(0); }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line);
  background: var(--accent-dim);
  color: var(--accent);
  padding: 6px 10px;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip {
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
}
.chip:hover, .chip.is-on { border-color: var(--accent); color: var(--text); }
.note-box {
  border-left: 3px solid var(--accent);
  background: var(--accent-dim);
  padding: 16px 18px;
  margin: 18px 0;
}
.note-box p { margin: 0; color: var(--text); opacity: 0.9; }
.feature-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}
.feature-stack { display: grid; gap: 14px; }
.mini-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 18px 18px;
}
.mini-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.hr-soft { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }

/* Quality pass — denser photography + stronger CTA weight (Whaley/Lonestar/Mara) */
.header-actions {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.header-book {
  padding: 10px 16px;
  white-space: nowrap;
}
.btn-lg {
  padding: 18px 28px;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  box-shadow: 0 10px 28px var(--accent-glow);
}
.btn-lg:hover { box-shadow: 0 14px 34px var(--accent-glow); }
.btn-ghost.btn-lg { box-shadow: none; }
.btn-ghost.btn-lg:hover { box-shadow: none; }
.cta-band .btn-row { gap: 14px; }
.cta-band .btn { min-width: 200px; padding: 16px 26px; font-size: 1rem; }
.cta-band h2 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
.mid-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px 28px;
  padding: 28px 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  margin-top: 36px;
}
.mid-cta .copy { margin: 0; max-width: 36rem; }
.mid-cta .copy strong {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 6px;
}
.photo-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 8px 0 0;
}
.photo-rail img {
  width: 100%; height: 140px; object-fit: cover;
  border: 1px solid var(--line);
  cursor: zoom-in;
  filter: saturate(0.82) contrast(1.06);
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.photo-rail img:hover { border-color: var(--accent); transform: translateY(-2px); }
.gallery-grid.dense {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-grid.dense img { height: 260px; }
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
}
.mosaic img {
  width: 100%; height: 100%; object-fit: cover;
  border: 1px solid var(--line);
  cursor: zoom-in;
  filter: saturate(0.85) contrast(1.06);
}
.mosaic img:first-child { grid-row: 1 / span 2; height: 100%; min-height: 410px; }
.service-block img {
  width: 100%; height: 160px; object-fit: cover;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  cursor: zoom-in;
  filter: saturate(0.85) contrast(1.05);
}
.float-cta {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  display: none;
  gap: 8px;
  align-items: center;
}
.float-cta .btn { box-shadow: var(--shadow); }
.float-cta .btn-ghost {
  background: rgba(12,14,18,0.92);
  backdrop-filter: blur(10px);
}

.float-phone {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  display: none;
}
.quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  margin: 18px 0;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-block {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 32px 28px;
}
.service-block h3 { margin-bottom: 12px; }
.service-block ul { margin: 12px 0 0; padding-left: 1.1rem; color: var(--muted); }
.service-block li { margin: 6px 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.text-center { text-align: center; }
.accent { color: var(--accent); }

@media (min-width: 901px) {
  .float-cta { display: inline-flex; }
}
@media (max-width: 1100px) {
  .grid-4, .why-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-rail { grid-template-columns: repeat(3, 1fr); }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .mosaic img:first-child { grid-row: auto; min-height: 180px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(var(--header) + var(--banner)); left: 0; right: 0;
    background: #0b0d11;
    border-bottom: 1px solid var(--line);
    padding: 20px 24px 28px;
    gap: 16px;
  }
  .nav-toggle { display: block; }
  .header-actions .header-phone { display: none; }
  .header-book { padding: 10px 14px; }
  .split, .grid-3, .grid-2, .grid-6, .contact-grid, .footer-grid,
  .pdp, .feature-row, .service-hero-grid { grid-template-columns: 1fr; }
  .split.rev > :first-child { order: 0; }
  .split img, .frame-img { height: 280px; min-height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-rail { grid-template-columns: repeat(2, 1fr); }
  .mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .mosaic img, .mosaic img:first-child { height: 220px; min-height: 220px; }
  .grid-4, .why-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 0; }
  .hero { min-height: 78vh; }
  .form-row-2 { grid-template-columns: 1fr; }
  .float-phone { display: inline-flex; }
  .float-cta { display: inline-flex; }
}
@media (max-width: 560px) {
  .grid-4, .why-grid, .process-grid, .stats, .gallery-grid { grid-template-columns: 1fr; }
  .photo-rail { grid-template-columns: 1fr 1fr; }
  .float-cta { left: 12px; right: 12px; bottom: 12px; justify-content: stretch; }
  .float-cta .btn { flex: 1; padding: 14px 12px; font-size: 0.85rem; }
  .hero h1 { max-width: 12ch; }
  .wrap { width: min(var(--max), calc(100% - 28px)); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
  .btn, .card, .product-card, .gallery-grid img { transition: none; }
}


/* density tokens */
.token-space-01 { --t1: 5px; }
.token-space-02 { --t2: 6px; }
.token-space-03 { --t3: 7px; }
.token-space-04 { --t4: 8px; }
.token-space-05 { --t5: 9px; }
.token-space-06 { --t6: 10px; }
.token-space-07 { --t7: 11px; }
.token-space-08 { --t8: 12px; }
.token-space-09 { --t9: 13px; }
.token-space-10 { --t10: 14px; }
.token-space-11 { --t11: 15px; }
.token-space-12 { --t12: 16px; }
.token-space-13 { --t13: 17px; }
.token-space-14 { --t14: 18px; }
.token-space-15 { --t15: 19px; }
.token-space-16 { --t16: 20px; }
.token-space-17 { --t17: 21px; }
.token-space-18 { --t18: 22px; }
.token-space-19 { --t19: 23px; }
.token-space-20 { --t20: 24px; }
.token-space-21 { --t21: 25px; }
.token-space-22 { --t22: 26px; }
.token-space-23 { --t23: 27px; }
.token-space-24 { --t24: 28px; }
.token-space-25 { --t25: 29px; }
.token-space-26 { --t26: 30px; }
.token-space-27 { --t27: 31px; }
.token-space-28 { --t28: 32px; }
.token-space-29 { --t29: 33px; }
.token-space-30 { --t30: 34px; }
.token-space-31 { --t31: 35px; }
.token-space-32 { --t32: 36px; }
.token-space-33 { --t33: 37px; }
.token-space-34 { --t34: 38px; }
.token-space-35 { --t35: 39px; }
.token-space-36 { --t36: 40px; }
.token-space-37 { --t37: 41px; }
.token-space-38 { --t38: 42px; }
.token-space-39 { --t39: 43px; }
.token-space-40 { --t40: 44px; }
.token-space-41 { --t41: 45px; }
.token-space-42 { --t42: 46px; }
.token-space-43 { --t43: 47px; }
.token-space-44 { --t44: 48px; }
.token-space-45 { --t45: 49px; }
.token-space-46 { --t46: 50px; }
.token-space-47 { --t47: 51px; }
.token-space-48 { --t48: 52px; }
.token-space-49 { --t49: 53px; }
.token-space-50 { --t50: 54px; }
.token-space-51 { --t51: 55px; }
.token-space-52 { --t52: 56px; }
.token-space-53 { --t53: 57px; }
.token-space-54 { --t54: 58px; }
.token-space-55 { --t55: 59px; }
.token-space-56 { --t56: 60px; }
.token-space-57 { --t57: 61px; }
.token-space-58 { --t58: 62px; }
.token-space-59 { --t59: 63px; }
.token-space-60 { --t60: 64px; }


/* Quality pass — photo service cards, denser gallery, heavier hero */
.hero-cta { gap: 14px; margin-top: 32px; }
.hero-heavy { min-height: min(92vh, 900px); }
.hero-heavy .hero-inner { padding: 96px 0 88px; }
.hero-heavy h1 { max-width: 14ch; }
.strip-heavy { padding: 18px 0; }
.service-card-photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card-photo > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  border-bottom: 1px solid var(--line);
  cursor: zoom-in;
}
.service-card-photo .card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.service-card-photo .link-more { margin-top: auto; }
.service-photo-grid { gap: 20px; }
.gallery-heavy img { min-height: 220px; }
.why-heavy { grid-template-columns: repeat(3, 1fr); }
.cta-heavy { padding: 110px 0; }
.cta-heavy h2 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
.service-block-photo { overflow: hidden; }
.service-block-photo > img {
  height: 160px;
  object-fit: cover;
  margin: -4px -4px 16px;
  width: calc(100% + 8px);
  max-width: none;
  filter: saturate(0.85) contrast(1.05);
  border-bottom: 1px solid var(--line);
  cursor: zoom-in;
}
.mt-32 { margin-top: 32px; }
@media (max-width: 900px) {
  .why-heavy { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .why-heavy { grid-template-columns: 1fr; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
}
