/* ==========================================================================
   CSS VARIABLES & DESIGN SYSTEM (Bespoke Luxury Aesthetic)
   ========================================================================== */
:root {
  /* Brand Colors - Organic & Warm */
  --c-pure-white: #FBFBF9; /* Alabaster / Ivory */
  --c-sea-green: #4A5D4E; /* Deep Sage / Olive */
  --c-jet-black: #2C2C2C; /* Deep Charcoal */
  
  /* Additional Accents (Seaglass & Neutrals) */
  --c-seaglass-light: #F4F4F0; /* Very soft warm gray/green */
  --c-seaglass-medium: #D9DDD5;
  --c-off-white: #F5F5F0;
  --c-text-light: #555555;
  
  /* Typography */
  --font-script: 'Cormorant Garamond', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); /* Slower, more elegant transitions */
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--c-jet-black);
  background-color: var(--c-pure-white);
  line-height: 1.6;
  font-size: 18px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

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

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

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

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: var(--c-pure-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: pulse 2s infinite ease-in-out;
}

.preloader .brand-name {
  color: var(--c-jet-black);
  text-shadow: none;
}

.preloader .brand-tagline {
  color: var(--c-sea-green);
}

@keyframes pulse {
  0% { opacity: 0.5; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.5; transform: scale(0.98); }
}

.bg-seaglass {
  background-color: var(--c-seaglass-light);
}

/* ==========================================================================
   TYPOGRAPHY UTILS
   ========================================================================== */
.script-accent {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  font-size: 2.8rem;
  color: var(--c-sea-green);
  display: block;
  margin-bottom: 0px;
}

.script-accent.small {
  font-size: 2rem;
  margin-bottom: 0;
}

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

.section-header.center {
  text-align: center;
}

.section-header h2 {
  font-size: 3.8rem;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-solid, .btn-outline {
  display: inline-block;
  padding: 14px 38px;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  transition: var(--transition);
  cursor: pointer;
  border-radius: 4px; /* More sophisticated, subtle rounding */
}

.btn-solid {
  background-color: var(--c-sea-green);
  color: #FFFFFF; /* Keep actual white for button text contrast */
  border: 1px solid var(--c-sea-green);
}

.btn-solid:hover {
  background-color: var(--c-jet-black);
  border-color: var(--c-jet-black);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

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

.btn-outline:hover {
  background-color: var(--c-pure-white);
  color: var(--c-jet-black);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.link-arrow {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-sea-green);
  display: inline-block;
  margin-top: 1rem;
  transition: var(--transition);
}

.link-arrow:hover {
  color: var(--c-jet-black);
  transform: translateX(5px);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background-color: transparent;
}

.navbar.scrolled {
  background: rgba(251, 251, 249, 0.95); /* Ivory with slight transparency */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 5%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.navbar.navbar-solid {
  background: var(--c-pure-white) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .brand-name,
.navbar.navbar-solid .nav-link,
.navbar.navbar-solid .brand-name {
  color: var(--c-sea-green);
}

.navbar.scrolled .brand-tagline,
.navbar.navbar-solid .brand-tagline {
  color: var(--c-sea-green);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  text-decoration: none;
  transition: var(--transition);
}

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

.nav-logo-img {
  height: 120px;
  max-height: 14vh;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  /* Make logo white when navbar is transparent */
  filter: brightness(0) invert(1);
}

.navbar.scrolled .nav-logo-img {
  height: 90px;
  /* Restore original logo color when navbar is white */
  filter: none;
}

.navbar.scrolled .brand-logo {
  padding: 5px;
}

.footer-logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  /* Footer has a dark background, so make the logo white */
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.brand-logo-text {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--c-pure-white);
  transition: var(--transition);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.navbar.scrolled .brand-logo-text {
  color: var(--c-jet-black);
  text-shadow: none;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1px;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 5px;
  font-weight: 400;
}

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

.nav-link {
  color: var(--c-pure-white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--c-pure-white);
  transition: width 0.4s ease;
}

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

.navbar.scrolled .nav-link::after {
  background-color: var(--c-sea-green);
}

.nav-link:hover, .nav-link.active {
  color: var(--c-pure-white);
  opacity: 0.8;
}

.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
  color: var(--c-sea-green);
  opacity: 1;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

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

.nav-toggle span {
  width: 30px;
  height: 2px;
  background-color: var(--c-pure-white);
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background-color: var(--c-sea-green);
}

.mobile-cta-item {
  display: none;
}

/* ==========================================================================
   BOOKING MODAL
   ========================================================================== */
.booking-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.booking-modal.show {
  display: flex;
  opacity: 1;
}

.booking-modal-content {
  background-color: var(--c-pure-white);
  padding: 4rem;
  border-radius: 4px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.booking-modal.show .booking-modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--c-text-light);
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--c-jet-black);
}

.booking-modal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-modal-heade.script-accent {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--c-sage);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.booking-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--c-jet-black);
  margin-top: 10px;
  margin-bottom: 10px;
}

