:root {
  --midnight: #0a0a0a;
  --emerald: #0f3b2e;
  --emerald-dark: #082119;
  --gold: #c8a96b;
  --ivory: #f4ede3;
  --ivory-soft: rgba(244, 237, 227, 0.74);
  --line: rgba(200, 169, 107, 0.26);
  --shadow: rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--midnight);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
}

h1 {
  max-width: 820px;
  font-size: clamp(4rem, 9vw, 8.8rem);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5.25rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  padding: 18px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(244, 237, 227, 0.08);
  background: rgba(10, 10, 10, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--ivory);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  color: rgba(244, 237, 227, 0.76);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-cta {
  padding: 10px 16px !important;
  border: 1px solid var(--gold);
  color: var(--ivory) !important;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ivory);
  padding: 9px 12px;
  font: inherit;
}

.hero,
.page-hero,
.about-hero,
.gallery-hero,
.booking-hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  padding: 128px clamp(22px, 6vw, 86px) 72px;
}

.home-hero {
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.64) 42%, rgba(10, 10, 10, 0.18) 100%),
    linear-gradient(0deg, var(--midnight) 0%, rgba(10, 10, 10, 0) 26%);
}

.hero-content {
  max-width: 760px;
  padding-top: 32px;
}

.home-hero h1 {
  color: var(--emerald);
}

.eyebrow,
.section-kicker,
.duration,
.event-date,
.price {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin-top: 14px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.hero-copy {
  max-width: 640px;
  margin-top: 26px;
  color: var(--ivory-soft);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--gold);
  color: #120f0a;
}

.secondary {
  background: rgba(244, 237, 227, 0.04);
  color: var(--ivory);
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(22px, 6vw, 86px);
}

.intro-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #0e241c 100%);
}

.split,
.private-layout,
.society-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.prose {
  display: grid;
  gap: 20px;
  color: var(--ivory-soft);
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 850px;
  margin-bottom: 42px;
}

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

.experience-card {
  display: block;
  min-height: 520px;
  border: 1px solid var(--line);
  background: #10100f;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 107, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.experience-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.experience-card div {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.experience-card p,
.offering p,
.event-details p,
.society-section p,
.about-copy p {
  color: var(--ivory-soft);
}

.card-link {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.52fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.detail-copy {
  display: grid;
  gap: 26px;
}

.detail-copy p {
  color: var(--ivory-soft);
  font-size: 1.05rem;
}

.detail-list,
.detail-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-list li,
.detail-panel li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ivory-soft);
}

.detail-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: rgba(15, 59, 46, 0.34);
}

.detail-panel h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.events-band {
  background: var(--emerald-dark);
}

.event-list {
  display: grid;
  gap: 16px;
}

.event-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.48);
}

.event-card img {
  width: 180px;
  height: 116px;
  object-fit: cover;
}

.event-details {
  display: grid;
  gap: 6px;
}

.event-details h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

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

.society-section {
  align-items: center;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, var(--midnight), var(--emerald));
}

.signup-form,
.inquiry-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(244, 237, 227, 0.22);
  background: rgba(10, 10, 10, 0.6);
  color: var(--ivory);
  padding: 13px 14px;
  font: inherit;
}

.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(22px, 6vw, 86px);
  border-top: 1px solid var(--line);
  color: rgba(244, 237, 227, 0.64);
  font-size: 0.9rem;
}

.page-hero,
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  min-height: 72vh;
  background: radial-gradient(circle at 80% 10%, rgba(200, 169, 107, 0.16), transparent 34%), var(--midnight);
}

.page-hero img,
.about-hero img {
  width: 100%;
  height: clamp(360px, 52vw, 640px);
  object-fit: cover;
  box-shadow: 0 24px 80px var(--shadow);
}

.page-hero h1,
.about-hero h1,
.gallery-hero h1,
.booking-hero h1 {
  margin-top: 18px;
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.offerings {
  display: grid;
  gap: 18px;
}

.offering {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: #10100f;
}

.offering img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.offering div {
  display: grid;
  gap: 14px;
}

.occasion-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.occasion-list li {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(15, 59, 46, 0.42);
  color: var(--ivory-soft);
}

.inquiry-form {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  background: rgba(15, 59, 46, 0.34);
}

.about-copy {
  display: grid;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.08;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  border-top: 1px solid var(--line);
  background: linear-gradient(135deg, #0a0a0a 0%, #0f3b2e 100%);
}

.founder-media {
  display: grid;
  gap: 14px;
}

.founder-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 45% center;
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px var(--shadow);
}

.founder-media p {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-copy {
  display: grid;
  gap: 22px;
}

.founder-copy p:not(.section-kicker) {
  color: var(--ivory-soft);
  font-size: 1.05rem;
}

.gallery-hero,
.booking-hero {
  min-height: 54vh;
  display: grid;
  align-content: end;
  background:
    linear-gradient(0deg, var(--midnight), rgba(10, 10, 10, 0.22)),
    url("assets/hero-parlour.png") center/cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 10px;
  padding: 10px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.booking-table-wrap {
  overflow-x: auto;
}

.booking-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #10100f;
}

.booking-table th,
.booking-table td {
  padding: 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.booking-table th {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.table-button {
  min-height: 42px;
  padding: 10px 15px;
  color: #120f0a;
  background: var(--gold);
}

.is-complete input {
  border-color: var(--gold);
}

.form-status {
  min-height: 24px;
  color: var(--gold);
  font-size: 0.88rem;
}

.form-status.is-error {
  color: #f4b7a7;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

@media (max-width: 1050px) {
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 22px 24px;
    background: rgba(10, 10, 10, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .page-hero,
  .about-hero,
  .gallery-hero,
  .booking-hero {
    min-height: 82vh;
    padding-top: 112px;
  }

  .split,
  .private-layout,
  .society-section,
  .page-hero,
  .about-hero,
  .offering,
  .detail-layout,
  .founder-section {
    grid-template-columns: 1fr;
  }

  .detail-panel {
    position: static;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card img {
    width: 100%;
    height: 220px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3.7rem;
  }

  .experience-grid,
  .occasion-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: auto;
  }

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }
}
