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

:root {
  --green-deep: #1e3a21;
  --green-mid: #2c5230;
  --green-light: #3d6b40;
  --green-pale: #e8f0e8;
  --cream: #faf7f0;
  --cream-dark: #f2ede2;
  --cream-border: #e8dfc8;
  --gold: #b8945a;
  --gold-light: #d4af78;
  --gold-dim: rgba(184, 148, 90, 0.18);
  --text-dark: #1a2a1c;
  --text-mid: #4a5e4c;
  --text-light: #7a8f7c;
  --white: #ffffff;
  --shadow-sm: 0 2px 16px rgba(30, 58, 33, 0.08);
  --shadow-md: 0 8px 40px rgba(30, 58, 33, 0.12);
  --ff-head: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Jost", sans-serif;
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--green-light);
  border-radius: 3px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  background: transparent;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    height var(--transition);
}
nav.scrolled {
  background: rgba(250, 247, 240, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  height: 68px;
  border-bottom: 1px solid var(--cream-border);
}
.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    border-color var(--transition);
}
nav.scrolled .logo-badge {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.logo-badge i {
  color: var(--white);
  font-size: 16px;
}
.logo-name {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
nav.scrolled .logo-name {
  color: var(--green-deep);
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
nav.scrolled .nav-links a {
  color: var(--text-mid);
}
nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active {
  color: var(--green-deep);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 28px !important;
  border-radius: 2px !important;
  letter-spacing: 0.13em !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--green-deep) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  z-index: 400;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.25s ease,
    background 0.3s;
}
/* nav.scrolled .hamburger {
  background: var(--green-pale);
  border-color: var(--cream-border);
}
  */
nav.scrolled .hamburger span {
  background: var(--green-deep);
} 

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}
.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  border-bottom: 1px solid var(--cream-border);
  flex-shrink: 0;
}
.mobile-drawer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.mobile-drawer-logo .logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-deep);
  border: 1.5px solid var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-drawer-logo .logo-badge i {
  color: var(--white);
  font-size: 15px;
}
.mobile-drawer-logo span {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.04em;
}

.mobile-drawer-close {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  flex-shrink: 0;
  color: var(--text-dark);
  font-size: 18px;
  transition: color var(--transition);
}
.mobile-drawer-close:hover {
  color: var(--green-deep);
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
}
.mobile-drawer-links a {
  display: block;
  padding: 18px 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-border);
  transition: all var(--transition);
}
.mobile-drawer-links a:hover {
  background: var(--green-pale);
  color: var(--green-deep);
}
.mobile-drawer-links a.active {
  color: var(--green-deep);
  border-left: 3px solid var(--gold);
  padding-left: 37px;
}

