@import url('https://fonts.googleapis.com/css2?family=Allura&family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --color-saddle-brown: #8B4513;
  --color-sienna: #A52A2A;
  --color-cream: #F5F5DC;
  --color-gold: #D4AF37;
  --color-gold-dark: #C19A2E;
  --color-forest-green: #5F7F5F;
  --color-charcoal: #2E3A4B;
  --color-white: #ffffff;
  
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Lato', sans-serif;
  --font-accent: 'Allura', cursive;
  
  --header-height: 80px;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.3;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-charcoal);
  padding: 12px 24px;
  z-index: 10000;
  border-radius: 4px;
  font-weight: 600;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 10px;
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-smooth);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(139, 69, 19, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  height: 70px;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform var(--transition-smooth);
}

.site-header.scrolled .logo img {
  height: 40px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: all var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-cream);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 245, 220, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-primary);
  font-size: 32px;
  color: var(--color-saddle-brown);
  position: relative;
}

.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: all var(--transition-smooth);
  transform: translateX(-50%);
}

.mobile-menu a:hover::after {
  width: 100%;
}

.mobile-menu .btn-primary {
  margin-top: 24px;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: var(--color-charcoal);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  transform: scale(1.02);
}

.btn-primary:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-sienna);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 12px 28px;
  border: 2px solid var(--color-sienna);
  border-radius: 4px;
  transition: all var(--transition-smooth);
}

.btn-secondary:hover {
  background: var(--color-cream);
  color: var(--color-saddle-brown);
  border-color: var(--color-saddle-brown);
}

.btn-secondary:focus {
  outline: 2px solid var(--color-sienna);
  outline-offset: 3px;
}

/* ===================== HERO SECTIONS ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 58, 75, 0.15);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--color-cream);
  padding: 0 24px;
  max-width: 900px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero .subheadline {
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.hero .btn-primary {
  opacity: 0;
  transform: translateY(20px);
}

/* Split text animation */
.split-text {
  display: inline-block;
  overflow: hidden;
}

.split-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: splitReveal 0.6s forwards;
}

@keyframes splitReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulsing CTA */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }
}

.btn-primary.pulse {
  animation: pulse 2s infinite;
}

/* Page hero variations */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 58, 75, 0.25);
  z-index: -1;
}

.page-hero h1 {
  font-size: 52px;
  color: var(--color-cream);
  text-align: center;
}

/* ===================== SECTIONS ===================== */
section {
  padding: 100px 0;
}

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

.section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-saddle-brown);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 28px;
  color: var(--color-sienna);
  text-align: center;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--color-charcoal);
  font-size: 17px;
}

/* Cream Background Section */
.bg-cream {
  background: var(--color-cream);
  position: relative;
}

/* Green Background Section */
.bg-green {
  background: var(--color-forest-green);
  position: relative;
}

.bg-green .section-title,
.bg-green .section-subtitle,
.bg-green p {
  color: var(--color-cream);
}

/* Brown Background Section */
.bg-brown {
  background: var(--color-saddle-brown);
  position: relative;
}

.bg-brown .section-title,
.bg-brown .section-subtitle,
.bg-brown p {
  color: var(--color-cream);
}

/* ===================== DREAM WEDDING INTRO ===================== */
.dream-intro {
  background: var(--color-cream);
  position: relative;
}

.dream-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.dream-intro h2 {
  background: linear-gradient(135deg, var(--color-sienna), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================== FEATURED SPACES ===================== */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.space-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-smooth);
}

.space-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.space-card-content {
  padding: 24px;
}

.space-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--color-saddle-brown);
}

.space-card p {
  font-size: 15px;
  color: var(--color-charcoal);
  margin-bottom: 16px;
}

.space-card .link-tertiary {
  font-size: 14px;
  color: var(--color-gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.space-card .link-tertiary::after {
  content: '→';
  transition: transform 0.3s;
}

.space-card .link-tertiary:hover::after {
  transform: translateX(4px);
}

/* Parallax Section */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* ===================== SERVICES ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-item {
  text-align: center;
  padding: 32px 24px;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--color-gold);
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-saddle-brown);
}

