:root {
  --sage:        #9CAB84;
  --sage-light:  #C5D89D;
  --sage-dark:   #89986D;
  --sage-darkdark:   #627048;
  --cream:       #faf7f2;
  --cream-warm:  #f2ece0;
  --parchment:   #e8dece;
  --gold:        #b8955a;
  --gold-light:  #F6F0D7;
  --charcoal:    #2a2a2a;
  --text:        #3d3d3a;
  --text-muted:  #6e6e69;
  --white:       #ffffff;
  --black:      #000000;
  --nav-h:       72px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --radius: 2px;
  --shadow: 0 4px 32px rgba(42,42,42,0.08);
  --shadow-lg: 0 12px 60px rgba(42,42,42,0.13);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.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; }

/* ── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--parchment), var(--shadow);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.nav-lotus {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: brightness(0) invert(0.3);
}
.nav-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}
.nav-name span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-darkdark);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sage); }
.nav-cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--sage-dark) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid var(--parchment);
  padding: 28px 5% 32px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.1rem;
  font-family: var(--serif);
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--parchment);
}
.nav-mobile .nav-cta-mob {
  margin-top: 8px;
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── HERO ────────────────────────────────────────────────── */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--sage);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(156,171,132,0.28) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(197,216,157,0.18) 0%, transparent 60%),
    linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 40%, var(--sage-light) 100%);
}

/* Decorative botanical SVG circles */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-orb-1 { width: 600px; height: 600px; right: -120px; top: -80px; border-color: rgba(255,255,255,0.09); }
.hero-orb-2 { width: 400px; height: 400px; right: 60px; top: 80px; border-color: rgba(255,255,255,0.1); }
.hero-orb-3 { width: 240px; height: 240px; right: 160px; top: 180px; border-color: rgba(255,255,255,0.08); }

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 60px) 5% 80px;
  max-width: 720px;
}
.hero-lotus {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 550px;
  height: auto;
  opacity: 0.3;
  pointer-events: none;
  filter: brightness(0) invert(1);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); color:var(--charcoal); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 16px 32px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 5%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(250,247,242,0.4));
  animation: scrollLine 2s 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.4); opacity: 1; }
}

/* Trust bar */
.hero-trust {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-left: 1px solid rgba(255,255,255,0.1);
  padding: 20px 36px;
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.trust-item {
  text-align: center;
}
.trust-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.trust-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,1);
  margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ── SECTION GENERIC ─────────────────────────────────────── */
section { padding: 100px 5%; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--sage);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  max-width: 600px;
}
.section-title em { font-style: italic; color: var(--sage); }

/* ── CAROUSEL ────────────────────────────────────────────── */
#gallery {
  padding: 80px 0;
  background: var(--charcoal);
  overflow: hidden;
}
.gallery-header {
  padding: 0 5% 52px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.gallery-header .section-label { color: var(--gold-light); }
.gallery-header .section-label::before { background: var(--gold-light); }
.gallery-header .section-title { color: var(--white); max-width: 480px; }
.gallery-controls {
  display: flex;
  gap: 12px;
}
.gallery-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.gallery-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,149,90,0.1);
}

.carousel-track-wrap {
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  min-width: calc(33.333% - 12px);
  max-width: 500px;
  margin-right: 16px;
  flex-shrink: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sage-dark);
}
.carousel-slide:first-child { margin-left: 5%; }

/* Placeholder images using CSS art */
.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.carousel-slide:hover .slide-img { transform: scale(1.04); }

.slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,60,56,0.9) 0%, transparent 100%);
  padding: 28px 20px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.carousel-slide:hover .slide-caption { transform: none; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 0 5%;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s;
  cursor: pointer;
}
.dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--gold);
}

/* ── ABOUT / SERVICES ────────────────────────────────────── */
#about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 20px;
}
.about-text p strong {
  color: var(--charcoal);
  font-weight: 500;
}
.about-signature {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--parchment);
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-sig-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream-warm);
  border: 1px solid var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.about-sig-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-sig-text strong {
  display: block;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
}

