:root {
  --honey: #d89a1d;
  --honey-dark: #9f6c07;
  --cream: #fff8e8;
  --warm: #f4e2b6;
  --leaf: #3f6f3a;
  --ink: #2a2118;
  --muted: #6f6253;
  --line: rgba(76, 52, 18, 0.16);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(47, 31, 8, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  padding: 8px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 248, 232, 0.9);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 108px;
  height: 76px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

section[id] {
  scroll-margin-top: 104px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover {
  background: rgba(216, 154, 29, 0.16);
}

.hero {
  position: relative;
  min-height: calc(100svh - 92px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 20%;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(30, 20, 8, 0.78), rgba(30, 20, 8, 0.34) 48%, rgba(30, 20, 8, 0.08)),
    linear-gradient(0deg, rgba(30, 20, 8, 0.45), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(44px, 8vw, 90px) clamp(18px, 6vw, 88px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--honey);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.feature h2,
.booking h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 10vw, 132px);
}

.lead {
  max-width: 650px;
  margin: 20px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--honey);
  color: #1f1607;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.band,
.video-section,
.gallery-section,
.booking {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-head {
  width: min(920px, 100%);
  margin: 0 auto 32px;
}

.section-head.centered {
  text-align: center;
}

.section-head h2,
.feature h2,
.booking h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
}

.section-head p:not(.eyebrow),
.feature p,
.booking-copy p {
  color: var(--muted);
  font-size: 18px;
}

.intro {
  background: linear-gradient(180deg, var(--cream), #fffdf6);
}

.intro-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.copy {
  font-size: 20px;
}

.copy p {
  margin: 0 0 18px;
}

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

.facts article,
.detail-grid article,
.booking-panel,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(47, 31, 8, 0.06);
}

.facts article {
  min-height: 136px;
  padding: 22px;
}

.facts strong {
  display: block;
  color: var(--honey-dark);
  font-size: 30px;
  line-height: 1.1;
}

.facts span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.video-section {
  background: #1e1a14;
  color: var(--white);
}

.video-section .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.video-frame {
  width: min(1060px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 154, 29, 0.26), transparent),
    #0d0c0a;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
}

.video-placeholder span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 72px);
}

.video-placeholder small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #fffdf6;
}

.feature > div {
  max-width: 560px;
  justify-self: end;
}

.feature img {
  width: 100%;
  height: clamp(360px, 52vw, 620px);
  object-fit: cover;
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow);
}

.gallery-section {
  background: var(--cream);
}

.tabs {
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab.active,
.tab:hover {
  border-color: transparent;
  background: var(--honey);
  color: #1f1607;
}

.gallery {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 235px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #ddd;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(30, 20, 8, 0.74);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
}

.programs-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: #fffdf6;
}

.program-tiles {
  width: min(1120px, 100%);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.program-tiles span {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--honey-dark);
  font-weight: 800;
}

.program-tiles small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.pricing {
  background: linear-gradient(180deg, var(--cream), #fffdf6);
}

.price-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(47, 31, 8, 0.06);
}

.price-card.featured {
  background: linear-gradient(145deg, #fff7dc, #ffffff);
  border-color: rgba(216, 154, 29, 0.46);
}

.price-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--honey-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.price-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.faq-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: #fffdf6;
}

.faq-list {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.faq-list summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.detail-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.detail-grid article {
  padding: 26px;
}

.detail-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

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

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: linear-gradient(135deg, #2d2315, #4a3210);
  color: var(--white);
}

.booking-copy {
  max-width: 760px;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.booking-panel {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.booking-panel dl {
  margin: 0;
}

.booking-panel div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.booking-panel div:first-child {
  padding-top: 0;
}

.booking-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.booking-panel dt {
  color: var(--honey);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-panel dd {
  margin: 5px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.map-frame {
  grid-column: 1 / -1;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 26px 18px;
  color: var(--muted);
  background: #fffdf6;
}

.site-footer img {
  width: 92px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 52px 18px 22px;
  background: rgba(20, 14, 7, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1180px, 100%);
  max-height: 86svh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 880px) {
  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    gap: 16px;
    min-height: 0;
    padding: 6px 16px;
  }

  .brand img {
    width: 82px;
    height: 58px;
  }

  section[id] {
    scroll-margin-top: 76px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 10px 16px 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 248, 232, 0.98);
    box-shadow: 0 18px 30px rgba(47, 31, 8, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header.menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    font-size: 14px;
    text-align: center;
  }

  .hero {
    min-height: 660px;
  }

  .hero-image {
    object-position: 67% 20%;
  }

  .hero-content {
    width: min(620px, calc(100% - 36px));
    margin: 0 18px 48px;
  }

  .intro-grid,
  .feature,
  .booking {
    grid-template-columns: 1fr;
  }

  .feature > div {
    max-width: none;
    justify-self: start;
  }

  .feature img {
    height: min(58vw, 460px);
    border-radius: 8px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .program-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .main-nav a {
    font-size: 13px;
  }

  .band,
  .video-section,
  .gallery-section,
  .programs-section,
  .faq-section,
  .booking {
    padding: 48px 16px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head h2,
  .feature h2,
  .booking h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .section-head p:not(.eyebrow),
  .feature p,
  .booking-copy p {
    font-size: 16px;
  }

  .copy {
    font-size: 17px;
  }

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

  .facts article {
    min-height: 112px;
    padding: 16px 12px;
  }

  .facts strong {
    font-size: 24px;
  }

  .facts span {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.35;
  }

  .hero {
    min-height: 640px;
  }

  .hero-image {
    object-position: 69% 20%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(30, 20, 8, 0.74), rgba(30, 20, 8, 0.16)),
      linear-gradient(0deg, rgba(30, 20, 8, 0.7), transparent 62%);
  }

  .hero-content {
    margin-bottom: 34px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1;
  }

  .lead {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 22px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 142px;
    gap: 8px;
  }

  .program-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .program-tiles span {
    min-height: 112px;
    padding: 14px 12px;
    font-size: 14px;
    line-height: 1.3;
  }

  .program-tiles small {
    font-size: 11px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    min-height: 46px;
    padding: 11px 16px;
  }

  .video-placeholder span {
    font-size: 30px;
  }

  .price-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .price-card strong {
    font-size: 30px;
  }

  .faq-list summary {
    padding: 16px;
    line-height: 1.4;
  }

  .faq-list p {
    padding: 0 16px 16px;
  }

  .booking-panel {
    padding: 20px 16px;
  }

  .booking-panel dd {
    overflow-wrap: anywhere;
    font-size: 16px;
  }

  .map-frame {
    min-height: 320px;
  }

  .map-frame iframe {
    height: 320px;
  }

  .site-footer {
    flex-direction: column;
    gap: 10px;
    padding: 22px 16px;
    text-align: center;
  }

  .site-footer img {
    width: 76px;
  }

  .lightbox {
    padding: 64px 10px 18px;
  }
}
