:root {
  --burgundy: #2a0d18;
  --burgundy-2: #4a1128;
  --cream: #f7f1e9;
  --cream-2: #eee3d7;
  --gold: #c7a261;
  --black: #141112;
  --white: #fff;
  --text: #2d2426;
  --muted: #786d70;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--cream); font-family: var(--sans); line-height: 1.7; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(820px, 100%); }
.section { padding: 120px 0; }
.light { background: var(--cream); }
.light-alt { background: var(--cream-2); }
.dark { background: var(--black); color: var(--cream); }
.burgundy-panel { background: linear-gradient(135deg, var(--burgundy), #16060d); color: var(--cream); }
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: 88px; display: grid;
  grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px;
  padding: 0 4vw; color: var(--cream);
  background: linear-gradient(to bottom, rgba(10,5,7,.82), rgba(10,5,7,0));
  transition: background .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled { background: rgba(22,6,13,.92); backdrop-filter: blur(14px); }
.brand img { width: 150px; }
.site-header nav { display: flex; gap: 30px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.site-header nav a:hover { color: var(--gold); }
.site-header > .button { justify-self: end; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px;
  padding: 0 28px; background: var(--burgundy-2); color: var(--white);
  text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 700;
  border: 1px solid rgba(255,255,255,.08); transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: #641837; }
.button-small { min-height: 46px; padding: 0 20px; background: var(--gold); color: var(--burgundy); }
.gold-button { background: var(--gold); color: var(--burgundy); }
.gold-button:hover { background: #d7b87a; }
.hero {
  min-height: 100svh; display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  background: #12070b; color: var(--cream); padding-top: 88px; overflow: hidden;
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 82px 5vw 72px 7vw; background: linear-gradient(135deg, #12070b 0%, #250b16 82%, #332019 100%);
  position: relative; z-index: 2;
}
.hero-photo { min-height: calc(100svh - 88px); background: #e7dfd5; display: grid; place-items: center; overflow: hidden; position: relative; }
.hero-photo::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 18%; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(37,11,22,.82) 0%, rgba(37,11,22,.38) 45%, rgba(37,11,22,0) 100%); }
.hero-photo img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.eyebrow { margin: 0 0 16px; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; }
.eyebrow.burgundy { color: var(--burgundy-2); }
.eyebrow.gold { color: var(--gold); }
h1,h2,h3 { font-family: var(--serif); line-height: .98; margin: 0 0 24px; font-weight: 600; }
h1 { font-size: clamp(48px, 5vw, 78px); max-width: 680px; }
h1 span { color: var(--gold); }
h2 { font-size: clamp(44px, 5vw, 74px); }
h3 { font-size: 30px; }
.hero-line { max-width: 610px; font-size: clamp(17px, 1.6vw, 21px); margin: 0 0 22px; color: #f4eadd; }
.hero-line strong { color: var(--gold); font-weight: 700; }
.hero-standard { margin: 0 0 26px; color: var(--gold); font-family: var(--serif); font-size: clamp(21px, 2vw, 28px); line-height: 1.1; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-bottom: 34px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.hero-meta span { border-left: 1px solid rgba(199,162,97,.6); padding-left: 14px; }
.price-early { border-top: 1px solid rgba(199,162,97,.45); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.copy p { margin: 0 0 18px; font-size: 18px; }
.emphasis { border-left: 3px solid var(--gold); padding-left: 20px; font-weight: 700; }
.philosophy { text-align: center; }
.philosophy p { font-size: 19px; color: #d7cacd; }
.experience-image img { width: 100%; height: 620px; object-fit: cover; object-position: center; }
.signature { font-family: var(--serif); font-style: italic; font-size: 32px !important; color: var(--burgundy-2); }
.story-copy { text-align: left; }
.story-copy h2 { max-width: 760px; }
.story-copy p:not(.eyebrow):not(.signature) { font-size: 19px; max-width: 760px; }
.imagine { text-align: center; }
.imagine p { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); line-height: 1.2; margin: 14px 0; }
.imagine h3 { color: var(--gold); margin-top: 42px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 28px; }
.feature-list span::before { content: "✦"; color: var(--gold); margin-right: 10px; }
.section-heading { text-align: center; margin-bottom: 60px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: rgba(255,255,255,.55); border: 1px solid rgba(42,13,24,.1); padding: 34px; min-height: 210px; }
.card h3 { font-size: 28px; color: var(--burgundy-2); }
.table-section { text-align: center; }
.table-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.table-points span { padding: 22px; border-top: 1px solid var(--gold); }
.check-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; font-size: 18px; }
.check-list li::before { content: "✓"; color: var(--gold); font-weight: 700; margin-right: 12px; }
.fit-card { background: rgba(255,255,255,.66); padding: 44px; }
.fit-card.muted { background: rgba(42,13,24,.06); }
.fit-card ul { margin: 0; padding-left: 20px; }
.price-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.price h2 { font-size: clamp(90px, 12vw, 160px); color: var(--gold); }
.price p { color: #efe1e5; }
.microcopy { font-size: 12px; opacity: .75; }
.faq details { border-bottom: 1px solid rgba(42,13,24,.18); padding: 22px 0; }
.faq summary { cursor: pointer; font-family: var(--serif); font-size: 26px; }
.final-cta {
  position: relative; min-height: 720px; display: grid; place-items: center; text-align: center; color: var(--cream);
  background: url("assets/venue-room.jpg") center / cover no-repeat;
}
.final-overlay { position: absolute; inset: 0; background: rgba(19,6,12,.84); }
.final-cta .container { position: relative; z-index: 2; }
footer { min-height: 140px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 36px 5vw; background: #10070a; color: #bcaeb2; font-size: 12px; }
footer img { width: 140px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; height: 74px; }
  .site-header nav { display: none; }
  .site-header > .button { display: none; }
  .brand img { width: 130px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 74px; }
  .hero-copy { padding: 56px 20px 42px; order: 1; }
  .hero-photo { min-height: 0; order: 2; background: #e7dfd5; }
  .hero-photo img { width: 100%; height: auto; object-fit: contain; }
  h1 { font-size: clamp(43px, 12vw, 62px); }
  .hero-line { font-size: 17px; line-height: 1.55; }
  .hero-standard { font-size: 24px; }
  .hero-meta { gap: 8px 16px; margin-bottom: 26px; }
  .hero-meta span { display: block; width: 100%; }
  .hero .button { width: 100%; text-align: center; }
  .price-early { padding-top: 68px; padding-bottom: 68px; }
  .section { padding: 82px 0; }
  .container { width: min(100% - 36px, 1180px); }
  .split, .price-grid { grid-template-columns: 1fr; gap: 44px; }
  .experience-image img { height: 420px; }
  .cards { grid-template-columns: 1fr; }
  .table-points { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}


.host {
  background: linear-gradient(90deg, #e9e0d5 0%, var(--cream) 42%, var(--cream) 100%);
  overflow: hidden;
}
.host-grid {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
  width: min(100% - 8vw, 1320px);
}
.host-image {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}
.host-image::after {
  content: ""; position: absolute; inset: 0 0 0 auto; width: 22%; pointer-events: none;
  background: linear-gradient(90deg, rgba(247,240,229,0) 0%, rgba(247,240,229,.72) 62%, var(--cream) 100%);
}
.host-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 46%;
  display: block;
}
.host-copy {
  background: var(--cream);
  padding: 68px 0 68px 68px;
  display: flex; flex-direction: column; justify-content: center;
}
.host-copy p { font-size: 18px; margin: 0 0 17px; }
.host-title {
  font-family: var(--serif);
  font-size: 28px !important;
  line-height: 1.2;
  color: var(--burgundy-2);
}
.proof-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(42,13,24,.16);
  border-left: 1px solid rgba(42,13,24,.16);
}
.proof-item {
  min-height: 150px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(42,13,24,.16);
  border-bottom: 1px solid rgba(42,13,24,.16);
}
.proof-item strong {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: var(--burgundy-2);
  margin-bottom: 12px;
}
.proof-item span {
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(42,13,24,.10);
  padding: 34px;
  text-align: center;
}
.testimonial-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 2px solid var(--gold);
}
.testimonial-card .stars {
  color: var(--gold);
  letter-spacing: .12em;
  font-size: 13px;
  margin-bottom: 18px;
}
.testimonial-card blockquote {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.25;
}
.testimonial-card h3 {
  font-size: 24px;
  margin-bottom: 4px;
  color: var(--burgundy-2);
}
.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.testimonial-close {
  text-align: center;
  max-width: 760px;
  margin: 64px auto 0;
}
.testimonial-close h3 {
  font-size: 34px;
}


@media (max-width: 900px) {
  .host-grid { grid-template-columns: 1fr; gap: 40px; }
  .host-image img { height: auto; aspect-ratio: 4 / 3; object-position: center 16%; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .proof-grid { grid-template-columns: 1fr; }
  .host-image img { height: auto; aspect-ratio: 4 / 3; object-position: center 14%; }
}


/* v8 integrated photography */
@media (max-width: 900px) {
  .hero-photo::before { display: none; }
  .host { background: var(--cream); }
  .host-grid { width: 100%; gap: 0; }
  .host-image { min-height: 0; }
  .host-image::after { inset: auto 0 0 0; width: 100%; height: 18%; background: linear-gradient(180deg, rgba(247,240,229,0) 0%, var(--cream) 100%); }
  .host-image img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; object-position: center; }
  .host-copy { padding: 24px 20px 58px; }
}
