:root {
  color-scheme: dark;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  --bg: #0B0F0B;
  --surface: #131513;
  --surface-2: #1e1f1c;
  --border: rgba(75, 79, 76, 0.22);
  --text: #D8CFB2;
  --muted: #B7B09A;
  --accent: #38E200;
  --accent-2: #006B2D;
  --error: #C1121F;
  --muted-dark: #4B4F4C;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

img,
iframe {
  max-width: 100%;
}

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

button,
input,
textarea,
a.button {
  font: inherit;
}

.page-shell {
  position: relative;
  padding: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 20px;
  border-bottom: 1px solid rgba(209, 207, 178, 0.16);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
  display: block;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand .brand__mark {
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 0;
}

.brand__title,
.brand__tag {
  margin: 0;
}

.brand__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__tag {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  transition: color 160ms ease, transform 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent);
  transform: translateY(-1px);
}

.nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  margin-top: 8px;
  background: var(--accent);
  transition: width 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  min-height: min(90vh, 860px);
  padding: 24px 0 28px;
}

.hero__logo-container {
  display: grid;
  place-items: center;
  width: 100%;
}

.hero__logo-large {
  width: min(460px, 68vw);
  max-height: 460px;
  object-fit: contain;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: #D8CFB2;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--accent);
  color: var(--bg);
}

.button--secondary,
.button--ghost {
  background: rgba(0, 107, 45, 0.16);
  color: var(--text);
  border-color: rgba(56, 226, 0, 0.22);
}

.button--secondary:hover,
.button--ghost:hover,
.button--secondary:focus-visible,
.button--ghost:focus-visible {
  background: rgba(0, 107, 45, 0.28);
}

.hero__visual {
  position: relative;
}

.hero__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.hero__tile {
  min-height: 160px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__tile--one {
  background: #111511;
}

.hero__tile--two {
  background: #131713;
}

.hero__tile--three {
  grid-column: span 2;
  background: #181c18;
}

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

.panel {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(216, 207, 178, 0.08);
  border: 1px solid rgba(209, 207, 178, 0.14);
  box-shadow: var(--shadow);
}

.panel h2 {
  margin: 0 0 12px;
}

.panel p {
  margin: 0;
  color: var(--muted);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 32px;
  border-radius: 32px;
  background: rgba(209, 207, 178, 0.06);
  border: 1px solid rgba(209, 207, 178, 0.18);
}

.cta-strip h2 {
  margin: 8px 0 0;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
}

.booking,
.groups,
.values {
  margin: 72px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.booking__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking__card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--accent);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking__card--alt {
  background: var(--bg);
  border-color: rgba(56, 226, 0, 0.55);
}

.booking__frame-wrapper {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: transparent;
  min-height: 520px;
}

.booking__frame-wrapper iframe,
.booking__frame-wrapper .tidycal-embed {
  width: 100%;
  min-height: 520px;
  background: transparent;
}

.booking__frame-wrapper iframe {
  height: 520px;
  border: 0;
}

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

.group-card,
.value-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.group-card h3,
.value-card h3 {
  margin-top: 0;
}

.group-card ul {
  padding-left: 20px;
  margin: 14px 0 0;
  color: var(--muted);
}

.group-card li {
  margin-bottom: 10px;
}

.values__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 12px;
  border-top: 1px solid rgba(209, 207, 178, 0.14);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--accent-2);
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .panels,
  .booking__grid,
  .group-grid,
  .values__grid {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding: 18px;
  }

  .hero {
    min-height: auto;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .booking__frame-wrapper {
    min-height: 420px;
  }
}