.calendly-placeholder {
  background: var(--c-off-white);
  border: 1px dashed var(--c-seaglass-medium);
  padding: 6rem 2rem;
  text-align: center;
  border-radius: 4px;
}

.calendly-placeholder p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--c-sea-green);
  margin-bottom: 10px;
}

.calendly-note {
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  color: var(--c-text-light) !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: var(--c-pure-white);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: -2;
  object-fit: cover;
}

.hero-media-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%),
              linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
  animation: heroKenBurns 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.05) translate(-1%, -0.5%);
  }
  100% {
    transform: scale(1.02) translate(0.5%, 0.5%);
  }
}

.hero-section::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--c-pure-white);
  padding: 0 20px;
  max-width: 900px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Social Proof Trust Badge */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  animation: fadeIn 1s ease-out;
}

.trust-stars {
  color: #F5BE47; /* Warm Gold */
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(245, 190, 71, 0.4);
}

.trust-text {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-content .script-accent {
  color: var(--c-seaglass-medium);
  font-size: 3rem;
  margin-bottom: 0.25rem;
}

.hero-title {
  font-size: 3.8rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.35rem;
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 1.8rem;
  color: var(--c-sea-green);
  background: rgba(251, 251, 249, 0.94);
  padding: 8px 26px;
  border-radius: 30px;
  display: inline-block;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  text-shadow: none;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #4A5D4E 0%, #344337 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 15px rgba(74, 93, 78, 0.4) !important;
  font-weight: 600 !important;
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #2C2C2C 0%, #151515 100%) !important;
  border-color: #FFFFFF !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-3px) scale(1.02);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  color: #FFFFFF !important;
}

.hero-btn-secondary:hover {
  background: #FFFFFF !important;
  color: var(--c-jet-black) !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35) !important;
}

.hero-subcta-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.8rem;
  margin-bottom: 1.8rem;
  font-style: italic;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Quick Availability & Date Inquiry Bar */
.hero-quick-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50px;
  padding: 6px 8px 6px 20px;
  width: 100%;
  max-width: 740px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.quick-bar-field {
  display: flex;
  flex-direction: column;
  padding: 4px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
}

.quick-bar-field:nth-child(2) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-bar-field label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.quick-select {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  padding: 2px 0;
}

.quick-select option {
  background-color: #2C2C2C;
  color: #FFFFFF;
}

.quick-bar-action {
  border-right: none;
  padding: 0;
  flex: 0 0 auto;
}

.quick-bar-btn {
  padding: 12px 22px !important;
  border-radius: 40px !important;
  font-size: 0.78rem !important;
  letter-spacing: 1px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: var(--c-sea-green) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
}

.quick-bar-btn:hover {
  background: var(--c-jet-black) !important;
  transform: translateY(-2px);
}

/* Delicate Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  z-index: 10;
  transition: var(--transition);
  cursor: pointer;
}

.hero-scroll-indicator:hover {
  color: #FFFFFF;
  transform: translateX(-50%) translateY(3px);
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background-color: #FFFFFF;
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

.scroll-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* ==========================================================================
   ABOUT / BRAND QUOTE SECTION
   ========================================================================== */
.about-section {
  padding: 8rem 0;
  background-color: var(--c-pure-white);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.about-image-wrapper {
  flex: 1;
  position: relative;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--c-sea-green);
  z-index: 0;
}

.about-img {
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0,0,0,0.03); /* Softer shadow */
  border-radius: 4px; /* Subtle rounding */
}

.about-text-wrapper {
  flex: 1;
  padding: 4rem;
  background-color: var(--c-off-white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.02); /* Softer shadow */
  margin-left: -120px; /* The overlapping effect */
  z-index: 2;
  position: relative;
  border-radius: 4px;
}

.brand-quote {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--c-sea-green);
}

.about-description {
  color: var(--c-text-light);
  margin-bottom: 2rem;
}

/* ==========================================================================
   SPACES SECTION (OVERLAPPING LAYOUT)
   ========================================================================== */
.spaces-section {
  padding: 8rem 0;
}

.space-block {
  display: flex;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
}

.space-block.reverse {
  flex-direction: row-reverse;
}

.space-img-col {
  flex: 0 0 60%;
}

.space-img-col img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 15px 45px rgba(0,0,0,0.03);
  border-radius: 4px;
  transition: transform 1.5s ease;
}

