@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Lora:wght@500;600;700&display=swap');

:root {
  --black: #000000;
  --red: #e30613;
  --deep-red: #230000;
  --gold: #f6c500;
  --white: #fffdf7;
  --text: #fffdf7;
  --muted: #eadfcb;
  --panel: rgba(12, 12, 12, 0.84);
  --panel-strong: rgba(5, 5, 5, 0.94);
  --line: rgba(246, 197, 0, 0.22);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  --scroll-progress: 0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--black); overflow-x: hidden; }
body {
  min-height: 100vh;
  font-family: 'Sora', Arial, Helvetica, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: -12vh 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% calc(12% + (var(--scroll-progress) * 24%)), rgba(246, 197, 0, 0.12), transparent 28%),
    radial-gradient(circle at 84% calc(18% + (var(--scroll-progress) * 28%)), rgba(227, 6, 19, 0.18), transparent 30%),
    linear-gradient(180deg, #000 0%, #050000 52%, #000 100%);
  transform: translate3d(0, calc(var(--scroll-progress) * -5vh), 0) scale(1.03);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.68), rgba(0,0,0,.45) 40%, rgba(0,0,0,.78));
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 999;
  background: var(--gold);
  color: #121000;
  padding: .65rem .9rem;
  border-radius: 999px;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    linear-gradient(90deg, #000 0%, #0d0000 42%, #2a0000 68%, #000 100%),
    linear-gradient(135deg, rgba(246,197,0,.20), transparent 30%, rgba(227,6,19,.20));
  border-bottom: 3px solid var(--red);
  box-shadow: 0 16px 32px rgba(0,0,0,.52), inset 0 -1px 0 rgba(246,197,0,.42);
}
.site-nav::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red), #fff, var(--red));
}
.nav-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: .65rem 5%;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  width: clamp(155px, 18vw, 215px);
  height: 82px;
  object-fit: contain;
  background: #fff;
  border-radius: 18px;
  padding: 7px 12px;
  border: 2px solid rgba(246,197,0,.9);
  box-shadow: 0 14px 30px rgba(0,0,0,.5), 0 0 0 1px rgba(227,6,19,.5);
}
.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: .48rem .72rem;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  font-size: .92rem;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav-links a:hover, .nav-links a[aria-current='page'] { background: rgba(246,197,0,.14); color: #fff; transform: translateY(-1px); }
.nav-links .nav-cta { background: var(--red); color: #fff; font-weight: 800; }
.nav-links .nav-cta:hover { background: #ff1b1b; }
.nav-mobile-toggle {
  display: none;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  align-items: center;
  justify-content: center;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
.hero {
  padding: 5rem 0 3.5rem;
  color: #fff;
  border-bottom: 1px solid rgba(246,197,0,.2);
  background:
    radial-gradient(circle at 16% 18%, rgba(246,197,0,.12), transparent 31%),
    radial-gradient(circle at 88% 20%, rgba(227,6,19,.16), transparent 33%),
    linear-gradient(135deg, rgba(0,0,0,.95), rgba(40,0,0,.76) 55%, rgba(0,0,0,.95));
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr); gap: 2rem; align-items: center; }
.hero-copy { max-width: 760px; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; color: var(--gold); font-weight: 800; margin-bottom: .55rem; }
h1, h2, h3 { text-wrap: balance; }
.hero h1, .page-hero h1 { font-family: 'Lora', serif; font-size: clamp(2.35rem, 6vw, 4.55rem); line-height: 1.02; margin-bottom: 1rem; color: #fff; }
.hero p, .page-hero p, .section p { color: var(--muted); max-width: 740px; }
.hero-actions, .button-row, .contact-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.35rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .9rem 1.15rem;
  font-weight: 800;
  border: 1px solid transparent;
  min-height: 46px;
  box-shadow: 0 12px 22px rgba(0,0,0,.22);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(0,0,0,.32); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #ff1b1b; }
.btn-gold { background: var(--gold); color: #151006; }
.btn-gold:hover { background: #ffd735; }

.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.card h2, .card h3 { font-family: 'Lora', serif; color: #fff; margin-bottom: .45rem; line-height: 1.2; }
.card h2 { font-size: 1.35rem; }
.card h3 { font-size: 1.06rem; }
.card p, .card li { color: var(--muted); font-size: .96rem; }
.card-kicker { display: inline-block; color: var(--gold); font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .35rem; }
.large-card { min-height: 100%; }

.detail-list { list-style: none; display: grid; gap: .78rem; margin-top: .9rem; }
.detail-list li { display: grid; gap: .18rem; padding-bottom: .75rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.detail-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.detail-list span { color: rgba(255,255,255,.62); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.detail-list a, .detail-list strong { color: #fff; font-weight: 800; }
.detail-list a { color: var(--gold); }
.map-link, .inline-link {
  width: fit-content;
  color: var(--gold) !important;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  margin-top: .2rem;
}

.trust-strip { border-top: 1px solid rgba(246,197,0,.17); border-bottom: 1px solid rgba(246,197,0,.17); background: rgba(0,0,0,.38); backdrop-filter: blur(12px); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding-top: 1rem; padding-bottom: 1rem; }
.trust-grid div { display: grid; gap: .15rem; }
.trust-grid strong { color: #fff; }
.trust-grid span { color: var(--muted); font-size: .9rem; }

.section { padding: 4rem 0; }
.page-section { min-height: calc(100vh - 185px); padding-top: 4rem; padding-bottom: 4rem; }
.section-heading h2, .page-hero h1, .page-hero h2, .final-cta h2 { font-family: 'Lora', serif; font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.08; margin-bottom: .65rem; color: #fff; }
.section-heading.compact { margin-bottom: 1.1rem; }
.push-top { margin-top: 1.35rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, #000, var(--red), var(--gold)); }
.split-section { background: rgba(0,0,0,.22); }
.split-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 1.25rem; align-items: stretch; }

.hours-list { list-style: none; display: grid; gap: .65rem; margin-top: .95rem; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: .75rem .8rem; border: 1px solid rgba(246,197,0,.17); border-radius: 14px; background: rgba(255,255,255,.04); }
.hours-list span { color: var(--muted); }
.hours-list strong { color: #fff; text-align: right; }
.small-note { color: var(--muted); font-size: .92rem; margin-top: 1rem; }

.reviews-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 1rem; }
.review-count-badge { display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; border: 1px solid rgba(246,197,0,.55); background: rgba(227,6,19,.2); color: #fff; font-weight: 800; border-radius: 999px; padding: .55rem .85rem; box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.reviews-shell { overflow: hidden; border: 1px solid rgba(246,197,0,.22); border-radius: 22px; background: linear-gradient(135deg, rgba(0,0,0,.66), rgba(70,8,8,.55)); box-shadow: var(--shadow); padding: .85rem; }
.reviews-track { display: flex; gap: 1rem; width: max-content; animation: reviews-scroll 32s linear infinite; }
.review-card { min-width: 285px; max-width: 330px; background: linear-gradient(180deg, rgba(12,12,12,.95), rgba(5,5,5,.97)); border: 1px solid rgba(246,197,0,.19); border-radius: 18px; padding: 1rem; box-shadow: 0 10px 24px rgba(0,0,0,.28); }
.review-card strong { color: var(--gold); letter-spacing: .12em; font-size: .95rem; }
.review-card p { color: var(--muted); font-size: .95rem; margin-top: .45rem; }
.review-card span { display: inline-block; margin-top: .65rem; color: rgba(255,255,255,.62); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
@keyframes reviews-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.final-cta { padding-top: 2rem; }
.check-list { list-style: none; display: grid; gap: .65rem; margin-top: .8rem; }
.check-list li { position: relative; padding-left: 1.55rem; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 900; }

.map-section { margin-top: 1.25rem; }
.map-card { border: 1px solid rgba(246,197,0,.2); border-radius: 24px; overflow: hidden; background: rgba(0,0,0,.76); box-shadow: var(--shadow); }
.map-embed { display: block; width: 100%; height: 360px; border: 0; filter: grayscale(.15) contrast(1.05); }

.site-footer {
  background:
    linear-gradient(90deg, #000 0%, #180000 52%, #000 100%),
    linear-gradient(135deg, rgba(246,197,0,.16), transparent 28%, rgba(227,6,19,.18));
  color: rgba(255,255,255,.82);
  padding: 1.2rem 5% 1.5rem;
  border-top: 3px solid var(--red);
  box-shadow: inset 0 1px 0 rgba(246,197,0,.42);
}
.footer-row { max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .9rem; }
.footer-brand-block { max-width: 580px; }
.site-footer strong { color: #fff; }
.site-footer p { color: rgba(255,255,255,.72); margin-top: .12rem; }
.footer-hours { color: rgba(255,255,255,.76) !important; font-size: .84rem; }
.footer-actions { display: flex; gap: .85rem; flex-wrap: wrap; align-items: center; }
.footer-actions a { color: var(--gold); font-weight: 800; }
.footer-actions a[href*='maps'] { color: #fff; border-bottom: 1px solid rgba(246,197,0,.6); }
.footer-actions .instagram-link { color: #fff; background: rgba(227,6,19,.22); border: 1px solid rgba(246,197,0,.54); border-radius: 999px; padding: .35rem .7rem; }
.footer-actions .instagram-link:hover { background: rgba(227,6,19,.34); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  body::before { transform: none; }
}
@media (max-width: 1040px) {
  .hero-grid, .split-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-wrap { min-height: 82px; }
  .brand-logo { width: 145px; height: 68px; padding: 6px 9px; border-radius: 14px; }
  .nav-mobile-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(5,5,5,.98);
    border-top: 1px solid rgba(255,255,255,.09);
    padding: .75rem 5% 1rem;
    box-shadow: 0 24px 44px rgba(0,0,0,.5);
  }
  .nav-links.open { display: flex; }
  .nav-links a { min-height: 48px; justify-content: center; font-size: 1rem; }
  .hero { padding-top: 3.3rem; }
  .trust-grid, .grid-3 { grid-template-columns: 1fr; }
  .cta-card { align-items: stretch; flex-direction: column; }
  .cta-card .btn { width: 100%; }
  .reviews-heading-row { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 760px) {
  body { font-size: 15.5px; }
  .container { padding-left: 4%; padding-right: 4%; }
  .hero { padding: 2.8rem 0 2.2rem; }
  .hero h1, .page-hero h1 { font-size: clamp(2.08rem, 11vw, 3.2rem); }
  .hero-actions, .contact-actions, .button-row { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .contact-actions .btn, .button-row .btn { width: 100%; }
  .section { padding: 2.8rem 0; }
  .page-section { padding-top: 2.8rem; padding-bottom: 2.8rem; }
  .card { padding: 1rem; border-radius: 18px; }
  .hours-list li { align-items: flex-start; flex-direction: column; gap: .2rem; }
  .hours-list strong { text-align: left; }
  .map-embed { height: 300px; }
  .review-card { min-width: 255px; }
  .reviews-track { animation-duration: 40s; }
  .site-footer { padding-bottom: 1.25rem; }
  .footer-row { align-items: flex-start; }
  .footer-actions { width: 100%; flex-direction: column; align-items: flex-start; gap: .55rem; }
  .footer-actions .instagram-link { padding: .5rem .85rem; }
}
@media (max-width: 430px) {
  .nav-wrap { padding: .6rem 1rem; }
  .brand-logo { width: 122px; height: 60px; padding: 5px 8px; }
  .nav-mobile-toggle { width: 42px; height: 42px; }
  .container { padding-left: 1rem; padding-right: 1rem; }
  .hero h1, .page-hero h1 { font-size: 2rem; }
  .review-count-badge { white-space: normal; text-align: center; }
}
