:root {
  --navy: #0B1F3A;
  --navy-soft: #16345A;
  --red: #C8102E;
  --red-hot: #E11D3A;
  --sand: #F7F4EF;
  --cream: #FFFCFA;
  --ink: #142033;
  --muted: #5C6B7A;
  --line: rgba(11, 31, 58, 0.12);
  --white: #FFFFFF;
  --shadow: 0 24px 60px rgba(11, 31, 58, 0.12);
  --radius: 22px;
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  background:
    radial-gradient(900px 420px at 100% -10%, rgba(200, 16, 46, 0.08), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--sand) 45%, #fff 100%);
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--red); }
code { font-size: 0.9em; background: rgba(11,31,58,0.06); padding: 0.1em 0.35em; border-radius: 6px; }

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: #fff; padding: 0.5rem 1rem; z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.wrap.narrow { width: min(760px, calc(100% - 2rem)); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 252, 250, 0.9);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: baseline; gap: 0.45rem; }
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.65rem; color: var(--navy); letter-spacing: -0.02em;
}
.brand-mark span { color: var(--red); }
.brand-sub {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.site-nav { display: none; align-items: center; gap: 0.35rem; }
.site-nav a {
  padding: 0.55rem 0.8rem; border-radius: 999px;
  font-weight: 700; font-size: 0.92rem; color: var(--navy-soft);
}
.site-nav a.active, .site-nav a:hover { background: rgba(11,31,58,0.06); color: var(--navy); }
.nav-toggle {
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px;
  background: #fff; display: grid; place-content: center; gap: 6px; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--navy); }
.site-nav.open {
  display: flex; flex-direction: column; align-items: stretch;
  position: absolute; left: 1rem; right: 1rem; top: calc(var(--header-h) + 0.4rem);
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 0.75rem; box-shadow: var(--shadow);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 48px; padding: 0.8rem 1.25rem; border-radius: 999px; border: 0;
  font: inherit; font-weight: 800; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-sm { min-height: 40px; padding: 0.55rem 1rem; font-size: 0.9rem; }
.btn-block { width: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-hot)); color: #fff; box-shadow: 0 12px 28px rgba(200,16,46,0.28); }
.btn-primary:hover { color: #fff; }
.btn-ghost { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.btn-light { background: #fff; color: var(--navy); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.1rem; }
.btn-row.center { justify-content: center; }

.eyebrow {
  margin: 0 0 0.55rem; font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--red);
}
.eyebrow.light { color: rgba(255,255,255,0.85); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 7vw, 4.4rem); line-height: 1.05; margin: 0 0 0.5rem; }
h1 span { color: var(--red); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 0.65rem; }
h3 { font-size: 1.25rem; margin: 0 0 0.4rem; }
.lede { color: var(--muted); font-size: 1.05rem; max-width: 38rem; }
.muted { color: var(--muted); }
.section { padding: 4.2rem 0; }
.section-soft { background: rgba(255,255,255,0.55); }
.section-head { margin-bottom: 1.8rem; }

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.02);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(7, 16, 32, 0.55) 0%,
      rgba(7, 16, 32, 0.42) 28%,
      rgba(7, 16, 32, 0.78) 62%,
      rgba(7, 16, 32, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 16, 32, 0.72) 0%, rgba(7, 16, 32, 0.35) 55%, rgba(7, 16, 32, 0.2) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 6rem 0 2.75rem;
}
.hero-panel {
  max-width: 36rem;
  padding: 1.35rem 1.25rem 1.45rem;
  border-radius: 24px;
  background: rgba(7, 16, 32, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-panel h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.hero-panel h1 span {
  color: #ff6b81;
  text-shadow: 0 2px 16px rgba(200, 16, 46, 0.35);
}
.eyebrow-hero {
  color: #ffb4c0;
  letter-spacing: 0.16em;
}
.hero-tag {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4.2vw, 2.05rem);
  margin: 0 0 0.85rem;
  max-width: 16ch;
  line-height: 1.18;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.hero-lede {
  max-width: 34rem;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  line-height: 1.5;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.btn-hero-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}
.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff !important;
}
.price-note { margin: 1rem 0 0; font-weight: 700; }
.hero-price {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
}
.hero-price span {
  display: inline;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}
.price-note .muted { font-weight: 600; }

.page-hero { padding: 3.5rem 0 1rem; }
.split {
  display: grid; gap: 2rem; align-items: center;
}
.media-card {
  margin: 0; border-radius: calc(var(--radius) + 4px); overflow: hidden;
  box-shadow: var(--shadow); background: #fff; border: 1px solid var(--line);
}
.media-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.media-card figcaption { padding: 0.75rem 1rem; font-size: 0.85rem; color: var(--muted); }

.check-list { list-style: none; margin: 1.1rem 0 0; padding: 0; display: grid; gap: 0.65rem; }
.check-list li {
  position: relative; padding-left: 1.5rem; font-weight: 700; color: var(--navy-soft);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.45rem;
  width: 0.65rem; height: 0.65rem; border-radius: 50%; background: var(--red);
}

.benefit-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
.benefit {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1.2rem; box-shadow: 0 10px 30px rgba(11,31,58,0.04);
}
.benefit p { margin: 0; color: var(--muted); }

.life-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(140px, 28vw);
}
.life {
  margin: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 0;
}
.life img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.life:hover img { transform: scale(1.04); }
.life::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 16, 32, 0.82) 100%);
  pointer-events: none;
}
.life figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1rem 0.9rem 0.95rem;
  margin: 0;
}
.life figcaption span {
  display: inline-block;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.life-a { grid-column: 1; grid-row: 1; }
.life-b { grid-column: 2; grid-row: 1; }
.life-c { grid-column: 1; grid-row: 2; }
.life-d { grid-column: 2; grid-row: 2; }
.life-e {
  grid-column: 1 / -1;
  grid-row: 3;
  min-height: 200px;
}
.life-e figcaption span { font-size: 1.05rem; }

.section-band {
  padding: 0; 
}
.band-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 55%, #1f4a7a 100%);
  color: #fff; border-radius: calc(var(--radius) + 8px);
  padding: 2.6rem 1.5rem; text-align: center;
}
.band-inner h2 { color: #fff; }
.band-inner p { max-width: 36rem; margin: 0 auto 1.2rem; opacity: 0.92; }

.wait-grid, .contact-grid {
  display: grid; gap: 2rem;
}
.wait-form, .preorder-box, .note-box {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow);
}
.wait-form { display: grid; gap: 0.8rem; }
.wait-form label, .wait-form .full {
  display: grid; gap: 0.35rem; font-weight: 700; color: var(--navy);
  font-size: 0.92rem;
}
.wait-form input, .wait-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 14px;
  padding: 0.85rem 0.95rem; font: inherit; font-size: 16px; min-height: 48px;
  background: #FFFCFA; color: var(--ink);
}
.wait-form input:focus, .wait-form textarea:focus {
  outline: 2px solid rgba(200,16,46,0.25); border-color: var(--red);
}

