@font-face {
  font-family: 'SVN-Hemi Head';
  src: url('/assets/fonts/SVN-HemiHead.woff') format('woff'),
       url('/assets/fonts/SVN-HemiHead.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0a0b0f;
  --bg-panel: #15171d;
  --bg-panel-2: #1c1c1c;
  --accent: #ed2024;
  --accent-dim: #848484;
  --text: #dedede;
  --text-dim: #b4b4b4;
  --white: #ffffff;
  --border: #535357;
  --container: 1290px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; transition: color .2s, background-color .2s; }

h1, h2, h3, h4 { margin: 0; font-family: 'SVN-Hemi Head', 'Teko', sans-serif; font-weight: 600; }

.eyebrow {
  color: var(--accent);
  font-family: 'SVN-Hemi Head', 'Teko', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 24px;
  position: relative;
  padding-left: 45px;
}

.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.eyebrow.center { text-align: center; padding-left: 0; }
.eyebrow.center::before { display: none; }

.bg-word {
  font-size: clamp(60px, 10vw, 170px);
  text-transform: uppercase;
  color: rgba(255, 255, 255, .05);
  -webkit-text-stroke: 1px rgba(255, 255, 255, .16);
  line-height: .9;
  text-align: right;
  margin: 0 0 -.3em;
  pointer-events: none;
}
.bg-word.center { text-align: center; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(21, 23, 29, .92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.head-main {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.brand img { height: 56px; width: auto; }

.nav { display: flex; gap: 40px; }

.nav a {
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s;
}

.nav a:hover::after { transform: scaleX(1); }

.menu-button {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.menu-button svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
.menu-button .menu-icon-close { display: none; }

.drawer {
  display: none;
}

/* ===== Banner ===== */
.banner {
  position: relative;
  height: min(90vh, 850px);
  overflow: hidden;
  background: var(--bg);
}

.banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .85) 100%);
}

.banner-slide.is-active { opacity: 1; }

.banner-badge {
  position: relative;
  max-width: 70%;
  max-height: 45vh;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

.banner-caption {
  position: relative;
  margin: 24px 0 0;
  font-family: 'Teko', sans-serif;
  font-size: clamp(24px, 3.5vw, 50px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

.banner-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 2;
}

.banner-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--accent-dim);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.banner-dots button.is-active { background: var(--accent); border-color: var(--accent); }

/* ===== About ===== */
.about {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 24px 120px;
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 60px;
  position: relative;
}

.about .bg-word {
  position: absolute;
  top: -20px;
  right: 24px;
  z-index: 0;
}

.about-images {
  position: relative;
}

.about-img-1 img {
  width: 58%;
  height: 320px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.about-img-2 {
  width: 54%;
  margin-left: auto;
  margin-top: -220px;
  position: relative;
  z-index: 2;
}

.about-img-2::before {
  content: '';
  position: absolute;
  left: -8px;
  top: -8px;
  width: 26%;
  height: 100%;
  background: var(--bg);
  z-index: -1;
}

.about-img-2 img { height: 600px; object-fit: cover; }

.hours-badge {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 220px;
  height: 150px;
  border: 6px solid var(--white);
  margin: -210px auto 0 200px;
  background: linear-gradient(34deg, #9d1c1f 50%, var(--accent) 50%);
}

.hours-badge span { color: var(--white); line-height: 1.2; font-family: 'Barlow Condensed', sans-serif; }
.hours-badge span:first-child { font-size: 20px; text-transform: capitalize; }
.hours-badge span:last-child { font-size: 32px; font-weight: 700; text-transform: uppercase; }

.about-content { position: relative; z-index: 1; padding-top: 60px; }

.about-content p { color: var(--text); margin: 0 0 20px; }

/* ===== Services ===== */
.service {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.service > .bg-word { margin-bottom: 0; }
.service > .eyebrow { margin-bottom: 60px; }

.service-list { display: flex; flex-direction: column; gap: 90px; }

.service-item {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-item.reverse { flex-direction: row-reverse; }

.service-image, .service-copy { flex: 1 1 50%; min-width: 0; }

.service-image img { width: 100%; height: 320px; object-fit: cover; }

.service-copy h4 { font-size: clamp(24px, 2.4vw, 40px); text-transform: uppercase; color: var(--white); margin-bottom: 6px; }

.service-copy .price {
  font-family: 'Teko', sans-serif;
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 300;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 18px;
}

.service-copy p:not(.price) { max-width: 520px; color: var(--text); margin: 0 0 28px; }

.addon-list { list-style: none; margin: 0 0 28px; padding: 0; max-height: 260px; overflow-y: auto; }

.addon-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.addon-list li span { color: var(--white); font-weight: 500; }
.addon-list li b { color: var(--accent); font-weight: 300; white-space: nowrap; }

/* ===== Gallery ===== */
.gallery {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 24px 120px;
}

.gallery > .bg-word { text-align: center; margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #000;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(237, 32, 36, .35);
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.08); }

.item-1 { grid-column: span 1; }
.item-2 { grid-column: span 2; }
.item-3 { grid-column: span 1; grid-row: span 2; }
.item-4 { grid-column: span 1; }
.item-5 { grid-column: span 1; }
.item-6 { grid-column: span 1; }

/* ===== Fixed socials ===== */
.fixed-socials {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
}

.fixed-socials ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }

.fixed-socials li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--bg-panel);
  clip-path: polygon(0 0, 70% 0, 100% 30%, 100% 100%, 0 100%);
}

.fixed-socials li a:hover { background: var(--accent); }

.fixed-socials li a img { width: 20px; height: 20px; object-fit: contain; }

@media (max-width: 700px) {
  .fixed-socials {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    background: var(--bg-panel-2);
  }
  .fixed-socials ul { flex-direction: row; justify-content: space-around; }
  .fixed-socials li a { width: 44px; height: 44px; background: transparent; clip-path: none; }
}

/* ===== Lightbox ===== */
.lightbox[hidden] { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  padding: 40px;
  background: rgba(10, 11, 15, .93);
}

.lightbox-content { grid-column: 2; text-align: center; max-height: 90vh; }

.lightbox-content img { max-width: 100%; max-height: 85vh; margin: 0 auto; object-fit: contain; }

.lightbox-close, .lightbox-prev, .lightbox-next {
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 48px;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close { position: absolute; top: 14px; right: 22px; }
.lightbox-prev { grid-column: 1; }
.lightbox-next { grid-column: 3; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--accent); }

@media (max-width: 700px) {
  .lightbox { grid-template-columns: 42px minmax(0, 1fr) 42px; padding: 24px 8px; }
}

/* ===== Reviews ===== */
.reviews {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px 120px;
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  position: relative;
}

.reviews-head .eyebrow { margin-bottom: 0; }
.reviews-head .bg-word { font-size: clamp(40px, 6vw, 90px); margin: -.15em 0 0; }

.rating {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 12px;
  align-items: center;
  text-align: right;
}

.rating strong { font-family: 'SVN-Hemi Head', sans-serif; font-size: 34px; color: var(--white); }
.rating .stars { grid-column: 2; color: var(--accent); letter-spacing: 2px; }
.rating small { grid-column: 1 / -1; color: var(--text-dim); }
.rating a { grid-column: 1 / -1; color: var(--accent); font-family: 'Teko', sans-serif; font-size: 20px; text-transform: uppercase; margin-top: 6px; }
.rating a:hover { color: var(--accent-dim); }

.review-track { display: flex; align-items: center; gap: 12px; }

.review-track > button {
  flex: none;
  width: 44px;
  height: 56px;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}

.review-track > button:hover { background: var(--accent); border-color: var(--accent); }

.review-scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 16px;
  scrollbar-width: none;
}

.review-scroller::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 320px;
  min-height: 240px;
  padding: 26px;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, .08);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.review-top { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none; }
.review-top strong { display: block; color: var(--white); font-size: 16px; }
.review-top small { display: block; color: var(--text-dim); font-size: 12px; }

.review-card .stars { margin: 16px 0 12px; color: var(--accent); letter-spacing: 2px; }
.review-card p { color: var(--text); font-size: 16px; line-height: 1.5; margin: 0; }

/* ===== Footer ===== */
.footer {
  background: var(--bg-panel);
  padding: 60px 24px;
  text-align: center;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-contact .item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Teko', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-contact .item svg { width: 18px; height: 18px; fill: var(--accent); }
.footer-contact .item:hover { color: var(--accent-dim); }
.footer-contact .item:hover svg { fill: var(--accent-dim); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.footer-links a:hover { color: var(--accent); }

.footer-copyright { color: var(--text-dim); font-size: 16px; margin: 0; }

/* ===== Service / gallery subpages ===== */
.text-link {
  display: inline-block;
  color: var(--accent);
  font-family: 'Teko', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  margin-top: 10px;
}

.text-link:hover { color: var(--accent-dim); }

.call-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 34px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Teko', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  clip-path: polygon(6% 0%, 100% 0%, 100% 70%, 94% 100%, 0% 100%);
}

.call-cta:hover { background: var(--accent-dim); color: var(--white); }

.page-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-hero-simple { grid-template-columns: 1fr; text-align: center; padding-bottom: 40px; }
.page-hero-simple .eyebrow { padding-left: 0; }
.page-hero-simple .eyebrow::before { display: none; }
.page-hero-simple h1 { text-align: center; }

.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero-price {
  font-family: 'Teko', sans-serif;
  font-size: 28px;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 18px;
}

.page-hero-lead { color: var(--text); max-width: 520px; margin: 0 0 28px; }

.page-hero-image img { width: 100%; height: 380px; object-fit: cover; }

.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.page-content p { color: var(--text); margin: 0 0 24px; }

.page-photos {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-photos img { width: 100%; height: 340px; object-fit: cover; }

.page-addons {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.page-cta {
  text-align: center;
  background: var(--bg-panel);
  padding: 80px 24px;
}

.page-cta h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.page-cta p { color: var(--text-dim); margin: 0 0 28px; }
.page-cta .text-link { display: block; margin-top: 20px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .page-hero { grid-template-columns: 1fr; padding-top: 120px; text-align: center; }
  .page-hero .eyebrow { padding-left: 0; text-align: center; }
  .page-hero .eyebrow::before { display: none; }
  .page-hero-lead { margin-left: auto; margin-right: auto; }
  .page-photos { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .rating { text-align: left; }
  .nav { display: none; }
  .menu-button { display: flex; align-items: center; justify-content: center; }

  .drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(80vw, 320px);
    background: var(--bg-panel-2);
    padding: 80px 32px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .3s;
    z-index: 50;
  }
  .drawer.is-open { transform: translateX(0); }
  .drawer a { font-family: 'Teko', sans-serif; font-size: 24px; text-transform: uppercase; }
  .drawer-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--white); font-size: 32px; cursor: pointer; }

  .about { grid-template-columns: 1fr; }
  .about .bg-word { position: static; text-align: center; }
  .about-images { max-width: 420px; margin: 0 auto; }
  .about-content { padding-top: 0; text-align: center; }
  .eyebrow { padding-left: 0; text-align: center; }
  .eyebrow::before { display: none; }

  .service-item, .service-item.reverse { flex-direction: column; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .item-3 { grid-row: span 1; }
}

@media (max-width: 560px) {
  .head-main { padding: 12px 16px; }
  .brand img { height: 44px; }
  .about-img-1 img { height: 220px; }
  .about-img-2 img { height: 380px; }
  .about-img-2 { margin-top: -140px; }
  .hours-badge { margin: -170px auto 0 auto; width: 180px; height: 120px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
}
