:root {
  --bg: #14110f;
  --bg-alt: #1c1815;
  --card: #211c18;
  --line: rgba(242, 234, 219, 0.12);
  --cream: #f3ecdf;
  --muted: #ad9f8c;
  --gold: #c9a35f;
  --gold-bright: #ddb872;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

.section-inner, .header-inner, .topbar-inner, .footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--gold);
  margin: 0 0 0.8em;
}
.eyebrow.center { text-align: center; }

.center { text-align: center; }

.muted { color: var(--muted); }
.small { font-size: 14px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}
.btn-primary {
  background: var(--gold);
  color: #16130f;
}
.btn-primary:hover { background: var(--gold-bright); }

.btn-outline {
  border-color: rgba(243, 236, 223, 0.4);
  color: var(--cream);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost {
  border-color: var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  font-size: 14px;
}
.btn-ghost:hover { background: var(--gold); color: #16130f; }

.text-link {
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 163, 95, 0.4);
  padding-bottom: 2px;
  transition: border-color 200ms ease;
}
.text-link:hover { border-color: var(--gold); }

/* Top bar */
.topbar {
  background: #0c0a08;
  color: var(--muted);
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold); }
.topbar a:hover { color: var(--gold-bright); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 17, 15, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
}
.brand-logo {
  width: 154px;
  height: 154px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 163, 95, 0.25);
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
}
.brand-sub {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.main-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 32px;
}
.main-nav a {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}
.main-nav a:hover { color: var(--gold); border-color: var(--gold); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--cream);
  margin: 0 auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 8%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(12,10,8,0.96) 0%, rgba(12,10,8,0.55) 45%, rgba(12,10,8,0.35) 100%),
    linear-gradient(90deg, rgba(12,10,8,0.85) 0%, rgba(12,10,8,0.2) 55%, rgba(12,10,8,0.05) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 72px;
  width: 100%;
}
.hero-content h1 {
  font-size: clamp(38px, 6vw, 64px);
  max-width: 15ch;
  color: var(--cream);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.hero-lede {
  max-width: 46ch;
  font-size: 18px;
  color: rgba(243, 236, 223, 0.85);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.stars { color: var(--gold); letter-spacing: 2px; }

/* Info strip */
.strip {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
.strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.strip-item:first-child { border-left: none; padding-left: 0; }
.strip-label {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
}
.strip-detail { font-size: 14px; color: var(--muted); }

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--cream);
  max-width: 20ch;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media > img {
  width: 100%;
  border-radius: 2px;
}
.about-copy p { color: rgba(243, 236, 223, 0.85); }

/* History */
.history-lede {
  max-width: 60ch;
  margin: 0 auto 48px;
  text-align: center;
  color: rgba(243, 236, 223, 0.85);
  font-size: 17px;
}
.history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.history-card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 2px;
}
.history-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: sepia(0.25) contrast(1.02);
}
.history-card figcaption {
  padding: 16px 18px 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--cream);
}

/* Banner */
.banner {
  position: relative;
  height: 56vh;
  min-height: 380px;
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.banner-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,10,8,0.9) 0%, rgba(12,10,8,0.15) 55%, rgba(12,10,8,0.35) 100%);
}
.banner-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--cream);
  letter-spacing: 0.02em;
}

/* Services */
.price-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 48px;
  background: linear-gradient(165deg, #1e1811, #120e0a);
  border: 1px solid rgba(201, 163, 95, 0.35);
  border-radius: 6px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.price-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  display: block;
  margin: 0 auto 18px;
}
.price-icon-rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
  margin: 0 auto 32px;
}
.price-list {
  max-width: 640px;
  margin: 40px auto 0;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.price-name {
  font-family: var(--font-display);
  font-size: 20px;
  white-space: nowrap;
}
.price-rule {
  flex: 1;
  border-bottom: 1px dotted rgba(243, 236, 223, 0.25);
  transform: translateY(-4px);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  white-space: nowrap;
}
.price-note {
  text-align: center;
  color: var(--muted);
  max-width: 520px;
  margin: 28px auto 0;
  font-size: 15px;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 32px 28px;
  margin: 0;
  border-radius: 2px;
}
.review-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  margin: 14px 0 0;
  color: var(--cream);
}
.review-source {
  display: block;
  text-align: center;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 32px;
  transition: color 200ms ease;
}
.review-source:hover { color: var(--gold-bright); }

/* Visit */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.info-block { margin: 28px 0; }
.info-block h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 10px;
}
.hours-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 360px;
}
.hours-table td {
  padding: 6px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}
.hours-table td:first-child { color: var(--cream); }
.hours-table td:last-child { text-align: right; color: var(--muted); }
.hours-table tr.closed td { color: #8a7c68; }
.visit-map iframe {
  width: 100%;
  height: 480px;
  border: 0;
  border-radius: 2px;
  filter: grayscale(0.3) invert(0.92) contrast(0.88);
}

/* Footer */
.site-footer {
  background: #0c0a08;
  border-top: 1px solid var(--line);
  padding: 48px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.footer-brand { margin-bottom: 12px; display: flex; flex-direction: column; align-items: center; }
.footer-brand .brand-main { font-size: 20px; }
.footer-logo {
  width: 264px;
  height: 264px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 163, 95, 0.25);
}
.footer-inner a { color: var(--gold); }
.footer-fine { font-size: 12px; margin-top: 8px; }

/* Responsive */
@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .brand-logo { width: 86px; height: 86px; }
  .brand-main { font-size: 19px; }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr; gap: 20px; }
  .strip-item { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
  .strip-item:first-child { border-top: none; padding-top: 0; }
  .history-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .topbar span { display: none; }
  .topbar-inner { justify-content: center; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .history-grid { grid-template-columns: 1fr; }
  .price-card { padding: 40px 24px; }
  .price-row { flex-wrap: wrap; }
  .hero { min-height: 100vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