.services-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: 8px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--sage-light);
  transform: translateY(-2px);
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid var(--parchment);
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.service-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── REVIEWS ─────────────────────────────────────────────── */
#reviews {
  background: var(--cream-warm);
  border-top: 1px solid var(--parchment);
  border-bottom: 1px solid var(--parchment);
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: 100px;
  padding: 12px 24px;
  box-shadow: var(--shadow);
}
.reviews-score {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
}
.reviews-stars {
  display: flex;
  gap: 2px;
}
.star { color: #f5a623; font-size: 1rem; }
.star.half { color: #f5a623; }
.reviews-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.reviews-count a {
  color: var(--sage);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.reviews-count a:hover { border-color: var(--sage); }
.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-left: 16px;
  border-left: 1px solid var(--parchment);
  margin-left: 4px;
}
.google-g {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4285f4;
  color: white;
  font-weight: 700;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.review-quote {
  font-size: 2.5rem;
  font-family: var(--serif);
  color: var(--parchment);
  line-height: 0.8;
  margin-bottom: 12px;
  user-select: none;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--cream-warm);
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: white;
  flex-shrink: 0;
}
.review-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
}
.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.reviews-cta {
  margin-top: 40px;
  text-align: center;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--sage);
  border: 1px solid var(--sage);
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.btn-ghost:hover {
  background: var(--sage);
  color: var(--white);
}

/* Loading state */
.reviews-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.loading-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--parchment);
  border-top-color: var(--sage);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 12px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── LOCATION ────────────────────────────────────────────── */
#location {
  background: var(--white);
  padding: 100px 0 0;
}
.location-inner {
  padding: 0 5% 100px;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-top: 56px;
  align-items: start;
}
.proximity-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.prox-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-radius: 8px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.prox-card:hover {
  border-color: var(--sage-light);
  box-shadow: var(--shadow);
}
.prox-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.prox-info { flex: 1; }
.prox-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.prox-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.prox-time {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--sage-darkdark);
  font-weight: 500;
}
.prox-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
  padding-left: 4px;
}
.location-address {
  margin-top: 32px;
  padding: 24px;
  background: var(--cream-warm);
  border-radius: 8px;
  border: 1px solid var(--parchment);
}
.location-address h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.location-address p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--cream-warm);
  border: 1px solid var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: #e8ede8;
  position: relative;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(74,124,116,0.05) 40px, rgba(74,124,116,0.05) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(74,124,116,0.05) 40px, rgba(74,124,116,0.05) 41px);
}
.map-pin {
  width: 48px;
  height: 48px;
  background: var(--sage);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 16px rgba(46,85,80,0.3);
  position: relative;
  z-index: 1;
}
.map-pin::after {
  content: '';
  position: absolute;
  inset: 10px;
  background: white;
  border-radius: 50%;
}
.map-label {
  position: relative;
  z-index: 1;
  font-weight: 500;
  color: var(--sage-dark);
}

/* ── CONTACT ─────────────────────────────────────────────── */
#contact {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-info .section-label { color: var(--gold-light); }
.contact-info .section-label::before { background: var(--gold-light); }
.contact-info .section-title { color: var(--white); }
.contact-info p {
  margin-top: 24px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250,247,242,0.65);
  font-weight: 300;
  max-width: 380px;
}
.contact-details {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--gold-light);
}
.contact-detail-text {
  font-size: 1rem;
  color: rgba(250,247,242,0.8);
  line-height: 1.7;
  text-align: left;
}
.contact-detail-text a {
  color: rgba(250,247,242,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, color 0.2s;
}
.contact-detail-text a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.contact-detail-text strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  margin-bottom: 2px;
  font-weight: 400;
}
.contact-right {
  display: flex;
  justify-content: flex-end;
}
.contact-quick {
  width: 100%;
  max-width: 840px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-hours-note { color: rgba(250,247,242,0.6); font-size: 0.9rem; display: inline-block; margin-top: 2px; }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 44px;
}
.form-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  margin-bottom: 8px;
  font-weight: 400;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.25s, background 0.25s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250,247,242,0.25);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-light);
  background: rgba(255,255,255,0.09);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select option { background: var(--sage-dark); color: var(--white); }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  padding: 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: rgba(250,247,242,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
}
.form-success .checkmark {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #161f1e;
  padding: 52px 5% 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: rgba(250,247,242,0.7);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(250,247,242,0.3);
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.75rem;
  color: rgba(250,247,242,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-lotus {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-trust { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .carousel-slide { min-width: calc(85% - 12px); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 600px) {
  section { padding: 72px 5%; }
  .hero-content { padding-bottom: 60px; }
  .hero-scroll { display: none; }
  .contact-form-wrap { padding: 24px 20px; }
}
