:root {
  --black: #0d0d0f;
  --near-black: #17171a;
  --red: #c8202b;
  --red-dark: #9c1720;
  --gold: #f2b93c;
  --white: #ffffff;
  --off-white: #f6f4ef;
  --gray: #6b6b70;
  --line: #26262b;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(0,0,0,0.18);
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--near-black);
  background: var(--off-white);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 0.5em; line-height: 1.1; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-head);
  color: var(--red);
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 0 0.5em;
}
.eyebrow.center { text-align: center; }
.section-title.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(200,32,43,0.35);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* Topbar */
.topbar {
  background: var(--black);
  color: var(--off-white);
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
}
.topbar-item { opacity: 0.9; white-space: nowrap; }
.topbar-item:hover { color: var(--gold); }
.topbar-hours { flex: 1; text-align: center; }
.topbar-fb { font-weight: 600; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid #e7e4dc;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}
.brand-logo { height: 64px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--near-black);
}
.main-nav a:hover { color: var(--red); }
.nav-cta.btn { color: var(--white) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 3px; background: var(--black); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(242,185,60,0.3), transparent 55%),
    linear-gradient(180deg, rgba(23,13,16,0.55) 0%, rgba(23,13,16,0.75) 45%, var(--black) 100%);
  z-index: 1;
}
.hero-bg::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(20,40,20,0.55));
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 100px 24px 90px;
  text-align: center;
  max-width: 780px;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 2em;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Strip */
.strip { background: var(--red); color: var(--white); }
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 24px;
  gap: 12px;
  text-align: center;
}
.strip-item { display: flex; flex-direction: column; gap: 2px; }
.strip-item strong { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.5px; }
.strip-item span { font-size: 0.85rem; opacity: 0.9; }

/* Sections */
.section { padding: 84px 0; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* Card grid */
.card-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-4px); }
.card-icon {
  width: 56px; height: 56px;
  color: var(--red);
  margin-bottom: 16px;
}
.card-icon svg { width: 100%; height: 100%; }
.card h3 { font-size: 1.1rem; }
.card p { color: var(--gray); font-size: 0.95rem; margin: 0; }

/* Gallery */
.gallery { background: var(--white); }
.gallery-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--near-black);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55));
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,12,0.9);
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox figure {
  margin: 0;
  max-width: min(900px, 100%);
  text-align: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.lightbox figcaption {
  color: var(--white);
  margin-top: 16px;
  font-size: 0.95rem;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

/* Rentals */
.rentals {
  background: var(--near-black);
  color: var(--white);
  padding: 56px 0;
}
.rentals-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.rentals h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.rentals-copy { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0; }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.about-logo {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.about-text p { color: var(--gray); }
.about-text p:last-of-type { color: var(--near-black); font-weight: 500; }

/* Contact */
.contact { background: var(--near-black); color: var(--white); }
.contact .eyebrow { color: var(--gold); }
.contact-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.contact-info {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-label {
  font-family: var(--font-head);
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}
.contact-row a:hover { color: var(--gold); }
.contact-cta { margin-top: 20px; text-align: center; }
.contact-map {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 32px 0 90px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-logo { height: 40px; width: auto; opacity: 0.9; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--gold); }

/* Mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  z-index: 60;
  box-shadow: 0 -6px 16px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-logo { order: -1; max-width: 320px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 260px; }
}

@media (max-width: 720px) {
  .topbar-hours { display: none; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 16px;
    border-bottom: 1px solid #e7e4dc;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid #eee; }
  .main-nav a:last-child { border-bottom: none; margin-top: 8px; text-align: center; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .hero-inner { padding: 64px 24px 56px; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .rentals-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .mobile-call-bar { display: block; }
  .site-footer { padding-bottom: 100px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
