:root {
  --black: #111111;
  --charcoal: #1a1a1a;
  --charcoal-2: #24211d;
  --panel: #2a2722;
  --cream: #f6efe2;
  --cream-2: #eadcc5;
  --paper: #fffaf0;
  --gold: #d4af37;
  --gold-2: #f0cf74;
  --barber-red: #8f2720;
  --salon-rose: #b9877d;
  --green: #24b77a;
  --muted: #b8afa1;
  --muted-dark: #665f55;
  --line: rgba(246, 239, 226, 0.16);
  --line-dark: rgba(17, 17, 17, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(143, 39, 32, 0.2), rgba(246, 239, 226, 0.08), rgba(212, 175, 55, 0.18)),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.12), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(185, 135, 125, 0.08), transparent 28%);
  opacity: 0.45;
  z-index: -1;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(17, 17, 17, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  display: block;
  height: 4px;
  background:
    repeating-linear-gradient(
      135deg,
      var(--barber-red) 0 14px,
      var(--cream) 14px 28px,
      var(--gold) 28px 42px,
      var(--cream) 42px 56px
    );
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
}

.brand span span { color: var(--gold-2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 9px 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--cream);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.nav-links .nav-cta {
  color: var(--black);
  background: var(--gold);
  border-color: transparent;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.is-active {
  color: var(--black);
  background: var(--gold-2);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.98) 0%, rgba(17, 17, 17, 0.92) 48%, rgba(17, 17, 17, 0.62) 100%),
    url("shot-live-queue.jpg") right 9% center / min(48vw, 620px) auto no-repeat;
}

.hero.short { min-height: 440px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: 54px;
  align-items: center;
  padding: 56px 0;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-label,
.card-label {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(36, 183, 122, 0.16);
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 8vw, 98px);
  line-height: 0.94;
  letter-spacing: 0;
}

.page-title {
  max-width: 820px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
}

.lede {
  max-width: 720px;
  color: #e8decf;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
}

.actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 900;
}

.btn-primary {
  color: var(--black);
  background: var(--gold);
}

.btn-primary:hover { background: var(--gold-2); }

.btn-secondary {
  color: var(--cream);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.hero-card,
.classic-card,
.dark-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(42, 39, 34, 0.9);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 18px;
}

.hero-card img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.hero-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.note-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px;
  background: rgba(255, 255, 255, 0.05);
}

.note-item strong {
  display: block;
  color: var(--gold-2);
  font-size: 19px;
}

.note-item span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.paper {
  color: var(--black);
  background: var(--cream);
}

.paper .section-copy,
.paper p { color: var(--muted-dark); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.tile-grid,
.feature-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
  gap: 30px;
  align-items: center;
}

.classic-card,
.price-card {
  padding: 24px;
}

.classic-card h3,
.dark-card h3,
.price-card h3 {
  margin: 10px 0 10px;
  font-size: 25px;
  line-height: 1.12;
}

.classic-card p,
.dark-card p,
.price-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.paper .classic-card {
  border-color: var(--line-dark);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.paper .classic-card p,
.paper .price-card p { color: var(--muted-dark); }

.dark-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(42, 39, 34, 0.96), rgba(17, 17, 17, 0.96));
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
}

.image-panel img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top;
}

.stacked-shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stacked-shots img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stacked-shots .wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--black);
  border-radius: 999px;
  background: var(--gold);
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 3px;
  color: var(--cream);
  font-size: 19px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.price {
  margin: 8px 0 14px;
  font-size: 40px;
  font-weight: 950;
  letter-spacing: 0;
}

.price span {
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 800;
}

.plan-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.plan-list li {
  color: var(--muted-dark);
  font-size: 14px;
}

.price-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  border-color: var(--line-dark);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.13);
}

.price-card .btn { margin-top: auto; }

.qr-code {
  width: 180px;
  height: 180px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--black);
  color: var(--muted);
}

.footer-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.footer-links a:first-child { border-left: 0; }
.footer-links a:hover { color: var(--gold-2); }

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }
  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }
  .hero-grid,
  .section-head,
  .two-col {
    grid-template-columns: 1fr;
  }
  .tile-grid,
  .feature-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container { width: min(1180px, calc(100% - 28px)); }
  .site-header { position: relative; }
  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
  }
  .nav-links a {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
  }
  .hero,
  .hero.short {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.98)),
      url("shot-live-queue.jpg") center bottom / 480px auto no-repeat;
  }
  .hero-grid { padding: 42px 0 280px; }
  .hero-card { display: none; }
  .hero-note,
  .tile-grid,
  .feature-grid,
  .price-grid,
  .stacked-shots {
    grid-template-columns: 1fr;
  }
  .section { padding: 56px 0; }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }
  .footer-links {
    width: 100%;
    justify-content: flex-start;
  }
  .footer-links a {
    border-left: 0;
    border-right: 1px solid var(--line);
    padding: 0 12px;
  }
}
