:root {
  --ink: #ffffff;
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.14);
  --cream: #050505;
  --paper: #12100e;
  --green: #ff9800;
  --deep: #050505;
  --mint: #1b1309;
  --gold: #ffad1f;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 4%, rgba(255, 152, 0, .16), transparent 30%),
    linear-gradient(180deg, #050505 0%, #0b0a09 48%, #050505 100%);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(5, 5, 5, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 152, 0, .18);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand span { letter-spacing: 0; }
.nav { display: flex; gap: 22px; font-size: .95rem; color: var(--muted); }
.nav a:hover { color: var(--gold); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.06); }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: white; }
.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 8vw, 92px) clamp(18px, 4vw, 64px) 48px;
}
.hero h1, .section h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}
.hero h1 { max-width: 720px; font-size: clamp(2.7rem, 7vw, 6.7rem); }
.hero-text { max-width: 620px; margin: 24px 0 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.eyebrow { margin: 0 0 12px; color: var(--green); font-weight: 800; text-transform: uppercase; font-size: .78rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--green); color: #090807; box-shadow: 0 14px 34px rgba(255, 152, 0, .28); }
.btn.secondary { background: rgba(255,255,255,.06); border: 1px solid var(--line); color: white; }
.hero-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: #120d08;
  border: 1px solid rgba(255, 152, 0, .22);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.section { padding: clamp(58px, 9vw, 112px) clamp(18px, 4vw, 64px); }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 28px; }
.section h2 { font-size: clamp(2rem, 4vw, 4.2rem); max-width: 780px; }
.grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.card, blockquote, .contact-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255, 152, 0, .18);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .24);
}
.card { padding: 24px; min-height: 220px; }
.card span { color: var(--gold); font-weight: 900; }
.card h3 { margin: 28px 0 10px; font-size: 1.28rem; }
.card p, .split p, .contact p, .location p { color: var(--muted); margin: 0; }
.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr);
  gap: clamp(28px, 7vw, 96px);
  background: linear-gradient(135deg, #090807, #17120c 62%, #2c1a08);
  color: white;
}
.split .eyebrow { color: #ffad1f; }
.split p { color: rgba(255,255,255,.72); max-width: 620px; margin-top: 18px; }
.benefits { display: grid; gap: 12px; }
.benefits div { padding: 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; background: rgba(255,255,255,.06); }
.benefits strong, .benefits span { display: block; }
.benefits span { color: rgba(255,255,255,.68); }
.gallery-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 16px; }
.gallery-grid img, .gallery-tile { border-radius: 8px; min-height: 220px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; grid-row: span 2; }
.gallery-tile { display: flex; align-items: end; padding: 22px; background: linear-gradient(135deg, #120d08, #241606); font-weight: 900; border: 1px solid rgba(255, 152, 0, .22); color: white; }
blockquote { margin: 0; padding: 26px; color: var(--ink); }
cite { display: block; margin-top: 20px; color: var(--green); font-style: normal; font-weight: 900; }
.review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.location { background: #050505; }
.store-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.store-card {
  display: grid;
  grid-template-rows: auto minmax(280px, 1fr);
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,152,0,.07));
  border: 1px solid rgba(255, 152, 0, .2);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .34);
}
.store-copy { padding: clamp(22px, 4vw, 32px); }
.store-copy h3 {
  margin: 0 0 12px;
  color: white;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
}
.store-copy p:not(.eyebrow) { min-height: 76px; }
.route-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 20px;
  padding: 0 18px;
  border-radius: 8px;
  background: #ff9800;
  color: #090807;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.route-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 152, 0, .24);
}
.store-map {
  width: 100%;
  min-height: 320px;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05) brightness(.9);
}
.contact { padding-top: 0; }
.contact-panel { padding: clamp(28px, 6vw, 64px); text-align: center; max-width: 900px; margin: 0 auto; }
.contact-panel p { max-width: 560px; margin: 16px auto 26px; }
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 28px clamp(18px, 4vw, 64px);
  background: #090807;
  color: white;
}
.footer small { margin-left: auto; color: rgba(255,255,255,.62); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: 72px 14px auto; flex-direction: column; padding: 18px; background: rgba(10, 9, 8, .96); border: 1px solid rgba(255, 152, 0, .22); border-radius: 8px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: .2s ease; }
  .nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { aspect-ratio: 16 / 11; }
  .grid, .review-grid { grid-template-columns: 1fr 1fr; }
  .store-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { grid-row: auto; aspect-ratio: 16 / 10; }
}
@media (max-width: 620px) {
  .grid, .review-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .hero-actions .btn { width: 100%; }
  .footer small { margin-left: 0; width: 100%; }
}
