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

:root {
  --bg: #0A0A0A;
  --panel: #131313;
  --line: #262626;
  --red: #E8302A;
  --red-text: #FF5C52;
  --white: #FFFFFF;
  --dim: #A3A3A3;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.brand-mark { display: flex; align-items: center; gap: 10px; }
.brand-mark img { height: 32px; width: auto; object-fit: contain; }
.brand-mark span { display: none; }
.main-nav { display: none; gap: 28px; }
.main-nav a { font-size: 14px; font-weight: 500; color: var(--dim); }
.main-nav a:hover { color: var(--white); }
@media (min-width: 800px) { .main-nav { display: flex; } }

.btn {
  display: inline-block; font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 14px; padding: 13px 24px; border-radius: 0; cursor: pointer; border: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #ff3b33; }
.btn-outline { background: transparent; color: var(--white); border: 0.8px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--white); }

/* Divider - simple thin line, no barber-pole motif */
.pole-divider { display: none; }

/* Hero */
.hero {
  position: relative; min-height: 78vh; display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.97) 5%, rgba(10,10,10,0.6) 55%, rgba(10,10,10,0.25) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 60px 0 48px; }
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--red-text);
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 14px;
}
.hero h1 { font-size: 44px; line-height: 1.1; margin-bottom: 18px; }
.hero h1 .accent { color: var(--red-text); }
.hero p { max-width: 480px; color: var(--dim); font-size: 16px; margin-bottom: 26px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--dim); }
.hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: #4C7A5E; display: inline-block; margin-right: 6px; }

@media (min-width: 700px) { .hero h1 { font-size: 60px; } }

/* Section spacing */
.section { padding: 64px 0; }
.section-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red-text); font-weight: 400; margin-bottom: 8px;
}
.section-title { font-size: 30px; margin-bottom: 28px; max-width: 560px; }
.section-alt { background: var(--panel); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery-grid img { border-radius: 0; aspect-ratio: 4/5; object-fit: cover; transition: transform 0.3s ease; }
@media (hover: hover) { .gallery-grid img:hover { transform: scale(1.03); } }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

/* Price cards */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 700px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--panel); border: 0.8px solid var(--line); border-radius: 0;
  padding: 20px 22px; display: flex; justify-content: space-between; align-items: baseline;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
@media (hover: hover) { .price-card:hover { border-color: var(--red); transform: translateY(-2px); } }
.price-card .name { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: var(--white); }
.price-card .price { font-family: 'IBM Plex Mono', monospace; font-size: 16px; color: var(--red-text); font-weight: 600; }

/* About split */
.split { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 800px) { .split { grid-template-columns: 1fr 1fr; } }
.split img { border-radius: 0; aspect-ratio: 4/5; object-fit: cover; }
.split-text p { color: var(--dim); margin-bottom: 22px; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 800px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: var(--panel); border: 0.8px solid var(--line); border-radius: 0; padding: 24px; transition: border-color 0.2s ease, transform 0.15s ease; }
.testimonial-card .quote-mark { font-family: 'Sora', sans-serif; font-size: 34px; color: var(--red-text); line-height: 1; margin-bottom: 8px; }
.testimonial-card p.quote { color: var(--white); margin-bottom: 18px; }
.testimonial-card .who { font-size: 13px; color: var(--dim); }
.testimonial-card .who strong { color: var(--white); font-weight: 600; }

/* CTA banner */
.cta-banner {
  background: var(--panel); border: 0.8px solid var(--line); border-radius: 0; padding: 44px 32px; text-align: center;
}
.cta-banner h2 { margin-bottom: 10px; }
.cta-banner p { color: var(--dim); margin-bottom: 24px; }
.cta-banner .hero-ctas { justify-content: center; }

/* Find us */
.map-wrap { border-radius: 0; overflow: hidden; border: 0.8px solid var(--line); margin-bottom: 20px; }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

