:root {
  --bg: #0c0c0c;
  --surface: #161616;
  --text: #f4f1ea;
  --muted: #a39e94;
  --accent: #c45c26;
  --line: #2a2a2a;
  --max: 1080px;
  --font: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; }
.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(12,12,12,0.85);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0; gap: 1rem;
}
.logo { color: var(--text); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.85rem; white-space: nowrap; }
.nav-links { display: flex; gap: 1.1rem; flex-wrap: nowrap; font-size: 0.9rem; }
.nav-links a { color: var(--muted); white-space: nowrap; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
@media (max-width: 720px) {
  .logo { display: none; }
  .nav-inner { justify-content: center; padding: 0.7rem 0; }
  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 0.35rem;
    font-size: 0.8rem;
  }
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none !important;
}
.btn.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text) !important;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0 3rem;
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.lede { color: var(--muted); font-size: 1.08rem; max-width: 36rem; }
.cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-photo {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}
.section { padding: 3.5rem 0; }
.section h2 {
  font-family: var(--font);
  font-size: 2rem;
  margin: 0 0 1.25rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.25rem;
}
.card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.price {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-family: var(--font);
}
.price span { color: var(--muted); font-size: 0.85rem; font-family: var(--sans); }
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.table th, .table td {
  text-align: left;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table th { color: var(--muted); font-weight: 500; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.studio-shot {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}
.steps { display: grid; gap: 0.75rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.num {
  width: 1.75rem; height: 1.75rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 0.8rem;
}
.embed {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}
.embed iframe { width: 100%; border: 0; min-height: 380px; }
.about-copy p { color: var(--muted); }
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}
@media (max-width: 860px) {
  .hero, .split, .grid-3 { grid-template-columns: 1fr; }
  .hero { padding-top: 2rem; }
}

.plaque-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 0.75rem;
  margin: 1rem auto 0.5rem;
  align-items: stretch;
  justify-content: center;
  justify-items: center;
  width: 100%;
  max-width: 680px;
}
.plaque-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0.65rem;
  border: 1px solid var(--line);
  background: #0a0a0a;
  display: block;
}
@media (max-width: 860px) {
  .plaque-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .plaque-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
}