.hero {
  height: 520px;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 20% 50%,
      rgba(61, 107, 64, 0.35) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 60% at 80% 30%,
      rgba(184, 148, 90, 0.12) 0%,
      transparent 50%
    );
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-rule='evenodd'%3E%3Cpath d='M40 0L80 40 40 80 0 40z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-accent-left {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}
.hero-accent-right {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}
.hero-accent-left span,
.hero-accent-right span {
  display: block;
  width: 1px;
  background: var(--gold-light);
}
.hero-accent-left span:nth-child(1),
.hero-accent-right span:nth-child(3) {
  height: 80px;
}
.hero-accent-left span:nth-child(3),
.hero-accent-right span:nth-child(1) {
  height: 40px;
}
.hero-accent-left span:nth-child(2),
.hero-accent-right span:nth-child(2) {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: var(--gold-light);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease both;
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 0.95;
  animation: fadeUp 0.8s 0.12s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px auto 0;
  animation: fadeUp 0.8s 0.24s ease both;
}
.hero-divider span {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.hero-divider i {
  color: var(--gold-light);
  font-size: 12px;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.1;
}
.section-title em {
  font-style: italic;
}
.gold-bar {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0 20px;
}
.section-desc {
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.85;
  font-weight: 300;
}

.contact-section {
  padding: 60px 48px 90px;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.info-header {
  margin-bottom: 38px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-left: 3px solid transparent;
  padding: 20px 22px;
  transition:
    border-left-color var(--transition),
    transform var(--transition);
  cursor: default;
}
.contact-card:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
}
.card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--green-pale);
  border: 1px solid rgba(30, 58, 33, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-size: 15px;
  transition:
    background var(--transition),
    color var(--transition);
}
.contact-card:hover .card-icon {
  background: var(--green-deep);
  color: var(--white);
}
.card-body h4 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}
.card-body p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  margin-top: 6px;
  border-radius: 2px;
}
.hours-badge i {
  font-size: 9px;
}
.social-wrap {
  margin-top: 32px;
}
.social-wrap h4 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 14px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--cream-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 14px;
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}
.social-btn:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
  transform: translateY(-3px);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-top: 3px solid var(--green-deep);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle at top right,
    var(--green-pale) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.form-heading {
  margin-bottom: 36px;
}
.form-heading h2 {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1.05;
}
.form-heading h2 em {
  font-style: italic;
}
.form-heading .sub {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
  font-weight: 300;
}
.form-steps {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}
.step.active {
  color: var(--green-deep);
}
.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  transition: all var(--transition);
}
.step.active .step-dot {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}
.step.done .step-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.step-line {
  flex: 1;
  height: 1.5px;
  background: var(--cream-border);
  margin: 0 10px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  position: relative;
}
.form-group label {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.label-required {
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
}
.input-wrap {
  position: relative;
}
.input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 13px;
  pointer-events: none;
  transition: color var(--transition);
}
.input-wrap.textarea-wrap i {
  top: 16px;
  transform: none;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius);
  padding: 13px 16px 13px 40px;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  width: 100%;
  font-weight: 300;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3.5px rgba(61, 107, 64, 0.1);
  background: var(--white);
}
.input-wrap:focus-within i {
  color: var(--green-light);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 13px;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233d6b40' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--cream);
}
.dates-row {
  background: var(--green-pale);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.dates-row-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dates-row-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(30, 58, 33, 0.15);
}
.dates-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dates-inner .form-group {
  margin-bottom: 0;
}
.dates-inner input {
  background: var(--white);
}
.checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  cursor: pointer;
}
.checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--green-deep);
  cursor: pointer;
}
.checkbox-wrap label {
  font-size: 13px;
  color: var(--text-mid);
  cursor: pointer;
  font-weight: 300;
  line-height: 1.5;
}
.btn-submit {
  width: 100%;
  padding: 16px 28px;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition:
    background var(--transition),
    transform var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-submit:hover::before {
  transform: translateX(100%);
}
.btn-submit:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}
.btn-submit:active {
  transform: translateY(0);
}
.btn-submit .btn-loader {
  display: none;
}
.btn-submit.loading .btn-text {
  display: none;
}
.btn-submit.loading .btn-loader {
  display: inline-block;
}
.spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-success {
  display: none;
  text-align: center;
  padding: 60px 32px;
  animation: fadeUp 0.5s ease both;
}
.success-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid rgba(30, 58, 33, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-icon-wrap i {
  font-size: 32px;
  color: var(--green-deep);
}
.form-success h3 {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.form-success p {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}
.form-success .ref-number {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--cream-dark);
  padding: 8px 20px;
  border-radius: 2px;
}
.btn-reset {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: color var(--transition);
}
.btn-reset:hover {
  color: var(--gold);
}

.map-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.map-header {
  padding: 64px 48px 36px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.map-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 100% at 50% 0%,
    rgba(61, 107, 64, 0.3) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.map-header .eyebrow {
  color: var(--gold-light);
}
.map-header .section-title {
  color: var(--white);
}
.map-header .gold-bar {
  margin: 18px auto;
}
.map-header .section-desc {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto;
  max-width: 420px;
}
.map-embed-wrap {
  padding: 0 60px 60px;
  border-top: 2px solid rgba(184, 148, 90, 0.3);
}
.map-embed {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: sepia(15%) brightness(0.95);
  border-radius: 4px;
}

.faq-section {
  padding: 90px 48px;
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-header .gold-bar {
  margin: 18px auto;
}
.faq-header .section-desc {
  margin: 0 auto;
  text-align: center;
  max-width: 480px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    box-shadow var(--transition),
    border-color var(--transition);
}
.faq-item:hover {
  border-color: rgba(30, 58, 33, 0.15);
}
.faq-item.open {
  border-color: rgba(30, 58, 33, 0.2);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.faq-q h3 {
  font-family: var(--ff-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.3;
}
.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    transform var(--transition);
}
.faq-toggle i {
  color: var(--green-deep);
  font-size: 11px;
  transition: transform var(--transition);
}
.faq-item.open .faq-toggle {
  background: var(--green-deep);
}
.faq-item.open .faq-toggle i {
  color: var(--white);
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a-inner {
  padding: 0 26px 22px;
  border-top: 1px solid var(--cream-border);
}
.faq-a-inner p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  padding-top: 16px;
}

footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.55);
  padding: 72px 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 56px;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}
.footer-logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-badge i {
  color: var(--gold-light);
  font-size: 15px;
}
.footer-logo-link span {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  color: var(--white);
}
footer p {
  font-size: 13.5px;
  line-height: 1.8;
}
.footer-social {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
footer h4 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 600;
}
footer ul {
  list-style: none;
}
footer ul li {
  margin-bottom: 11px;
}
footer ul a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 300;
  transition: color var(--transition);
}
footer ul a:hover {
  color: var(--gold-light);
}
.fc-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 13.5px;
  font-weight: 300;
}
.fc-item i {
  color: var(--gold-light);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 13px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  font-size: 12.5px;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  transition: color var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--gold-light);
}

.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}
.whatsapp-btn::before {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.reveal,
.reveal-left,
.reveal-right {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.animate-start {
  opacity: 0;
  transform: translateY(24px);
}
.reveal-left.animate-start {
  opacity: 0;
  transform: translateX(-24px);
}
.reveal-right.animate-start {
  opacity: 0;
  transform: translateX(24px);
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 1024px) {
  nav {
    padding: 0 32px;
  }
  .contact-section,
  .faq-section {
    padding-left: 32px;
    padding-right: 32px;
  }
  .map-header {
    padding: 52px 32px 32px;
  }
  .map-embed-wrap {
    padding: 0 32px 48px;
  }
  footer {
    padding: 60px 32px 28px;
  }
}
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .form-card {
    padding: 36px 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-accent-left,
  .hero-accent-right {
    display: none;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 640px) {
  .form-row,
  .dates-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero {
    height: 380px;
  }
  .form-steps {
    display: none;
  }
  .map-embed-wrap {
    padding: 0 20px 36px;
  }
}
