:root {
  --bg: #070707;
  --bg-2: #111111;
  --ink: #f4efe6;
  --muted: #9c9588;
  --gold: #c4a574;
  --gold-2: #e2c89a;
  --line: rgba(196, 165, 116, 0.22);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  background: linear-gradient(to bottom, rgba(0,0,0,.78), transparent);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  flex: 0 0 auto;
  min-width: 0;
}
.brand img { width: 34px; height: 34px; flex: 0 0 auto; }
.nav-links {
  display: flex;
  gap: 18px;
  margin-left: auto;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.hero { position: relative; min-height: 100vh; overflow: hidden; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  background: #111 center/cover no-repeat;
}
.slide.on { opacity: 1; }
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.72) 70%, #070707);
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-content: end start;
  padding: 0 8vw 14vh;
  width: min(920px, 100%);
}
.eyebrow { color: var(--gold); letter-spacing: .32em; text-transform: uppercase; font-size: 12px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 92px);
  line-height: .95;
  margin: 16px 0;
}
.hero p { max-width: 520px; color: #d7d0c4; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
}
.btn.solid { background: var(--gold); color: #111; }
.hero-nav { position: absolute; inset: auto 28px 40% ; z-index: 3; display: flex; justify-content: space-between; pointer-events: none; }
.hero-nav button {
  pointer-events: auto;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.35);
  color: #fff;
}

.section { padding: 110px 0; }
.kicker { color: var(--gold); letter-spacing: .3em; text-transform: uppercase; font-size: 12px; }
h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
  margin: 10px 0 24px;
}
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.about-photo { min-height: 460px; background: #111 center/cover; border: 1px solid var(--line); }
.about p { color: var(--muted); font-size: 17px; }

.services { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 48px; }
.service { padding: 22px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr auto; gap: 18px; }
.num { color: var(--gold); font-family: var(--serif); font-size: 28px; }
.service h3 { margin: 0 0 6px; font-size: 22px; font-family: var(--serif); font-weight: 500; }
.service p { margin: 0; color: var(--muted); font-size: 14px; }
.price { color: var(--gold); font-family: var(--serif); font-size: 28px; }

.reviews { background: var(--bg-2); }
.review-card { max-width: 820px; }
.review-card p { font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); line-height: 1.25; }
.stars { color: var(--gold); letter-spacing: 4px; }

.team-grid, .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-grid:has(article:only-child) { grid-template-columns: minmax(280px, 460px); }
.card {
  background: #0d0d0d;
  border: 1px solid var(--line);
  min-height: 360px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background-size: cover;
  background-position: center;
}
.card h3 { margin: 0; font-family: var(--serif); font-size: 32px; }
.card span { color: var(--gold); letter-spacing: .16em; text-transform: uppercase; font-size: 11px; }

.gallery-grid a,
.gallery-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #111 center/cover;
  border: 1px solid var(--line);
}
.gallery-grid video { background: #000; }

.book-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; }
form { display: grid; gap: 14px; }
label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
input, select, textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 0;
  font: inherit;
}
select option,
select optgroup {
  background: #fff;
  color: #111;
}
.date-field { position: relative; }
.date-field #date-ro { padding-right: 36px; }
.date-pick {
  position: absolute;
  right: 0;
  top: 8px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  padding: 0;
  cursor: pointer;
}
.date-pick::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 6px auto 0;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  box-shadow: 0 -3px 0 -1px currentColor;
}
.date-native {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.slots { display: flex; flex-wrap: wrap; gap: 8px; }
.slot {
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-size: 13px;
  background: transparent;
  color: var(--ink);
}
.slot.on { border-color: var(--gold); color: var(--gold); }
.slot:disabled { opacity: .35; }
.hours-box { border: 1px solid var(--line); padding: 28px; }
.hours-box li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #1d1d1d; list-style: none; }
.hours-box ul { margin: 0; padding: 0; }

.footer { border-top: 1px solid var(--line); padding: 72px 0 28px; text-align: center; }
.footer .brand { justify-content: center; margin-bottom: 18px; letter-spacing: .32em; }
.foot-links { display: flex; justify-content: center; gap: 22px; margin: 22px 0; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.tiny { color: var(--muted); font-size: 12px; }

.notice { padding: 12px 0; color: var(--gold); display: none; }
.notice.show { display: block; }
.notice .btn { margin: 10px 10px 0 0; }
label .opt { color: var(--muted); letter-spacing: 0; text-transform: none; font-weight: 400; }
.confirm-body {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}
.confirm-card {
  width: min(520px, 100%);
  border: 1px solid var(--line);
  padding: 36px 28px;
  background: var(--bg-2);
}
.confirm-card h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 500;
  line-height: 1;
  margin: 8px 0 18px;
}
.confirm-card .btn { margin: 8px 0 12px; }

@media (max-width: 1100px) {
  .nav {
    justify-content: space-between;
    padding: 10px max(16px, env(safe-area-inset-right)) 10px max(16px, env(safe-area-inset-left));
    gap: 12px;
    background: #0a0a0a;
    border-bottom: 1px solid var(--line);
  }
  .brand span { display: none; }
  .nav-links { display: none; margin-left: 0; }
  .nav-cta { padding: 9px 12px; }
  .burger { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 63px 0 0;
    flex-direction: column;
    gap: 4px;
    background: #070707;
    padding: 28px 22px 40px;
    font-family: var(--serif);
    font-size: 28px;
    letter-spacing: .04em;
    text-transform: none;
    white-space: normal;
  }
  .nav-links.open a { padding: 10px 0; border-bottom: 1px solid #1c1c1c; }
  body.menu-open { overflow: hidden; }
  .phone-digits { display: none; }
  .split, .services, .team-grid, .gallery-grid, .book-grid { grid-template-columns: 1fr; }
  .hero-nav { display: none; }
  .hero-copy { padding: 88px 6vw 12vh; }
}
