:root {
  --ink: #111514;
  --muted: #6d746f;
  --paper: #f6f2eb;
  --panel: #fffaf2;
  --dark: #111514;
  --gold: #d7a556;
  --green: #1a5d47;
  --line: rgba(17, 21, 20, 0.14);
  --shadow: 0 24px 80px rgba(17, 21, 20, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
}

a {
  color: inherit;
}

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

.site-header {
  align-items: center;
  background: rgba(17, 21, 20, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  left: 0;
  padding: 1rem clamp(1rem, 5vw, 4rem);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  text-decoration: none;
}

.brand span {
  background: #fff;
  border-radius: 50%;
  color: var(--ink);
  display: grid;
  font-weight: 900;
  height: 46px;
  place-items: center;
  width: 46px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 0.1rem;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.button,
.button-light {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
}

.button {
  background: var(--gold);
  color: #18100a;
}

.button-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.hero {
  background:
    linear-gradient(90deg, rgba(12, 14, 13, 0.9), rgba(12, 14, 13, 0.58) 48%, rgba(12, 14, 13, 0.2)),
    url("https://images.unsplash.com/photo-1599351431202-1e0f0137899a?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: #fff;
  display: grid;
  min-height: 94vh;
  padding: clamp(7rem, 11vw, 10rem) clamp(1rem, 5vw, 4rem) clamp(3rem, 7vw, 6rem);
}

.hero-inner {
  align-items: end;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  margin: auto;
  max-width: 1200px;
  width: 100%;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 6.2vw, 5.4rem);
  line-height: 0.94;
  max-width: 850px;
}

h1 mark {
  background: linear-gradient(transparent 58%, rgba(215, 165, 86, 0.62) 58%);
  color: inherit;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
  max-width: 650px;
}

.hero-actions,
.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.proof-chips {
  margin-top: 1.5rem;
}

.proof-chips span {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  padding: 0.65rem 0.85rem;
}

.booking-card {
  background: rgba(255, 250, 242, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

.booking-card h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.96;
}

.price-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0;
}

.price-list div {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  padding: 0.85rem;
}

.price-list span {
  color: var(--muted);
  font-weight: 900;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.section-title {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  margin-bottom: 1.4rem;
}

.section-title h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.9rem);
  line-height: 0.94;
}

.section-title p,
.booking-card p,
.service-card p,
.review-card p,
.visit-card p,
.footer p {
  color: var(--muted);
  line-height: 1.55;
}

.services-grid,
.review-grid,
.visit-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.review-card,
.visit-card {
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(17, 21, 20, 0.08);
  padding: 1.25rem;
}

.service-card {
  min-height: 250px;
}

.service-card span {
  color: var(--gold);
  font-weight: 950;
}

.service-card h3,
.visit-card h3 {
  font-size: 1.75rem;
  line-height: 1.05;
  margin: 1.3rem 0 0.7rem;
}

.gallery-band {
  background: var(--dark);
  color: #fff;
}

.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.gallery img {
  border-radius: 8px;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  width: 100%;
}

.gallery-side {
  display: grid;
  gap: 1rem;
}

.gallery-side img {
  min-height: 175px;
}

.review-card strong {
  color: var(--green);
}

.visit-card iframe {
  border: 0;
  border-radius: 8px;
  height: 260px;
  width: 100%;
}

.footer {
  background: #0f1413;
  color: #fff;
  padding: 2rem clamp(1rem, 5vw, 4rem);
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
}

.sticky-mobile-book {
  display: none;
}

@media (max-width: 820px) {
  body {
    padding-bottom: 82px;
  }

  .site-header {
    position: absolute;
  }

  .site-nav {
    display: none;
  }

  .hero-inner,
  .section-title,
  .services-grid,
  .review-grid,
  .visit-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.65rem, 11vw, 3.45rem);
  }

  .button,
  .button-light {
    width: 100%;
  }

  .sticky-mobile-book {
    background: rgba(246, 242, 235, 0.96);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    gap: 0.6rem;
    grid-template-columns: 1fr 1fr;
    left: 0;
    padding: 0.7rem;
    position: fixed;
    right: 0;
    z-index: 30;
  }

  .sticky-mobile-book .button,
  .sticky-mobile-book .button-light {
    min-height: 50px;
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }
}