.service-item p {
  font-size: 15px;
  color: var(--color-charcoal);
}

/* ===================== TESTIMONIALS ===================== */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  text-align: center;
  padding: 40px;
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.testimonial-quote {
  font-family: var(--font-primary);
  font-size: 24px;
  font-style: italic;
  color: var(--color-saddle-brown);
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-charcoal);
}

.testimonial-date {
  font-size: 14px;
  color: var(--color-forest-green);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-cream);
  border: 2px solid var(--color-gold);
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dot.active,
.testimonial-dot:hover {
  background: var(--color-gold);
}

/* ===================== WHY CHOOSE US ===================== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-item {
  text-align: center;
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--color-gold);
}

.why-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-cream);
}

.why-item p {
  font-size: 15px;
  color: rgba(245, 245, 220, 0.85);
}

/* ===================== GALLERY GRID ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(46, 58, 75, 0.4);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--color-saddle-brown);
  border-radius: 30px;
  font-size: 14px;
  color: var(--color-saddle-brown);
  transition: all var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-saddle-brown);
  color: var(--color-cream);
}

/* ===================== SPLIT SECTIONS ===================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.split-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--color-saddle-brown);
}

.split-content p {
  margin-bottom: 24px;
  font-size: 16px;
}

/* ===================== PRICING CARDS ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-card {
  background: var(--color-cream);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: var(--color-gold);
}

.pricing-card.featured {
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card h3 {
  font-size: 26px;
  color: var(--color-saddle-brown);
  margin-bottom: 8px;
}

.pricing-card .headline {
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--color-sienna);
  margin-bottom: 24px;
}

.pricing-card .price {
  font-family: var(--font-primary);
  font-size: 36px;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.pricing-card .price span {
  font-size: 16px;
  color: var(--color-charcoal);
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card li::before {
  content: '✓';
  color: var(--color-forest-green);
  font-weight: bold;
}

/* ===================== INCLUSIONS LIST ===================== */
.inclusions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.inclusion-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--color-white);
  border-radius: 8px;
}

.inclusion-icon {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* ===================== TIMELINE ===================== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-gold), var(--color-forest-green));
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  border-radius: 50%;
  border: 4px solid var(--color-cream);
}

.timeline-content {
  background: var(--color-white);
  padding: 24px;
  border-radius: 8px;
  max-width: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
  font-size: 20px;
  color: var(--color-saddle-brown);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 15px;
  color: var(--color-charcoal);
}

/* ===================== TEAM ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--color-cream);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
  font-size: 22px;
  color: var(--color-saddle-brown);
  margin-bottom: 4px;
}

.team-card .title {
  font-size: 14px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 15px;
  color: var(--color-charcoal);
}

/* ===================== CONTACT FORM ===================== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-saddle-brown);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(139, 69, 19, 0.2);
  border-radius: 6px;
  font-size: 16px;
  transition: all var(--transition-smooth);
  background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.name-field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='1' opacity='0.15'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z'/%3E%3Cpath d='M8 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2'/%3E%3Cpath d='M12 17c-2.67 0-8 1.34-8 4v1h16v-1c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px;
}

/* Floating label */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-24px) scale(0.85);
  color: var(--color-gold);
}

/* ===================== FAQ ACCORDION ===================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(139, 69, 19, 0.15);
}

.accordion-header {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
}

.accordion-header h3 {
  font-size: 18px;
  text-align: left;
  color: var(--color-saddle-brown);
  font-family: var(--font-secondary);
  font-weight: 600;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  transition: transform var(--transition-spring);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
}

.accordion-content p {
  padding-bottom: 20px;
  font-size: 16px;
  color: var(--color-charcoal);
}

/* ===================== MAP SECTION ===================== */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  text-align: center;
  padding: 100px 24px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(46, 58, 75, 0.5);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 44px;
  color: var(--color-cream);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  color: var(--color-cream);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===================== OUR PROMISE (Hidden Delight) ===================== */