.review-empty {
  border: 1px dashed var(--line); border-radius: var(--radius);
  padding: 2rem 1.25rem; text-align: center; background: rgba(255,255,255,0.7);
  color: var(--muted); font-weight: 600;
}

.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 0.95rem 1.1rem; margin-bottom: 0.65rem;
}
.faq summary { cursor: pointer; font-weight: 800; color: var(--navy); }
.faq details p { margin: 0.65rem 0 0; color: var(--muted); }

.cta-final { text-align: center; }
.cta-final .lede, .cta-final p { margin-left: auto; margin-right: auto; }

.spec-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; }
.spec-table th, .spec-table td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 34%; color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.table-scroll { overflow-x: auto; }

.media-row { display: grid; gap: 1rem; }
.gallery-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gallery-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.06);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-feature {
  grid-column: 1 / -1;
}
.gallery-feature img { aspect-ratio: 4 / 3; }
.gallery-wide { grid-column: 1 / -1; }
.gallery-wide img { aspect-ratio: 16 / 9; object-position: center; }
.video-slot {
  border-radius: var(--radius); border: 1px dashed var(--line);
  min-height: 220px; display: grid; place-content: center; text-align: center;
  background: rgba(255,255,255,0.8); font-weight: 800; color: var(--navy);
}

.grill-grid { display: grid; gap: 1.1rem; }
.grill-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 12px 36px rgba(11,31,58,0.06); position: relative;
}
.grill-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.grill-body { padding: 1.2rem; }
.grill-featured { border-color: rgba(200,16,46,0.35); box-shadow: var(--shadow); }
.grill-placeholder {
  aspect-ratio: 16/10; display: grid; place-items: center;
  background: linear-gradient(135deg, #eef2f6, #d9e2ec);
  font-family: var(--font-display); font-size: 3rem; color: var(--navy);
}
.badge-hot, .badge-soft {
  position: absolute; top: 0.85rem; left: 0.85rem; z-index: 1;
  border-radius: 999px; padding: 0.35rem 0.7rem; font-size: 0.75rem; font-weight: 800;
}
.badge-hot { background: var(--red); color: #fff; }
.badge-soft { background: rgba(255,255,255,0.92); color: var(--muted); border: 1px solid var(--line); }

.prose h2 { margin-top: 1.8rem; }
.prose p { color: var(--muted); max-width: 42rem; }
.contact-line { margin: 1rem 0; font-weight: 700; }

.site-footer {
  margin-top: 2rem; padding: 3rem 0 calc(2rem + var(--safe-b));
  background: var(--navy); color: rgba(255,255,255,0.88);
}
.site-footer .brand-mark { color: #fff; }
.site-footer .brand-sub { color: rgba(255,255,255,0.65); }
.site-footer h3 { color: #fff; font-size: 1rem; margin: 0 0 0.75rem; }
.footer-grid { display: grid; gap: 2rem; }
.footer-lede { color: rgba(255,255,255,0.72); max-width: 28rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.footer-links a { color: rgba(255,255,255,0.86); font-weight: 600; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
}
.footer-bottom .muted { color: rgba(255,255,255,0.5); }

.wa-float {
  position: fixed; right: 1rem; bottom: calc(1rem + var(--safe-b)); z-index: 60;
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: #25D366; color: #fff !important; font-weight: 800;
  padding: 0.8rem 1.05rem; border-radius: 999px;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}
.wa-ico {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: grid; place-items: center; font-size: 0.7rem; font-weight: 900;
}

.flash {
  width: min(1120px, calc(100% - 2rem)); margin: 0.85rem auto 0;
  padding: 0.85rem 1rem; border-radius: 14px; font-weight: 700;
}
.flash-ok { background: rgba(16, 122, 90, 0.12); color: #0f766e; }
.flash-error { background: rgba(200, 16, 46, 0.12); color: var(--red); }

.reveal {
  animation: rise 0.7s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; }
  .btn { transition: none; }
}

@media (min-width: 720px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex; position: static; flex-direction: row;
    padding: 0; border: 0; box-shadow: none; background: transparent;
  }
  .split { grid-template-columns: 1.05fr 0.95fr; }
  .hero-panel {
    padding: 1.75rem 1.7rem 1.85rem;
    max-width: 40rem;
    background: rgba(7, 16, 32, 0.48);
  }
  .hero-copy { padding: 7rem 0 3.5rem; }

  .life-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    gap: 0.9rem;
  }
  .life-a { grid-column: 1 / 5; grid-row: 1 / 3; }
  .life-b { grid-column: 5 / 9; grid-row: 1; }
  .life-c { grid-column: 9 / 13; grid-row: 1; }
  .life-d { grid-column: 5 / 9; grid-row: 2; }
  .life-e { grid-column: 9 / 13; grid-row: 2; min-height: 0; }
  .life figcaption span { font-size: 1.05rem; }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
  }
  .gallery-feature {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-feature img { aspect-ratio: 1; height: 100%; }
  .gallery-wide {
    grid-column: span 2;
  }
  .gallery-wide img { aspect-ratio: 2 / 1; }

  .wait-grid, .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .media-row { grid-template-columns: 1fr 1fr 1fr; }
  .grill-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .benefit-grid { grid-template-columns: repeat(6, 1fr); }
  .benefit { grid-column: span 2; }
  .benefit:nth-child(4), .benefit:nth-child(5) { grid-column: span 3; }
}

/* Phone polish */
@media (max-width: 719px) {
  .wrap { width: min(1120px, calc(100% - 1.35rem)); }
  .section { padding: 3rem 0; }
  .hero { min-height: 100svh; }
  .hero-copy { padding: 5.5rem 0 2rem; }
  .hero-panel { padding: 1.15rem 1.05rem 1.25rem; border-radius: 20px; }
  .hero-cta .btn { flex: 1 1 auto; min-width: calc(50% - 0.4rem); }
  .btn-row .btn { width: 100%; }
  .life-grid {
    gap: 0.65rem;
    grid-auto-rows: minmax(150px, 36vw);
  }
  .life-e { min-height: 210px; }
  .life { border-radius: 16px; }
  .gallery-grid { gap: 0.55rem; }
  .gallery-item { border-radius: 14px; }
  .wa-float { right: 0.75rem; padding: 0.75rem 0.95rem; }
  .media-card img { aspect-ratio: 1; }
}