.space-img-col:hover img {
  transform: scale(1.03);
}

.space-text-col {
  flex: 0 0 45%;
  background: var(--c-pure-white);
  padding: 5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
  position: relative;
  z-index: 2;
  border-radius: 4px;
}

.overlap-left {
  margin-left: -5%;
}

.overlap-right {
  margin-right: -5%;
}

.space-text-col h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.space-text-col p {
  color: var(--c-text-light);
}

/* ==========================================================================
   EVENTS SECTION
   ========================================================================== */
.events-section {
  padding: 8rem 0;
  background-color: var(--c-pure-white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: start; /* Allow cards to stagger */
}

.events-grid .event-card:nth-child(2) {
  margin-top: 4rem; /* Break the grid / Asymmetry */
}

.event-card {
  text-align: center;
  background: var(--c-off-white);
  transition: var(--transition);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.event-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.event-card:hover img {
  transform: scale(1.05);
}

.event-card-content {
  padding: 2rem;
}

.event-card-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   GALLERY (ASYMMETRICAL)
   ========================================================================== */
.gallery-section {
  padding: 8rem 0;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
}

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

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

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

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

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 8rem 0;
  background-color: var(--c-pure-white);
}

.contact-box {
  display: flex;
  background: var(--c-off-white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.03);
  border: 1px solid var(--c-seaglass-medium);
  border-radius: 4px;
  overflow: hidden;
}

.contact-text {
  flex: 1;
  padding: 5rem;
  background-color: var(--c-seaglass-light);
}

.contact-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  margin-top: 2rem;
}

.contact-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-form-wrapper {
  flex: 1;
  padding: 5rem;
  background: var(--c-pure-white);
}

.elegant-form input,
.elegant-form select,
.elegant-form textarea {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: 1px solid var(--c-seaglass-medium);
  border-radius: 4px;
  background: var(--c-off-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.elegant-form input:focus,
.elegant-form select:focus,
.elegant-form textarea:focus {
  outline: none;
  border-color: var(--c-sea-green);
  box-shadow: 0 0 0 3px rgba(74, 93, 78, 0.1);
  background: var(--c-pure-white);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 8rem 0;
  background: var(--c-seaglass-light);
  text-align: center;
}

.testimonials-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  scrollbar-width: none;
  scroll-behavior: smooth;
  cursor: grab;
}

.testimonials-container:active {
  cursor: grabbing;
}

.testimonials-container::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: var(--c-pure-white);
  padding: 4rem 3rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 2rem);
  }
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.nav-arrow {
  background: var(--c-pure-white);
  border: 1px solid var(--c-seaglass-medium);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--c-jet-black);
  font-size: 1.2rem;
}

.nav-arrow:hover {
  background: var(--c-sea-green);
  color: #fff;
  border-color: var(--c-sea-green);
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--c-text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-jet-black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 8rem 0;
  background: var(--c-pure-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--c-seaglass-medium);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  color: var(--c-jet-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--c-sea-green);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--c-text-light);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-title { font-size: 3rem; margin-top: 10px; }
  .script-accent { font-size: 2.5rem; }
  .hero-content { padding: 0 15px; }
  
  .hero-buttons { flex-direction: column; align-items: center; }
  
  .desktop-cta { display: none; }
  .mobile-cta-item { display: block; margin-top: 1rem; }
  
  .about-container { flex-direction: column; }
  .about-text-wrapper { margin-left: 0; margin-top: -50px; }
  
  .space-block, .space-block.reverse { flex-direction: column; margin-bottom: 3rem; }
  .space-text-col { margin: -50px 20px 0; padding: 2rem; }
  
  .events-grid { grid-template-columns: 1fr; }
  
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  
  .contact-box { flex-direction: column; }
  .contact-text, .contact-form-wrapper { padding: 3rem; }
  
  .nav-links {
    position: fixed;
    top: 0; right: -100vw;
    height: 100vh;
    width: 100vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px 30px;
    transition: var(--transition);
  }
  
  .nav-links.active { right: 0; }
  .nav-links .nav-link { 
    color: var(--c-jet-black); 
    font-size: 2rem;
  }
  .nav-toggle { display: flex; z-index: 1001; }
  
  /* Toggle icon animation */
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--c-jet-black); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--c-jet-black); }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; margin-bottom: 0.5rem; line-height: 1.2; }
  .hero-content .script-accent { font-size: 1.8rem; margin-bottom: 0.2rem; }
  .hero-subtitle { font-size: 1.1rem; margin-bottom: 2rem; }
  .hero-content { padding-top: 60px; }
  .hero-buttons { gap: 0.8rem; }
}

