/* =========================================================
   CSS RESET & ROOT VARIABLES
========================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --forest: #1E2D1F;
  --forest-mid: #2E4A30;
  --forest-light: #4A7C59;
  --maroon: #6B1A1A;
  --maroon-light: #9B2727;
  --gold: #C8A96E;
  --gold-light: #E8D5A3;
  --cream: #F4EEE2;
  --cream-dark: #EBE2D0;
  --warm-white: #FAF7F2;
  --charcoal: #2C2418;
  --text-body: #4A3F33;
  --text-muted: #7A6E62;
  --shadow-deep: 0 20px 60px rgba(30,45,31,0.25);
  --shadow-card: 0 8px 32px rgba(30,45,31,0.12);
  --transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* =========================================================
   NAVBAR
========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: linear-gradient(180deg, rgba(0,0,0,0.38) 0%, transparent 100%);
}
.navbar.scrolled {
  background: rgba(30, 45, 31, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.nav-logo img.nav-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200,169,110,0.55);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.nav-logo:hover img.nav-logo-icon {
  transform: scale(1.06);
  border-color: var(--gold-light);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.nav-logo-text .brand {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  letter-spacing: 10px;
  color: #E8D5A3;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0,0,0,0.85), 0 0px 3px rgba(0,0,0,0.95);
}
.nav-logo-text .sub {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(232,213,163,0.75);
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.nav-logo-text .sub::before,
.nav-logo-text .sub::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(232,213,163,0.55);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(244,238,226,0.85);
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--forest) !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  letter-spacing: 2px !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 28px; height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
}
/* Animated X when menu is open */
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(30,45,31,0.98);
  backdrop-filter: blur(18px);
  z-index: 999;
  padding: 26px 36px 36px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold-light);
  padding: 13px 0;
  border-bottom: 1px solid rgba(200,169,110,0.15);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 8px;
  color: var(--gold);
  background: rgba(200,169,110,0.1);
  padding-left: 14px;
  border-radius: 2px;
}
.mobile-menu.open { display: flex; }

/* =========================================================
   CONTACT HERO BANNER — pure cinematic image, no text inside
========================================================= */
.contact-hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.contact-hero:hover .contact-hero-bg {
  transform: scale(1);
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10,22,11,0.30) 0%,
      transparent 20%,
      transparent 65%,
      rgba(10,22,11,0.55) 100%
    );
}
/* =========================================================
   HERO INTRO TEXT BLOCK — below the banner, fully visible
========================================================= */
.hero-intro-block {
  background: var(--forest);
  padding: 72px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* subtle texture rings */
.hero-intro-block::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.07);
  pointer-events: none;
}
.hero-intro-block::after {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.05);
  pointer-events: none;
}
.hero-intro-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.hero-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
}
.eyebrow-line {
  display: block;
  width: 44px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-intro-eyebrow .eyebrow-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.hero-intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.hero-intro-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-intro-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
  color: rgba(200,169,110,0.45);
  font-size: 11px;
  letter-spacing: 4px;
}
.hero-intro-divider::before,
.hero-intro-divider::after {
  content: '';
  display: block;
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,169,110,0.4));
}
.hero-intro-divider::after {
  background: linear-gradient(to left, transparent, rgba(200,169,110,0.4));
}
.hero-intro-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: rgba(244,238,226,0.65);
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto 42px;
  letter-spacing: 0.3px;
}
.hero-intro-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}


.btn-primary {
  background: var(--gold);
  color: var(--forest);
  padding: 16px 40px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,169,110,0.4); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 15px 40px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(244,238,226,0.5);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 80px;
  right: 52px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(244,238,226,0.45);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(200,169,110,0.8), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.1); }
}

/* Contact info strip */
.contact-info-strip {
  background: var(--forest);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 3px solid var(--gold);
}
.contact-strip-item {
  padding: 36px 40px;
  border-right: 1px solid rgba(200,169,110,0.18);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}