.our-promise {
  background: linear-gradient(135deg, var(--color-cream), #fff);
  text-align: center;
  padding: 60px;
  border-radius: 12px;
  margin: 60px auto;
  max-width: 700px;
  border: 1px solid var(--color-gold);
}

.our-promise h3 {
  font-family: var(--font-accent);
  font-size: 32px;
  color: var(--color-sienna);
  margin-bottom: 16px;
}

.our-promise p {
  font-family: var(--font-primary);
  font-size: 18px;
  font-style: italic;
  color: var(--color-saddle-brown);
  line-height: 1.8;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--color-forest-green);
  color: var(--color-cream);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo img {
  height: 40px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-col h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  color: var(--color-cream);
}

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

.footer-col a {
  font-size: 15px;
  opacity: 0.85;
  transition: all 0.3s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--color-gold);
}

.footer-contact p {
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 245, 220, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.1);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(245, 245, 220, 0.15);
  font-size: 14px;
  opacity: 0.7;
}

/* Footer Accordion (Mobile) */
.footer-accordion {
  display: none;
}

/* ===================== GOLD DUST SCROLL PROGRESS ===================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), #f0d78c, var(--color-gold));
  background-size: 200% 100%;
  z-index: 10000;
  width: 0%;
  transition: width 0.1s;
}

.scroll-progress.active {
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===================== LIGHTBOX ===================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  color: var(--color-cream);
  cursor: pointer;
  z-index: 10002;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  color: var(--color-cream);
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* Curtain reveal animation */
.lightbox-content img {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s ease;
}

.lightbox.active .lightbox-content img {
  clip-path: inset(0 0 0 0);
}

/* ===================== FORM SUCCESS ANIMATION ===================== */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10000;
  overflow: hidden;
}

.falling-leaf {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  opacity: 0;
  animation: fallLeaf 3s ease-out forwards;
}

@keyframes fallLeaf {
  0% {
    opacity: 1;
    transform: translateY(-20px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg);
  }
}

/* ===================== ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ===================== PREFER REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .split-text span {
    opacity: 1;
    transform: none;
  }
  
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
  
  .parallax-bg {
    transform: none !important;
  }
}

/* ===================== RESPONSIVE ===================== */

/* Tablet */
@media (max-width: 1023px) {
  :root {
    --header-height: 75px;
  }
  
  .header-inner {
    padding: 0 24px;
  }
  
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .spaces-grid,
  .services-grid,
  .pricing-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .split-section.reverse {
    direction: ltr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
  }
  
  .timeline-item::before {
    left: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --header-height: 68px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero .subheadline {
    font-size: 17px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .section-subtitle {
    font-size: 24px;
  }
  
  section {
    padding: 70px 0;
  }
  
  .spaces-grid,
  .services-grid,
  .pricing-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-filter {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-col {
    border-bottom: 1px solid rgba(245, 245, 220, 0.1);
    padding-bottom: 20px;
  }
  
  .footer-col:last-child {
    border-bottom: none;
  }
  
  .footer-accordion {
    display: block;
  }
  
  .footer-col h4 {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-col h4::after {
    content: '+';
    font-size: 20px;
    transition: transform 0.3s;
  }
  
  .footer-col.active h4::after {
    transform: rotate(45deg);
  }
  
  .footer-col ul,
  .footer-col .footer-contact,
  .footer-col .social-links {
    display: none;
  }
  
  .footer-col.active ul,
  .footer-col.active .footer-contact,
  .footer-col.active .social-links {
    display: block;
    margin-top: 16px;
  }
  
  .inclusions-list {
    grid-template-columns: 1fr;
  }
  
  .cta-banner h2 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  
  .split-image img {
    height: 280px;
  }
  
  .testimonial-quote {
    font-size: 20px;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
  
  .our-promise {
    padding: 40px 24px;
    margin: 40px 16px;
  }
  
  .our-promise h3 {
    font-size: 26px;
  }
}

/* Touch targets */
@media (pointer: coarse) {
  a, button {
    min-height: 44px;
  }
  
  .nav-links a {
    min-height: auto;
  }
}
