:root {
  --black: #111110;
  --charcoal: #1c1b1a;
  --white: #ffffff;
  --off-white: #f7f6f3;
  --gray: #6b6862;
  --line: #e6e3dd;
  --gold: #b8944f;
  --gold-dark: #96772f;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin: 0 0 12px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  margin: 0 0 48px;
}
.section-title.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-block { width: 100%; text-align: center; border: none; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17,17,16,0.0);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(17,17,16,0.94);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-cta { padding: 10px 22px; font-size: 0.85rem; }
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,16,0.55) 0%, rgba(17,17,16,0.75) 60%, rgba(17,17,16,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 76px;
}
.hero-content .eyebrow { color: var(--gold); }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 24px;
}
.hero-sub {
  max-width: 480px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.4rem;
  opacity: 0.7;
  animation: bob 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Stat strip */
.strip {
  background: var(--black);
  color: var(--white);
  padding: 40px 0;
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.strip-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
}
.strip-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* About */
.about { padding: 110px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-media img {
  border-radius: 4px;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 20px;
}
.about-copy p { color: var(--gray); margin: 0 0 16px; }
.about-points { margin-top: 24px; }
.about-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-weight: 500;
}
.about-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--gold);
}

/* Services */
.services { padding: 110px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(17,17,16,0.08);
}
.service-card.featured {
  border-color: var(--gold);
  background: var(--black);
  color: var(--white);
}
.service-card.featured p { color: rgba(255,255,255,0.75); }
.badge {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin: 0 0 10px;
}
.service-card p {
  color: var(--gray);
  font-size: 0.92rem;
  margin: 0 0 24px;
  min-height: 44px;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-card.featured .service-meta { border-top-color: rgba(255,255,255,0.15); }
.service-meta .price {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
}

/* Gallery */
.gallery { padding: 110px 0 0; }
.gallery .container { padding-bottom: 56px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.gallery-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* Reviews */
.reviews { padding: 110px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--off-white);
  border-radius: 4px;
  padding: 32px;
}
.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card p {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin: 0 0 20px;
}
.reviewer {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
}

/* Contact */
.contact {
  padding: 110px 0;
  background: var(--black);
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.contact-info .eyebrow { color: var(--gold); }
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 20px;
}
.contact-lead { color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.info-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.info-list strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.hours-list { margin-top: 28px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}

.booking-form {
  background: var(--white);
  color: var(--black);
  padding: 40px;
  border-radius: 6px;
}
.booking-form h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin: 0 0 24px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray);
}
.form-row input,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--off-white);
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
  min-height: 1.2em;
  color: var(--gold-dark);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}
.footer-inner .logo { font-size: 1rem; }
.socials { display: flex; gap: 16px; }
.socials a { font-size: 0.8rem; font-weight: 600; opacity: 0.8; }
.socials a:hover { opacity: 1; color: var(--gold); }

/* Responsive */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .site-header.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--black);
    padding: 20px 24px 28px;
    gap: 18px;
  }
  .site-header.open .nav-cta {
    display: inline-block;
    margin: 0 24px 24px;
  }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .strip-inner { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row-split { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 24px; }
}