.contact-strip-item:last-child { border-right: none; }
.contact-strip-item:hover { background: rgba(200,169,110,0.07); }
.strip-icon { font-size: 26px; flex-shrink: 0; }
.strip-text h4 {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.strip-text p {
  font-size: 13px;
  color: rgba(244,238,226,0.7);
  line-height: 1.55;
}

/* =========================================================
   MAIN CONTACT SECTION
========================================================= */
.section { padding: 100px 80px; }
.section-alt { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: start;
}
.contact-sidebar {}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}

.contact-sidebar h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3vw, 50px);
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-sidebar h2 em { font-style: italic; color: var(--maroon); }
.contact-sidebar > p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.95;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(30,45,31,0.07);
  border: 1px solid rgba(30,45,31,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-item:hover .contact-item-icon {
  background: var(--gold);
}
.contact-item-text h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--forest);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact-item-text p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.social-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(30,45,31,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--forest);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--forest); color: var(--gold-light); border-color: var(--forest); }

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 6px;
  padding: 52px 50px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--cream-dark);
}
.form-heading {
  margin-bottom: 32px;
}
.form-heading h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--forest);
  margin-top: 10px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30,45,31,0.08);
}
.form-group textarea { resize: vertical; min-height: 150px; }
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.form-note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  min-width: 160px;
}

/* =========================================================
   MAP SECTION
========================================================= */
.map-section {
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.map-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.map-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(30%) saturate(70%);
  transition: filter 0.6s ease;
}
.map-placeholder:hover img { filter: sepia(0%) saturate(100%); }
.map-pin-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,45,31,0.35);
  transition: var(--transition);
}
.map-placeholder:hover .map-pin-overlay { background: rgba(30,45,31,0.18); }
.map-pin {
  text-align: center;
}
.map-pin-icon {
  font-size: 52px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
  animation: pinBounce 2.2s ease-in-out infinite;
}
@keyframes pinBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.map-pin p {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-top: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.map-info {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
}
.map-info h2 em { font-style: italic; color: var(--gold-light); }
.map-info p {
  font-size: 14px;
  color: rgba(244,238,226,0.75);
  line-height: 1.9;
  margin-bottom: 36px;
}
.directions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.direction-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.direction-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.direction-item p {
  font-size: 13px;
  color: rgba(244,238,226,0.7);
  line-height: 1.6;
  margin-bottom: 0;
}
.direction-item strong {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}

/* =========================================================
   FAQ STRIP
========================================================= */
.faq-section {
  padding: 80px 80px;
  background: var(--cream);
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-section .section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.15;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: 32px 36px;
  transition: var(--transition);
  cursor: pointer;
}
.faq-item:hover { border-color: var(--gold); box-shadow: var(--shadow-card); }
.faq-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.3;
}
.faq-item p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.8;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 80px 80px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo img.footer-logo-icon { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(200,169,110,0.4); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.footer-logo .name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--gold-light);
}
.footer-brand p {
  font-size: 13px;
  color: rgba(244,238,226,0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,169,110,0.2);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(244,238,226,0.6);
  transition: var(--transition);
  cursor: pointer;
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(244,238,226,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(244,238,226,0.4); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  background: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest-light);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.1);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6E62' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--warm-white);
  border-radius: 6px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  animation: modalIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  background: var(--forest);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header-brand { display: flex; align-items: center; gap: 16px; }
