/* ── Variables ── */
:root {
  --bg:          #080808;
  --surface:     #0f0f0f;
  --card:        #161616;
  --border:      rgba(255,255,255,0.06);
  --text:        #f2f2f2;
  --text-muted:  #777;
  --accent:      #E8132A; /* overridden by JS */
  --radius:      0px;
  --nav-h:       64px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--text);
}
h2 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  border: none;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--text);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.65); }
.btn-lg { padding: 16px 40px; font-size: 1.15rem; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 20px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
  flex-shrink: 0;
}
.nav-links {
  display: none;
  gap: 22px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.nav-phone {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
  white-space: nowrap;
}
.nav-phone:hover { opacity: 0.8; }
.nav-book { display: none; }
.nav-hamburger {
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.nav-drawer.open { max-height: 420px; }
.drawer-link {
  display: block;
  padding: 14px 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.drawer-link:hover { color: var(--text); }
.drawer-book { margin: 16px 20px; text-align: center; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #141414 center/cover no-repeat;
  /* JS sets background-image when CLIENT.hero.image is provided */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.3) 35%,
    rgba(0,0,0,0.88) 75%,
    rgba(0,0,0,0.97) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero-title {
  font-size: clamp(3.5rem, 12vw, 8.5rem);
  line-height: 0.95;
  margin: 12px 0 16px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.6);
}
.hero-tagline {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 420px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head { margin-bottom: 44px; }
.section-head h2 { margin-top: 6px; }

/* ── SERVICES ── */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--card);
  border-left: 5px solid var(--accent);
  transition: background 0.12s, border-left-width 0.12s;
}
.service-item:hover { background: #1e1e1e; border-left-width: 8px; }
.service-name {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.service-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  white-space: nowrap;
  margin-left: 16px;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px;
}
.team-card {
  background: var(--card);
  padding: 0;
  text-align: center;
  overflow: hidden;
  border-top: 3px solid var(--accent);
}
.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.team-card:hover .team-photo { filter: grayscale(0%); }
.team-photo-placeholder {
  width: 100%;
  height: 280px;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--accent);
}
.team-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  margin: 16px 0 4px;
}
.team-title {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding-bottom: 20px;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--card);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s;
  filter: grayscale(15%);
}
.gallery-item:hover img { transform: scale(1.06); filter: grayscale(0%); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a2a2a;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.review-card {
  background: var(--card);
  padding: 28px 24px 28px 28px;
  border-left: 4px solid var(--accent);
}
.review-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.review-text {
  font-style: normal;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.75;
  font-size: 0.9375rem;
}
.review-name {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

/* ── ABOUT ── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about-text h2 { margin: 4px 0 16px; }
.about-body {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Shared placeholder */
.img-placeholder {
  background: var(--card);
  border: 1px dashed #2a2a2a;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a3a3a;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── HOURS + LOCATION ── */
.hours-location {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.hours-location h2 { margin: 4px 0 24px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 12px 0; font-size: 0.9375rem; }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }
.hours-table tr.closed td { color: #444; }
.location-address {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}
.map-wrap { border-radius: var(--radius); overflow: hidden; }
.map-wrap iframe { display: block; width: 100%; height: 300px; border: none; }
.map-placeholder { height: 300px; }

/* ── CONTACT ── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.contact-inner h2 { margin: 4px 0 28px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  padding: 12px 14px;
  transition: border-color 0.15s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #3a3a3a; }
.form-msg { font-size: 0.875rem; min-height: 1.4em; }
.form-msg.success { color: #4ade80; }
.form-msg.error { color: #f87171; }

.contact-sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.sidebar-block p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; }
.sidebar-block a { color: var(--accent); }
.sidebar-block a:hover { opacity: 0.8; }

/* ── FOOTER ── */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.07em; }
.footer-addr { color: var(--text-muted); font-size: 0.875rem; }
.footer-social { display: flex; gap: 20px; margin: 6px 0; }
.footer-social a {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.footer-social a:hover { color: var(--accent); }
.footer-copy { color: #383838; font-size: 0.75rem; }

/* ── RESPONSIVE ── */
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .nav-links { display: flex; margin-left: auto; }
  .nav-actions { margin-left: 0; }
  .nav-book { display: inline-block; }
  .nav-hamburger { display: none; }
  .services-list { grid-template-columns: 1fr 1fr; gap: 3px; }
  .about-inner { grid-template-columns: 1fr 1fr; }
  .hours-location { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1.5fr 1fr; }
}
@media (min-width: 1024px) {
  .section { padding: 100px 0; }
}
