/* ===== Variables ===== */
:root {
  --green-deep: #2C3A24;
  --green-dark: #3B4A2B;
  --green-mid: #4A5E38;
  --green-sage: #7A8B6F;
  --green-light: #A8B89E;
  --tan: #C4A96A;
  --tan-light: #D4C49A;
  --sand: #E8DCC8;
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --white: #FFFFFF;
  --text-dark: #2A2A25;
  --text-mid: #5A5A50;
  --text-light: #8A8A7F;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --section-pad: 100px;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream-light);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 12px;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--green-deep);
  margin-bottom: 24px;
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-deep);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(59, 74, 43, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--green-deep);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-secondary:hover {
  background: var(--green-dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(44, 58, 36, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity var(--transition);
}
.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 24px;
  border: 1.5px solid var(--tan) !important;
  border-radius: 50px;
  opacity: 1 !important;
  color: var(--tan) !important;
}
.nav-cta:hover {
  background: var(--tan);
  color: var(--green-deep) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}
.nav-overlay {
  display: none;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/IMG_7087.jpeg') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 58, 36, 0.88) 0%,
    rgba(59, 74, 43, 0.75) 40%,
    rgba(74, 94, 56, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--tan-light);
  margin-bottom: 28px;
}

.hero-tagline {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--sand);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.6;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--cream);
  opacity: 0.4;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.3); transform-origin: top; }
}

/* ===== Marquee ===== */
.marquee {
  background: var(--green-deep);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sand);
  padding: 0 20px;
}

.marquee-highlight {
  color: var(--tan);
}

.marquee-dot {
  color: var(--green-sage);
  font-size: 0.7rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== About ===== */
.about {
  background: var(--cream-light);
  padding-bottom: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 550px;
}

.about-img-main {
  width: 75%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 5px solid var(--cream-light);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ===== Venue ===== */
.venue {
  background: var(--cream-light);
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 0;
}

.venue .section-eyebrow,
.venue h2 {
  text-align: center;
}

.venue-intro {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.02rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

.venue-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.venue-video {
  width: 100%;
  display: block;
}

.venue-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.venue-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
}

.venue-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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


/* ===== Gallery ===== */
.gallery {
  background: var(--cream-light);
  padding: 40px 0;
}

.gallery .section-eyebrow,
.gallery h2 {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

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

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

/* ===== Details ===== */
.details {
  background: var(--white);
  padding-top: 48px;
}

.details .section-eyebrow,
.details h2 {
  text-align: center;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.detail-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.detail-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--green-mid);
}
.detail-icon svg {
  width: 100%;
  height: 100%;
}

.detail-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.detail-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

.detail-sub {
  font-size: 0.85rem !important;
  color: var(--text-light) !important;
  margin-top: 6px;
}

.details-highlights {
  margin-top: 64px;
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.details-highlights h3 {
  color: var(--cream);
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 32px;
}

.highlights-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sand);
  font-size: 0.95rem;
}

.highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tan);
  flex-shrink: 0;
}

/* ===== Hosts ===== */
.hosts {
  background: var(--cream-light);
}

.hosts .section-eyebrow,
.hosts h2 {
  text-align: center;
}

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.hosts-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hosts-photo {
  width: 100%;
  display: block;
  transform: scale(2.5);
  transform-origin: 50% 58%;
}

.host-bio {
  margin-bottom: 32px;
}
.host-bio:last-child {
  margin-bottom: 0;
}

.host-bio h3 {
  margin-bottom: 8px;
}

.host-bio p {
  color: var(--text-mid);
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.host-social {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-mid);
  transition: color var(--transition);
}
.host-social:hover {
  color: var(--tan);
}

/* ===== Is This For You ===== */
.fit {
  position: relative;
  background: var(--green-deep);
  overflow: hidden;
}

.fit-bg {
  position: absolute;
  inset: 0;
  background: url('images/exterior-aerial.jpg') center/cover no-repeat;
  opacity: 0.08;
}

.fit-content {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.fit .section-eyebrow {
  color: var(--tan-light);
}

.fit h2 {
  color: var(--cream);
}

.fit-intro {
  color: var(--sand);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.fit-checks {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fit-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--sand);
  font-size: 1rem;
  line-height: 1.6;
}

.check-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 169, 106, 0.2);
  border-radius: 50%;
  color: var(--tan);
  font-size: 0.9rem;
  margin-top: 2px;
}

.fit-cta {
  margin-top: 40px;
}

.fit-cta p {
  color: var(--sand);
  margin-bottom: 20px;
  font-size: 1rem;
}

.fit-note {
  font-size: 0.8rem !important;
  color: var(--text-light) !important;
  margin-top: 12px !important;
}