/* Footer */
.site-footer { background: var(--panel); border-top: 0.8px solid var(--line); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-grid h4 {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dim); margin-bottom: 14px; font-weight: 400;
}
.footer-grid a, .footer-grid li { font-size: 14px; color: var(--dim); margin-bottom: 8px; display: block; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { border-top: 0.8px solid var(--line); padding-top: 20px; font-size: 12.5px; color: var(--dim); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* Mobile nav — hamburger + slide-out drawer */
.nav-toggle {
  display: flex; align-items: center; justify-content: center; background: transparent;
  border: none; color: var(--white); font-size: 22px; cursor: pointer; padding: 4px 2px;
  line-height: 1; min-width: 44px; min-height: 44px;
}
@media (min-width: 800px) { .nav-toggle { display: none; } }

.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 30;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.drawer-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: 78%; max-width: 320px;
  background: var(--panel); border-left: 0.8px solid var(--line); z-index: 31;
  padding: 20px; display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform 0.25s ease;
  overflow-y: auto;
}
.drawer-panel.open { transform: translateX(0); }
.drawer-close {
  align-self: flex-end; background: transparent; border: none; color: var(--white);
  font-size: 20px; cursor: pointer; padding: 8px; margin-bottom: 12px;
  min-width: 44px; min-height: 44px;
}
.drawer-panel a.drawer-link {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px; color: var(--white);
  padding: 14px 4px; border-bottom: 0.8px solid var(--line);
}
.drawer-panel a.drawer-link:hover { color: var(--red-text); }
.drawer-panel .btn { margin-top: 16px; text-align: center; }

@media (min-width: 800px) { .drawer-overlay, .drawer-panel { display: none; } }

html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 78px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

.booking-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.95);
  width: 92%; max-width: 480px; max-height: 88vh; overflow-y: auto;
  background: var(--panel); border: 0.8px solid var(--line); z-index: 41;
  padding: 24px 22px; display: none; flex-direction: column;
  opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease;
}
.booking-modal.open { display: flex; opacity: 1; transform: translate(-50%, -50%) scale(1); }
#modal-overlay { z-index: 40; }

/* Simple page header for inner pages */
.page-hero { padding: 48px 0 20px; }
.page-hero .section-label { margin-bottom: 10px; }
.page-hero h1 { font-size: 34px; }

/* Book page — diamond step indicator, matching source exactly */
.step-row { display:flex; justify-content:center; align-items:center; gap:16px; margin-bottom:32px; font-family:'IBM Plex Mono',monospace; font-size:13px; }
.step-row span { display:flex; align-items:center; gap:8px; color: var(--dim); }
.step-row span.active { color: var(--white); font-weight:600; }
.step-row span::before { content:'◆'; font-size:10px; color: var(--line); }
.step-row span.active::before, .step-row span.done::before { color: var(--red-text); }
.step-row .step-line { width:60px; height:1px; background: var(--line); }
.date-strip { display:flex; gap:10px; overflow-x:auto; padding-bottom:8px; margin-bottom:24px; }
.date-btn {
  flex:0 0 auto; min-width:64px; text-align:center; background:var(--panel); border:0.8px solid var(--line);
  border-radius:0; padding:12px 8px; cursor:pointer; font-family:'Inter',sans-serif;
  transition: border-color 0.2s ease;
}
.date-btn .dow { font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--dim); text-transform:uppercase; letter-spacing:1px; }
.date-btn .dnum { font-family:'Sora',sans-serif; font-size:18px; font-weight:700; color:var(--white); margin-top:2px; }
.date-btn.selected { border-color: var(--red); }
.time-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
@media (min-width:600px) { .time-grid { grid-template-columns:repeat(5,1fr); } }
.time-btn {
  background:var(--panel); border:0.8px solid var(--line); border-radius:0; padding:13px 6px;
  text-align:center; font-size:13px; color:var(--white); cursor:pointer; font-family:'Inter',sans-serif;
  min-height:44px; transition: border-color 0.15s ease, color 0.15s ease;
}
.time-btn.selected { border-color: var(--red); color: var(--red-text); }
.svc-btn.selected { border-color: var(--red) !important; }
.booking-step { display:none; opacity: 0; animation: stepFadeIn 0.3s ease forwards; }
.booking-step.active { display:block; }
@keyframes stepFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.field-label {
  font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--dim); margin:14px 0 5px;
}
.field-input {
  width:100%; box-sizing:border-box; background:var(--panel); border:0.8px solid var(--line); border-radius:0;
  padding:12px; font-size:16px; color:var(--white); font-family:inherit;
}
.summary-row { display:flex; justify-content:space-between; padding:10px 0; border-bottom:0.8px solid var(--line); font-size:14px; }
.summary-row span:first-child { color:var(--dim); }
.nav-row { display:flex; gap:12px; margin-top:28px; justify-content:flex-end; }