.modal-header-logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(244,238,226,0.35); box-shadow: 0 2px 8px rgba(0,0,0,0.35); flex-shrink: 0; }
.modal-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
}
.modal-header p { font-size: 12px; color: rgba(244,238,226,0.6); letter-spacing: 1px; margin-top: 4px; }
.modal-close {
  width: 36px; height: 36px;
  border: 1px solid rgba(244,238,226,0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.modal-close:hover { background: rgba(255,255,255,0.1); }
.modal-body { padding: 40px; }
.modal-package-info {
  background: var(--cream);
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-package-info .pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
}
.modal-package-info .pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--maroon);
}
.modal-package-info .pkg-price span { font-size: 13px; color: var(--text-muted); }
.modal-success {
  text-align: center;
  padding: 30px 20px;
  display: none;
}
.modal-success.show { display: block; }
.modal-success-logo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(200,169,110,0.4); margin: 0 auto 18px; display: block; box-shadow: 0 4px 14px rgba(0,0,0,0.18); animation: modalSuccessPop 0.5s ease; }
@keyframes modalSuccessPop { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.08); opacity: 1; } 100% { transform: scale(1); } }
.modal-success .success-icon { font-size: 60px; margin-bottom: 16px; }
.modal-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 12px;
}
.modal-success p { font-size: 14px; color: var(--text-body); }
.form-divider {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 24px 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}
/* =========================================================
   FLOATING BUTTONS
========================================================= */
.floating-socials {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  height: 52px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  overflow: hidden;
  max-width: 52px;
  white-space: nowrap;
}
.float-btn:hover { max-width: 240px; }
.float-btn-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-btn-label {
  padding-right: 20px;
  opacity: 0;
  transition: opacity 0.2s 0.1s;
}
.float-btn:hover .float-btn-label { opacity: 1; }
.float-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.float-whatsapp  { background: #25D366; }

/* =========================================================
   SCROLL REVEAL
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================================
   RESPONSIVE — 1200px (large tablets / small laptops)
========================================================= */
@media(max-width:1200px) {
  .navbar { padding: 0 40px; }
  .nav-links { gap: 24px; }
  .section { padding: 80px 56px; }
  .faq-section { padding: 70px 56px; }
  footer { padding: 72px 56px 36px; }
  .contact-form-wrap { padding: 44px 40px; }
  .map-info { padding: 70px 56px; }
}

/* =========================================================
   RESPONSIVE — 1024px (tablets landscape)
========================================================= */
@media(max-width:1024px) {
  .contact-grid { gap: 48px; }
  .contact-form-wrap { padding: 38px 32px; }
  .contact-info-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-strip-item:nth-child(2) { border-right: none; }
  .contact-strip-item:nth-child(3) { border-top: 1px solid rgba(200,169,110,0.18); }
  .contact-strip-item:nth-child(4) { border-top: 1px solid rgba(200,169,110,0.18); border-right: none; }
}

/* =========================================================
   RESPONSIVE — 900px (tablets portrait + mobile)
========================================================= */
@media(max-width:900px) {
  /* ── Mobile branding ── */
  .nav-logo { flex-direction: column !important; align-items: center !important; gap: 3px !important; }
  .nav-logo img.nav-logo-icon { width: 34px !important; height: 34px !important; object-fit: cover !important; border-radius: 50% !important; }
  .nav-logo-text { display: flex !important; flex-direction: column !important; align-items: center !important; gap: 4px !important; line-height: 1 !important; }
  .nav-logo-text .brand { font-family: 'Cinzel', serif !important; font-size: 20px !important; letter-spacing: 7px !important; color: #C8A96E !important; font-weight: 600 !important; text-transform: uppercase !important; line-height: 1 !important;   text-shadow: 0 1px 10px rgba(0,0,0,0.85), 0 0px 3px rgba(0,0,0,0.95);
}
  .nav-logo-text .sub { display: flex !important; align-items: center !important; gap: 8px !important; font-family: 'Cinzel', serif !important; font-size: 8px !important; letter-spacing: 3px !important; color: rgba(200,169,110,0.75) !important; font-weight: 400 !important; text-transform: uppercase !important; white-space: nowrap !important; }
  .nav-logo-text .sub::before, .nav-logo-text .sub::after { content: '' !important; display: inline-block !important; width: 22px !important; height: 1px !important; background: rgba(200,169,110,0.6) !important; }
  /* Navbar – solid green, two-line logo left, hamburger right */
  .navbar {
    padding: 0 20px; height: 56px;
    background: #1E2D1F !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
  }
  .nav-logo-text .sub { display: block; font-size: 8px; letter-spacing: 3px; color: rgba(200,169,110,0.65); text-transform: uppercase; margin-top: 2px; }
  .nav-links { display: none; }
  .hamburger { display: flex; gap: 5px; }
  .hamburger span { background: #C8A96E; width: 22px; height: 1.5px; }
  .mobile-menu { top: 56px; }

  /* Hero */
  .contact-hero {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
  }
  .contact-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
    transition: none !important;
  }
  .contact-hero-overlay {
    position: absolute !important;
    inset: 0;
  }
  .contact-hero { height: 70vw; min-height: 320px; max-height: 540px; }
  .hero-scroll-indicator { display: none; }
  .hero-intro-block { padding: 52px 28px 60px; }
  .hero-intro-title { font-size: clamp(36px, 9vw, 64px); }
  .hero-intro-desc { font-size: 14px; }

  /* Info strip */
  .contact-info-strip { grid-template-columns: 1fr 1fr; }
  .contact-strip-item { padding: 28px 24px; gap: 14px; }
  .contact-strip-item:nth-child(2) { border-right: none; }
  .contact-strip-item:nth-child(3) {
    border-top: 1px solid rgba(200,169,110,0.18);
    border-right: 1px solid rgba(200,169,110,0.18);
  }
  .contact-strip-item:nth-child(4) {
    border-top: 1px solid rgba(200,169,110,0.18);
    border-right: none;
  }

  /* Main contact section */
  .section { padding: 60px 22px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrap { padding: 32px 24px; }

  /* Map */
  .map-section { grid-template-columns: 1fr; }
  .map-placeholder { min-height: 300px; }
  .map-info { padding: 56px 24px; }

  /* FAQ */
  .faq-section { padding: 60px 22px; }
  .faq-grid { grid-template-columns: 1fr; gap: 16px; }
  .faq-item { padding: 26px 28px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 60px 22px 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Modal */
  .modal-header { padding: 24px 26px; }
  .modal-header h2 { font-size: 22px; }
  .modal-body { padding: 26px; }
  .modal-package-info { flex-direction: column; align-items: flex-start; gap: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* =========================================================
   RESPONSIVE — 640px (large phones)
========================================================= */
@media(max-width:640px) {
  /* Navbar */
  .navbar { padding: 0 16px; height: 56px; }
  .mobile-menu { top: 56px; }

  /* Hero */
  .contact-hero { height: 100svh; min-height: 100svh; }
  .contact-hero { height: 65vw; min-height: 280px; }
  .hero-intro-block { padding: 40px 18px 52px; }
  .hero-intro-title { margin-bottom: 20px; }
  .hero-intro-desc { font-size: 13px; margin-bottom: 28px; }
  .hero-intro-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; text-align: center; padding: 14px 32px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; text-align: center; padding: 14px 32px; }

  /* Info strip */
  .contact-info-strip { grid-template-columns: 1fr; }
  .contact-strip-item { border-right: none !important; border-bottom: 1px solid rgba(200,169,110,0.18); }
  .contact-strip-item:nth-child(3) { border-top: none !important; }
  .contact-strip-item:nth-child(4) { border-top: none !important; border-bottom: none; }
  .contact-strip-item { padding: 22px 18px; }

  /* Sections */
  .section { padding: 48px 16px; }
  .contact-sidebar h2 { font-size: clamp(28px, 7vw, 44px); }
  .contact-form-wrap { padding: 26px 18px; border-radius: 4px; }
  .form-heading h3 { font-size: 26px; }

  /* FAQ */
  .faq-section { padding: 48px 16px; }
  .faq-section .section-header { margin-bottom: 36px; }
  .faq-item { padding: 22px 20px; }
  .faq-item h4 { font-size: 17px; }

  /* Map */
  .map-placeholder { min-height: 260px; }
  .map-info { padding: 44px 18px; }
  .map-info h2 { font-size: clamp(28px, 7vw, 42px); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 44px 16px 24px; }
  .footer-bottom p { font-size: 11px; }

  /* Social row */
  .form-submit-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .form-submit-row .btn-primary { width: 100%; text-align: center; }

  /* Floating socials */
  .floating-socials { bottom: 16px; right: 12px; gap: 10px; }
  .float-btn { height: 46px; max-width: 46px; }
  .float-btn-icon { width: 46px; height: 46px; }
  .float-btn:hover { max-width: 210px; }
}

/* =========================================================
   RESPONSIVE — 380px (small phones)
========================================================= */
@media(max-width:380px) {
  .navbar { padding: 0 12px; }
  .section { padding: 36px 14px; }
  .faq-section { padding: 36px 14px; }
  footer { padding: 36px 14px 20px; }
  .contact-form-wrap { padding: 20px 14px; }
  .map-info { padding: 36px 14px; }
  .contact-hero-content h1 { font-size: 30px; }
  .mobile-menu { padding: 18px 18px 26px; }
  .contact-strip-item { padding: 18px 14px; }
  .faq-item { padding: 18px 16px; }
}
/* =========================================================
   CONTACT — RESPONSIVE OVERHAUL ADDITIONS
========================================================= */
html, body { max-width: 100vw; overflow-x: hidden; }

@media (min-width: 1440px) {
  .section { padding: 120px 120px; }
  .faq-section { padding: 100px 120px; }
  footer { padding: 100px 120px 50px; }
  .map-info { padding: 100px 100px; }
  .hero-intro-block { padding: 90px 120px 100px; }
}

@media (max-width: 1280px) and (min-width: 1025px) {
  .section { padding: 90px 72px; }
  .faq-section { padding: 80px 72px; }
  .map-info { padding: 80px 72px; }
  footer { padding: 80px 72px 36px; }
  .hero-intro-block { padding: 72px 72px 80px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .section { padding: 76px 52px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-form-wrap { padding: 40px 36px; }
  .contact-info-strip { grid-template-columns: 1fr 1fr; }
  .contact-strip-item:nth-child(2) { border-right: none; }
  .contact-strip-item:nth-child(3) { border-top: 1px solid rgba(200,169,110,0.18); border-right: 1px solid rgba(200,169,110,0.18); }
  .contact-strip-item:nth-child(4) { border-top: 1px solid rgba(200,169,110,0.18); border-right: none; }
  .map-section { grid-template-columns: 1fr; }
  .map-placeholder { min-height: 320px; }
  .map-info { padding: 60px 52px; }
  .faq-section { padding: 72px 52px; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 64px 52px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-intro-block { padding: 60px 52px 68px; }
}

@media (max-width: 768px) {
  /* Contact hero */
  .contact-hero {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
  }
  .contact-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
    transition: none !important;
  }
  .contact-hero-overlay { position: absolute !important; inset: 0; }
  .hero-scroll-indicator { display: none; }

  /* Intro block */
  .hero-intro-block { padding: 52px 22px 60px; }
  .hero-intro-title { font-size: clamp(34px, 9vw, 60px); letter-spacing: -0.5px; }
  .hero-intro-desc { font-size: 14px; margin-bottom: 28px; }
  .hero-intro-btns { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 290px; text-align: center; display: flex; justify-content: center; }
  .hero-intro-eyebrow { font-size: 9px; letter-spacing: 4px; gap: 14px; margin-bottom: 20px; }

  /* Info strip */
  .contact-info-strip { grid-template-columns: 1fr 1fr; }
  .contact-strip-item { padding: 24px 18px; gap: 12px; }
  .contact-strip-item:nth-child(2) { border-right: none; }
  .contact-strip-item:nth-child(3) {
    border-top: 1px solid rgba(200,169,110,0.18);
    border-right: 1px solid rgba(200,169,110,0.18);
  }
  .contact-strip-item:nth-child(4) {
    border-top: 1px solid rgba(200,169,110,0.18);
    border-right: none;
  }
  .strip-icon { font-size: 22px; }
  .strip-text h4 { font-size: 9px; }
  .strip-text p { font-size: 12px; }

  /* Main contact section */
  .section { padding: 56px 22px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-sidebar h2 { font-size: clamp(28px, 7.5vw, 44px); }
  .contact-form-wrap { padding: 30px 22px; }
  .form-heading h3 { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .form-submit-row .btn-primary { width: 100%; text-align: center; }
  .contact-details { gap: 20px; }
  .contact-item-icon { width: 42px; height: 42px; font-size: 18px; }

  /* Map section */
  .map-section { grid-template-columns: 1fr; }
  .map-placeholder { min-height: 280px; }
  .map-info { padding: 52px 22px; }
  .map-info h2 { font-size: clamp(26px, 7vw, 40px); }
  .direction-item p { font-size: 12px; }

  /* FAQ */
  .faq-section { padding: 56px 22px; }
  .faq-section .section-header { margin-bottom: 40px; }
  .faq-section .section-header h2 { font-size: clamp(28px, 7.5vw, 44px); }
  .faq-grid { grid-template-columns: 1fr; gap: 12px; }
  .faq-item { padding: 24px 24px; }
  .faq-item h4 { font-size: 18px; }
  .faq-item p { font-size: 12px; }

  /* Footer */
  footer { padding: 48px 22px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Modal */
  .modal-header { padding: 20px 20px; }
  .modal-header h2 { font-size: 20px; }
  .modal-body { padding: 22px 18px; }
  .modal-package-info { flex-direction: column; gap: 8px; }

  /* Floating socials */
  .floating-socials { bottom: 18px; right: 14px; gap: 10px; }
  .float-btn { height: 46px; max-width: 46px; }
  .float-btn-icon { width: 46px; height: 46px; }
  .float-btn-label { display: none; }
  .float-btn:hover { max-width: 46px; }
}

@media (max-width: 480px) {
  .navbar { padding: 0 16px; height: 60px; }
  .mobile-menu { top: 60px; }
  .hero-intro-block { padding: 40px 16px 52px; }
  .hero-intro-title { font-size: clamp(28px, 9vw, 46px); }
  .section { padding: 44px 16px; }
  .faq-section { padding: 44px 16px; }
  .contact-strip-item { padding: 18px 14px; }
  .contact-strip-item:nth-child(3),
  .contact-strip-item:nth-child(4) { border-top: 1px solid rgba(200,169,110,0.18); }
  .contact-form-wrap { padding: 24px 16px; }
  .form-heading h3 { font-size: 20px; }
  .map-info { padding: 40px 16px; }
  .faq-item { padding: 20px 18px; }
  footer { padding: 40px 16px 22px; }
  .social-row .social-btn { width: 38px; height: 38px; }
}

@media (max-width: 480px) {
  /* Stack info strip to 1 col */
  .contact-info-strip { grid-template-columns: 1fr; }
  .contact-strip-item { border-right: none !important; border-bottom: 1px solid rgba(200,169,110,0.18); }
  .contact-strip-item:last-child { border-bottom: none; }
  .contact-strip-item:nth-child(3),
  .contact-strip-item:nth-child(4) { border-top: none !important; }
}

@media (max-width: 360px) {
  .hero-intro-title { font-size: 26px; }
  .section { padding: 36px 12px; }
  .faq-section { padding: 36px 12px; }
  footer { padding: 36px 12px 18px; }
  .contact-form-wrap { padding: 18px 12px; }
  .map-info { padding: 36px 12px; }
}

@media (max-height: 500px) and (max-width: 900px) and (orientation: landscape) {
  .contact-hero { height: 100svh; min-height: 100svh; }
  .hero-intro-block { padding: 36px 24px 44px; }
  .hero-intro-title { font-size: clamp(24px, 6vh, 40px); }
  .hero-intro-desc { font-size: 12px; margin-bottom: 20px; }
  .hero-intro-btns { flex-direction: row; }
  .btn-primary, .btn-outline { width: auto; padding: 11px 22px; }
}