/* ===== CE Notice ===== */
.ce-notice {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--cream-light);
  border-left: 4px solid var(--tan);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 28px;
  margin-top: 48px;
}

.ce-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--tan);
  margin-top: 2px;
}
.ce-icon svg {
  width: 100%;
  height: 100%;
}

.ce-notice h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.ce-notice p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== Booking Flow ===== */
.booking-flow {
  background: var(--cream-light);
}

.booking-flow .section-eyebrow,
.booking-flow h2 {
  text-align: center;
}

.flow-intro {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.02rem;
  max-width: 650px;
  margin: 0 auto 48px;
}

.flow-steps {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.flow-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.flow-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow-step-content h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 4px;
  margin-top: 8px;
}

.flow-step-content p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
}

.flow-connector {
  width: 2px;
  height: 28px;
  background: var(--sand);
  margin-left: 21px;
}

.flow-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== Rooms ===== */
.rooms {
  background: var(--white);
}

.rooms .section-eyebrow,
.rooms h2 {
  text-align: center;
}

.rooms-intro {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.02rem;
  max-width: 650px;
  margin: 0 auto 48px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.room-card-featured {
  border-color: var(--tan);
}

.room-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--tan);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
}

.room-image {
  width: 100%;
  height: 200px;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-placeholder {
  width: 56px;
  height: 56px;
  color: var(--green-sage);
  opacity: 0.5;
}
.room-placeholder svg {
  width: 100%;
  height: 100%;
}

.room-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.room-header h3 {
  font-size: 1.4rem;
}

.room-status {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 4px;
}

.room-available {
  background: rgba(74, 94, 56, 0.12);
  color: var(--green-mid);
}

.room-sold-out {
  background: rgba(180, 100, 80, 0.12);
  color: #9C5A42;
}

.room-description {
  color: var(--text-mid);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.room-amenities {
  margin-bottom: 24px;
  flex: 1;
}

.room-amenities li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-mid);
  font-size: 0.88rem;
}
.room-amenities li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-sage);
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--sand);
  flex-wrap: wrap;
  gap: 8px;
}

.room-earlybird {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  background: var(--green-mid);
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.room-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-deep);
}

.room-price-note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-light);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.room-capacity {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.rooms-solo-notice {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--cream-light);
  border: 2px dashed var(--sand);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 36px;
}

.solo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--green-mid);
  margin-top: 2px;
}
.solo-icon svg {
  width: 100%;
  height: 100%;
}

.solo-text h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.solo-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.room-pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-note {
  margin-top: 32px;
  text-align: center;
}

.pricing-note p {
  font-size: 0.82rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.rooms-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Photo Break ===== */
.photo-break {
  background: var(--cream-light);
  padding: 0 0 24px;
}

.photo-break-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 16px;
}

.photo-break-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===== Amenities Strip ===== */
.amenities-strip {
  overflow: hidden;
  background: var(--sand);
  padding: 24px 0 0;
}

.amenities-strip-track {
  display: flex;
  gap: 12px;
  animation: amenitiesScroll 40s linear infinite;
  width: max-content;
}

.amenities-strip-track img {
  height: 220px;
  width: auto;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes amenitiesScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Amenities ===== */
.amenities {
  background: var(--sand);
  padding: 60px 0;
}

.amenities .section-eyebrow,
.amenities h2 {
  text-align: center;
}

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

.amenity-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.amenity-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.amenity-item h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.amenity-item p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Contact ===== */
.contact {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: url('images/gaia-villa-1.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.contact-box {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact .section-eyebrow {
  color: var(--tan-light);
}

.contact h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.contact > .container > .contact-box > p {
  color: var(--sand);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 60px;
  padding: 16px 32px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--tan);
  flex-shrink: 0;
}
.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-email-inline {
  color: var(--tan);
  font-weight: 700;
  transition: color var(--transition);
}
.contact-email-inline:hover {
  color: var(--tan-light);
}

.btn-contact {
  display: inline-block;
  padding: 18px 48px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--tan);
  color: var(--green-deep);
  border: 2px solid var(--tan);
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(196, 169, 106, 0.25);
}
.btn-contact:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--green-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.contact-social {
  margin-top: 32px;
}

.contact-or {
  font-size: 0.85rem !important;
  color: var(--green-light) !important;
  margin-bottom: 10px !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.contact-handles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-handles a {
  color: var(--sand);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition);
}
.contact-handles a:hover {
  color: var(--tan);
}

.contact-handles span {
  color: var(--green-light);
  font-size: 0.7rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--green-deep);
  color: var(--sand);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--green-light);
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul a {
  font-size: 0.9rem;
  color: var(--green-light);
  transition: color var(--transition);
}
.footer ul a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

