:root {
  --bg: #0D0D0D;
  --bg-alt: #141414;
  --bg-card: #1A1A1A;
  --fg: #F5F0E8;
  --fg-muted: #9A958C;
  --accent: #1A4A2E;
  --accent-mid: #2D6B47;
  --brass: #C9A84C;
  --border: #2A2A2A;
  --nav-h: 64px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 16px;
  font-weight: 600;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--brass);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  opacity: 0.15;
}
.img-placeholder {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-muted);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.stat-div {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* CARRY MODES */
.carry-modes {
  padding: 96px 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-mid);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.modes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto 32px;
}
.mode-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: border-color 0.2s;
}
.mode-card:hover {
  border-color: var(--accent-mid);
}
.mode-icon {
  color: var(--brass);
  margin-bottom: 20px;
}
.mode-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.mode-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.modes-note {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.85rem;
  max-width: 500px;
  margin: 0 auto;
}

/* CONSTRUCTION */
.construction {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}
.const-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.const-text .section-kicker { margin-bottom: 12px; }
.const-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.const-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.spec-list { display: flex; flex-direction: column; gap: 0; }
.spec-item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.spec-item:first-child { border-top: 1px solid var(--border); }
.spec-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-mid);
  font-weight: 600;
  min-width: 80px;
  flex-shrink: 0;
}
.spec-val {
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.const-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.const-img-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 8px;
  width: 100%;
}
.block-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.block-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.block-chip {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brass);
  text-align: center;
  letter-spacing: 0.04em;
}

/* REVIEWS */
.reviews {
  padding: 96px 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
}
.review-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 16px;
}
.review-quote::before { content: '\201C'; }
.review-quote::after { content: '\201D'; }
.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--brass);
  text-transform: uppercase;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  text-align: center;
  background: var(--bg);
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing-body {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.closing-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.price-main {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--fg);
}
.price-sub {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* FOOTER */
.site-footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-nav { padding: 0 24px; }
  .hero { padding: 56px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 2.75rem; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat { min-width: 100px; padding: 0; }
  .stat-div { display: none; }
  .modes-grid { grid-template-columns: 1fr 1fr; }
  .construction { padding: 64px 24px; }
  .const-inner { grid-template-columns: 1fr; gap: 40px; }
  .const-visual { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .carry-modes { padding: 64px 24px; }
  .reviews { padding: 64px 24px; }
  .closing { padding: 80px 24px; }
  .section-header { margin-bottom: 40px; }
}
@media (max-width: 480px) {
  .modes-grid { grid-template-columns: 1fr; }
}