/* ==========================================================================
   PRICING CARDS
   ========================================================================== */
.pricing-card {
  background: var(--c-pure-white);
  border: 1px solid var(--c-seaglass-medium);
  border-radius: 8px;
  padding: 3rem 2rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: var(--c-sea-green);
}

.pricing-card.highlight {
  border: 2px solid var(--c-sea-green);
  box-shadow: 0 10px 30px rgba(74, 93, 78, 0.1);
}

.pricing-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-sea-green);
  color: var(--c-pure-white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--c-sea-green);
  margin-bottom: 0.5rem;
  text-align: center;
}

.pricing-card-price {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--c-jet-black);
}

.pricing-card-desc {
  font-size: 0.95rem;
  color: var(--c-text-light);
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-seaglass-medium);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1rem;
  color: var(--c-jet-black);
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-sea-green);
  font-weight: bold;
}

/* ==========================================================================
   PHASE 5: INTERACTIVE ESTIMATOR
   ========================================================================== */
.estimator-section {
  padding: 6rem 0;
  text-align: center;
}
.estimator-header {
  margin-bottom: 3rem;
}
.estimator-widget {
  background: var(--c-pure-white);
  padding: 3rem;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
}

.control-group {
  margin-bottom: 2rem;
}
.control-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--c-seaglass-medium);
  border-radius: 5px;
  outline: none;
  margin: 1.5rem 0;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-sea-green);
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 4px 10px rgba(74, 93, 78, 0.3);
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.estimator-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--c-seaglass-medium);
  border-radius: 4px;
  background: var(--c-pure-white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-jet-black);
  margin-top: 5px;
  cursor: pointer;
  transition: var(--transition);
}
.estimator-select:focus {
  outline: none;
  border-color: var(--c-sea-green);
  box-shadow: 0 0 0 3px rgba(74, 93, 78, 0.1);
}

.radio-group label {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  padding: 10px 15px;
  border: 1px solid var(--c-seaglass-medium);
  border-radius: 4px;
  transition: var(--transition);
}
.radio-group label:hover {
  background: var(--c-seaglass-light);
  border-color: var(--c-sea-green);
}
.radio-group input[type="radio"] {
  accent-color: var(--c-sea-green);
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 15px;
  margin-top: 0;
}
.estimator-result {
  background: var(--c-seaglass-light);
  padding: 2rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.price-display {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--c-sea-green);
  margin: 1rem 0;
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--c-text-light);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .estimator-widget { grid-template-columns: 1fr; }
}

/* ==========================================================================
   REDESIGNED LUXURY FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--c-jet-black);
  color: var(--c-off-white);
  padding: 6rem 0 2rem;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.footer-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4rem;
}

.footer-brand-col {
  max-width: 400px;
}

.footer-logo-link {
  display: block;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.footer-logo-link .brand-name {
  color: var(--c-pure-white);
  font-size: 2.5rem;
  display: block;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--c-pure-white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background-color: var(--c-sea-green);
  border-color: var(--c-sea-green);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--c-pure-white);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.footer-menu, .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 1rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  display: inline-block;
}

.footer-menu a:hover {
  color: var(--c-pure-white);
  transform: translateX(5px);
}

.footer-contact-list li {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
}

.footer-contact-list span {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--c-seaglass-medium);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.footer-cta-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--c-sea-green);
  text-decoration: none;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer-cta-link:hover {
  color: var(--c-pure-white);
  transform: translateX(5px);
}

.footer-copyright-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: var(--c-pure-white);
}

@media (max-width: 992px) {
  .footer-content-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .footer-description {
    margin-bottom: 1.5rem;
  }
  .footer-menu li, .footer-contact-list li {
    margin-bottom: 0.8rem;
  }
  .footer-heading {
    margin-bottom: 1rem;
  }
  .footer-copyright-bar {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-content .script-accent {
    font-size: 2.2rem;
  }
  .hero-trust-badge {
    padding: 5px 14px;
    font-size: 0.75rem;
  }
  .trust-text {
    font-size: 0.75rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 0.8rem;
  }
  .hero-buttons .btn-solid,
  .hero-buttons .btn-outline {
    width: 100%;
    padding: 12px 24px;
    text-align: center;
  }
  .hero-quick-bar {
    flex-direction: column;
    border-radius: 20px;
    padding: 16px;
    gap: 12px;
    width: 100%;
    max-width: 340px;
  }
  .quick-bar-field {
    width: 100%;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 4px 8px 4px;
  }
  .quick-bar-action {
    border-bottom: none;
    padding-top: 6px;
    width: 100%;
  }
  .quick-bar-btn {
    width: 100%;
  }
  .hero-scroll-indicator {
    display: none;
  }
}
