:root {
  --bg: #050505;
  --bg-soft: #121212;
  --panel: rgba(12, 12, 12, 0.9);
  --panel-soft: rgba(18, 18, 18, 0.84);
  --text: #f5f2eb;
  --muted: #b8a88d;
  --gold: #caa15b;
  --gold-bright: #efc677;
  --line: rgba(202, 161, 91, 0.2);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --radius-sm: 20px;
  --container: min(1200px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(202, 161, 91, 0.18), transparent 30%),
    linear-gradient(180deg, #0b0b0b 0%, #030303 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.25;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 90%);
}

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

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

p {
  margin: 0;
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  line-height: 1.02;
}

.site-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 22px 0 48px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(202, 161, 91, 0.4);
  box-shadow: 0 0 24px rgba(202, 161, 91, 0.14);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
}

.nav a:hover,
.link-button:hover {
  color: var(--gold-bright);
}

.button,
.link-button,
.story-card,
.service-grid article,
.owner-photo,
.announcement,
.booking-card,
.contact-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0c97d 0%, #b27a33 100%);
  color: #17110a;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(178, 122, 51, 0.3);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(178, 122, 51, 0.42);
}

.button-small {
  min-height: 46px;
  padding: 0 18px;
}

.button-secondary {
  min-height: 46px;
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid rgba(239, 198, 119, 0.35);
  box-shadow: none;
}

.button-secondary:hover {
  box-shadow: none;
  background: rgba(239, 198, 119, 0.08);
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.link-button::after {
  content: "\2192";
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero,
.story,
.map-section {
  display: grid;
  gap: 24px;
}

.hero {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  padding: 30px 0 18px;
}

.hero-copy,
.hero-media,
.announcement,
.panel,
.story-card,
.booking-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: clamp(28px, 4vw, 54px);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at top left, rgba(239, 198, 119, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 100%),
    var(--panel-soft);
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
}

.hero-text {
  max-width: 58ch;
  color: #d7cab6;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats article {
  padding: 16px;
  border: 1px solid rgba(202, 161, 91, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-size: 1.15rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: calc(var(--radius) + 16px);
  min-height: 100%;
  padding: 20px;
  background:
    radial-gradient(circle at center, rgba(239, 198, 119, 0.08), transparent 50%),
    #090909;
}

.hero-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

.announcement {
  display: grid;
  place-items: center;
  margin: 16px 0 22px;
  padding: 22px 30px;
  border-radius: calc(var(--radius) + 4px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(202, 161, 91, 0.08), transparent 100%),
    var(--panel-soft);
}

.announcement h2,
.section-heading h2,
.story-copy h2,
.booking-card h2 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.announcement p,
.section-heading p:last-child,
.story-copy p:last-child,
.booking-card p:last-child {
  color: var(--muted);
}

.panel {
  padding: clamp(28px, 4vw, 42px);
  border-radius: calc(var(--radius) + 4px);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 100%);
}

.service-grid article:hover,
.story-card:hover,
.owner-photo:hover,
.announcement:hover,
.booking-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 198, 119, 0.35);
}

.service-index {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
}

.service-grid h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.service-grid p {
  color: var(--muted);
}

.service-time {
  font-weight: 700;
}

.service-description {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-grid strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-bright);
  font-size: 1.1rem;
}

.feature-service {
  background:
    radial-gradient(circle at top left, rgba(239, 198, 119, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 100%);
}

.story {
  grid-template-columns: 0.72fr 1.28fr;
  align-items: stretch;
  padding: 52px 0 24px;
}

.story-copy {
  display: grid;
  gap: 16px;
}

.owner-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: var(--panel-soft);
  box-shadow: var(--shadow);
  min-height: 100%;
}

.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

.story-card h3 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.story-card p {
  color: var(--muted);
}

.reviews {
  margin-top: 10px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.review-card strong {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-bright);
}

.review-card p {
  color: var(--muted);
}

.map-section {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: stretch;
  padding: 32px 0 12px;
}

.map-copy,
.map-embed {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--panel-soft);
  box-shadow: var(--shadow);
}

.map-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 5vw, 42px);
}

.map-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.map-copy p:last-of-type {
  color: var(--muted);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 4px;
}

.map-embed {
  overflow: hidden;
  min-height: 420px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.booking {
  padding-top: 28px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.booking-card {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 5vw, 42px);
  border-radius: calc(var(--radius) + 4px);
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(239, 198, 119, 0.12), transparent 28%),
    var(--panel-soft);
}

.contact-card {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 100%),
    var(--panel-soft);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.contact-block {
  display: grid;
  gap: 8px;
}

.contact-block > span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
}

.contact-block p,
.hours-list p {
  color: var(--muted);
}

.contact-block a:hover {
  color: var(--gold-bright);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.hours-list {
  display: grid;
  gap: 10px;
}

.hours-list p {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
}

.hours-list strong {
  color: var(--text);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 34px;
  padding: 26px 4px 0;
  color: var(--muted);
  border-top: 1px solid rgba(202, 161, 91, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .link-button,
  .story-card,
  .service-grid article,
  .review-card,
  .owner-photo,
  .announcement,
  .booking-card,
  .contact-card,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero,
  .story,
  .service-grid,
  .reviews-grid,
  .map-section {
    grid-template-columns: 1fr 1fr;
  }

  .story-points,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .feature-service,
  .owner-photo {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .site-shell {
    width: min(100vw - 24px, 1200px);
    padding-top: 14px;
  }

  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 30px;
  }

  .nav {
    order: 3;
    gap: 16px;
  }

  .hero,
  .story,
  .map-section,
  .service-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .story-points {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-media {
    min-height: auto;
    padding: 12px;
  }

  .footer {
    flex-direction: column;
  }

  .hours-list p {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
