/* ===== Amanda Rhine Retreats - Luxe & Elegant ===== */

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

:root {
  --black: #ffffff;
  --dark: #f7f5f2;
  --dark-2: #efebe6;
  --gold: #1a1a1a;
  --gold-light: #3a3a3a;
  --gold-dark: #0a0a0a;
  --cream: #2d2d2d;
  --white: #ffffff;
  --text: #3a3a3a;
  --text-muted: #7a7a7a;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-dark);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--cream);
  font-weight: 400;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.2; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.3; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); line-height: 1.4; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background-color 0.4s ease, padding 0.4s ease;
  background: #ffffff;
  box-shadow: none;
}

.navbar.scrolled {
  background-color: #ffffff;
  backdrop-filter: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar .logo:hover {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  font-weight: 400;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}

.btn-nav {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.5rem 1.25rem !important;
  font-weight: 500 !important;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background: var(--gold) !important;
  color: #fff !important;
}

.btn-nav::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('hero-bg.jpg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  color: #1a1a1a;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

.tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--gold-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1.15rem;
  color: #3a3a3a;
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #555;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 1px solid var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  transform: rotate(45deg);
  margin: 10px auto 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
  40% { transform: rotate(45deg) translateY(8px); }
  60% { transform: rotate(45deg) translateY(4px); }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 0;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Section Styles --- */
section {
  padding: 7rem 0;
}

.section-alt {
  background-color: var(--dark);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  font-family: var(--font-body);
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* --- About Section --- */
.about {
  padding: 7rem 0;
  background: var(--black);
}

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

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  z-index: 0;
}

.about-image img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-content .lead {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.credentials {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.credential {
  text-align: center;
}

.credential .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.credential .label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Retreats Section --- */
.retreats {
  padding: 7rem 0;
  background: var(--dark);
}

.retreats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.retreat-card {
  background: var(--dark-2);
  border: 1px solid rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: all 0.4s ease;
}

.retreat-card:hover {
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.retreat-image {
  position: relative;
}

.retreat-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  padding: 0.3rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.image-placeholder {
  background: linear-gradient(135deg, var(--dark-2), rgba(0, 0, 0, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  aspect-ratio: 16/10;
}

.image-placeholder.landscape {
  aspect-ratio: 16/10;
}

.retreat-content {
  padding: 2rem;
}

.retreat-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.retreat-location {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.retreat-dates {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.retreat-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.retreat-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.retreat-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--gold);
}

.retreat-spots {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- What's Included --- */
.included {
  padding: 7rem 0;
  background: var(--black);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.included-item {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.included-item:hover {
  border-color: rgba(0, 0, 0, 0.18);
  background: var(--dark-2);
}

.included-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.included-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.included-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Testimonials --- */
.testimonials {
  padding: 7rem 0;
  background: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background: var(--dark-2);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 2.5rem;
}

.testimonial p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial footer {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding-top: 1rem;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
  font-size: 0.9rem;
}

.retreat-attended {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

/* --- Gallery --- */
.gallery {
  padding: 7rem 0;
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.5rem;
}

.gallery-item {
  overflow: hidden;
}

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

.gallery-item .image-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  background: linear-gradient(135deg, var(--dark-2), rgba(0, 0, 0, 0.12));
  transition: transform 0.6s ease;
}

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

/* --- Teacher Training Section --- */
.training {
  padding: 7rem 0;
  background: var(--black);
}

.training-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.training-feature {
  background: var(--dark-2);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 2.5rem;
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.training-feature:hover {
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.training-feature h3 {
  margin-bottom: 1rem;
}

.training-feature p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.training-feature .card-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.training-feature .card-link::after {
  content: ' \2192';
  transition: margin-left 0.3s ease;
}

.training-feature:hover .card-link::after {
  margin-left: 6px;
}

/* --- Streaming Section --- */
.streaming {
  padding: 7rem 0;
  background: var(--dark);
}

.stream-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.stream-card {
  background: var(--dark-2);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.stream-card:hover {
  border-color: rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.stream-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.stream-card h3 {
  margin-bottom: 1rem;
}

.stream-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* --- Schedule Table --- */
.schedule {
  padding: 7rem 0;
  background: var(--black);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.schedule-table th,
.schedule-table td {
  padding: 1.2rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.schedule-table th {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-body);
}

.schedule-table td {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.schedule-table tr:hover td {
  color: var(--text);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid;
}

.badge-tiktok {
  color: #ff6f91;
  border-color: #ff6f91;
}


/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark) 100%);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 5rem 3rem;
  text-align: center;
  margin: 2rem 0;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* --- Booking / Contact --- */
.booking {
  padding: 7rem 0;
  background: var(--dark);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.booking-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.booking-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.contact-icon {
  font-size: 1.1rem;
}

.contact-item a {
  color: var(--text-muted);
}

.contact-item a:hover {
  color: var(--gold);
}

.booking .social-links {
  display: flex;
  gap: 1rem;
}

.booking .social-links a {
  padding: 0.5rem 1rem;
  background: var(--dark-2);
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.booking .social-links a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  background: var(--dark-2);
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-form .btn {
  margin-top: 0.5rem;
}

/* --- Stats --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 5rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.stat .number,
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.stat .label,
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Page Header (for inner pages) --- */
.page-header {
  padding: 10rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--dark) 0%, var(--white) 100%);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- Timeline --- */
.timeline {
  max-width: 700px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  flex-shrink: 0;
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}

.timeline-line {
  width: 1px;
  flex-grow: 1;
  background: rgba(0, 0, 0, 0.18);
  margin-top: 0.5rem;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--dark-2);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.pricing-card.featured {
  border-color: var(--gold);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 1.5rem;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  margin: 1.5rem 0;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-card ul li {
  padding: 0.6rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* --- Split Layout --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-image {
  aspect-ratio: 4/5;
  background: var(--dark-2);
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  overflow: hidden;
}

.split-content .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.split-content h2 {
  margin-bottom: 1.5rem;
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.split-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.split-content ul li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
}

.split-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* --- Simple Contact Form --- */
.contact-form-simple {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-simple .form-group {
  margin-bottom: 1.5rem;
}

/* --- Footer --- */
.footer {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.footer-brand .logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* --- Scroll Animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* --- Form States --- */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  background: var(--dark-2);
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.form-success.show {
  display: block;
}

.form-success h3 {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--text-muted);
}

.booking-form.hidden {
  display: none;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .retreats-grid,
  .testimonials-grid,
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    font-size: 1rem;
  }

  .about-grid,
  .booking-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .retreats-grid,
  .testimonials-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

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

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

  .credentials {
    flex-wrap: wrap;
    justify-content: center;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  section {
    padding: 5rem 0;
  }

  .page-header {
    padding: 8rem 0 3rem;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 3rem 2rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 2.5rem;
  }
}