.detail-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.detail-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.detail-card.reveal:nth-child(4) { transition-delay: 0.3s; }

.gallery-item.reveal:nth-child(2) { transition-delay: 0.08s; }
.gallery-item.reveal:nth-child(3) { transition-delay: 0.16s; }
.gallery-item.reveal:nth-child(4) { transition-delay: 0.24s; }
.gallery-item.reveal:nth-child(5) { transition-delay: 0.32s; }

.flow-step.reveal:nth-child(2) { transition-delay: 0.1s; }
.flow-step.reveal:nth-child(3) { transition-delay: 0.2s; }
.flow-step.reveal:nth-child(4) { transition-delay: 0.3s; }
.flow-step.reveal:nth-child(5) { transition-delay: 0.4s; }

.room-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.room-card.reveal:nth-child(3) { transition-delay: 0.24s; }

.highlight-item.reveal:nth-child(2) { transition-delay: 0.05s; }
.highlight-item.reveal:nth-child(3) { transition-delay: 0.1s; }
.highlight-item.reveal:nth-child(4) { transition-delay: 0.15s; }
.highlight-item.reveal:nth-child(5) { transition-delay: 0.2s; }
.highlight-item.reveal:nth-child(6) { transition-delay: 0.25s; }
.highlight-item.reveal:nth-child(7) { transition-delay: 0.3s; }
.highlight-item.reveal:nth-child(8) { transition-delay: 0.35s; }
.highlight-item.reveal:nth-child(9) { transition-delay: 0.4s; }
.highlight-item.reveal:nth-child(10) { transition-delay: 0.45s; }
.highlight-item.reveal:nth-child(11) { transition-delay: 0.5s; }

/* ===== Hero Heading (About Section) ===== */
.hero-heading .hero-heading-line {
  white-space: nowrap;
}

/* ===== Core Elements List ===== */
.core-elements {
  list-style: none;
  padding: 0;
  margin-top: 8px;
  margin-bottom: 16px;
}
.core-elements li {
  color: var(--text-mid);
  font-size: 1.02rem;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.core-elements li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tan);
}

/* ===== What's Included List ===== */
.whats-included-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.whats-included-list li {
  color: var(--text-mid);
  font-size: 0.9rem;
  padding: 3px 0;
  position: relative;
  padding-left: 14px;
}
.whats-included-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-sage);
}

/* ===== How to Sign Up ===== */
.signup {
  background: var(--cream);
}
.signup .section-eyebrow,
.signup h2 {
  text-align: center;
}
.signup-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.signup-content > p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.signup-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 36px;
}
.signup-option {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.signup-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.signup-option h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--green-deep);
}
.signup-option p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.signup-option .btn {
  display: inline-block;
}
.signup-cta {
  margin-top: 28px;
}
.signup-top {
  padding: 0;
}
.signup-top-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 28px;
  text-align: center;
  background: var(--cream-light);
  border: 1px solid var(--tan);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.signup-top-card h2 {
  margin-bottom: 8px;
}
.signup-top-card .signup-content > p {
  margin-bottom: 0;
}
.signup-top-card .signup-cta {
  margin-top: 14px;
}

/* ===== Interest Form ===== */
.interest {
  background: var(--cream);
  text-align: center;
}
.interest .section-eyebrow,
.interest h2 {
  text-align: center;
}
.interest-content {
  max-width: 640px;
  margin: 16px auto 0;
}

/* ===== FAQ ===== */
.faq {
  background: var(--cream-light);
}
.faq .section-eyebrow,
.faq h2 {
  text-align: center;
}
.faq-list {
  max-width: 820px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--transition);
}
.faq-item[open] {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.faq-item summary {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--tan);
  font-weight: 400;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: '\2212';
}
.faq-answer {
  margin-top: 14px;
  color: var(--text-mid);
}
.faq-answer p {
  margin-bottom: 10px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .venue-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlights-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rooms-grid .room-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }
  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--green-deep);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1001;
  }
  .nav-links.open {
    right: 0;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .venue-gallery {
    grid-template-columns: 1fr;
  }
  .photo-break-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item-wide {
    grid-column: span 1;
  }

  .ce-notice {
    flex-direction: column;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-images {
    height: 400px;
  }
  .about-img-main {
    width: 70%;
    height: 320px;
  }
  .about-img-accent {
    width: 55%;
    height: 220px;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlights-list {
    grid-template-columns: 1fr;
  }

  .details-highlights {
    padding: 32px 24px;
  }

  .hosts-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hosts-image-wrap {
    max-width: 360px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .rooms-solo-notice {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .signup-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-heading .hero-heading-line {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
  .about-images {
    height: 340px;
  }
  .about-img-main {
    height: 260px;
  }
  .about-img-accent {
    height: 180px;
  }
}
