/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Jost', sans-serif;
  min-height: 300vh;
  background: linear-gradient(to bottom, #2d4a33 0%, #f5f0e8 40%);
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --cream:  #f5f0e8;
  --forest: #2d4a33;
  --moss:   #3a5a40;
  --gold:   #c8a96e;
  --muted:  #6b7a65;
  --white:  #ffffff;
  --nav-h:  78px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(245, 240, 232, 0.97);
  box-shadow: 0 2px 24px rgba(30, 40, 32, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ── Logo ── */
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.4s;
}
.navbar.scrolled .nav-logo { color: var(--forest); }

.logo-mark {
  width: 30px; height: 30px;
  background: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: background 0.4s;
}
.navbar.scrolled .logo-mark { background: var(--moss); }

/* ── Nav Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.navbar.scrolled .nav-links a { color: var(--muted); }
.navbar.scrolled .nav-links a:hover { color: var(--forest); }
.navbar.scrolled .nav-links a::after { background: var(--moss); }

/* ── CTA Button ── */
.nav-cta {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}

.navbar.scrolled .nav-cta {
  border-color: var(--moss);
  color: var(--moss);
}

.navbar.scrolled .nav-cta:hover {
  background: var(--moss);
  color: var(--white);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s ease;
}

.navbar.scrolled .hamburger span { background: var(--forest); }

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--cream);
  transition: color 0.25s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu .mobile-cta {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8rem 2.2rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 3px;
  margin-top: 0.5rem;
  transition: all 0.3s;
}

.mobile-menu .mobile-cta:hover {
  background: var(--gold);
  color: var(--forest);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .nav-links,
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ═══════════════════════════
   HERO SECTION
═══════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Video background ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fallback image when no video is loaded */
.hero-fallback {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1519741347686-c1e0aadf4611?w=1600&q=80')
              center / cover no-repeat;
  z-index: -1;
}

/* ── Dark overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 30, 12, 0.55) 0%,
    rgba(10, 30, 12, 0.45) 60%,
    rgba(10, 30, 12, 0.75) 100%
  );
}

/* ── Hero content ── */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 780px;
  animation: heroFadeUp 1.1s ease forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  background: rgba(200, 169, 110, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(200, 169, 110, 0.3);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero-title-gold {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}

/* ── Hero Buttons ── */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover {
  background: #b8924e;
  border-color: #b8924e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Scroll hint ── */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .hero-title { font-size: 2.4rem; }
  .hero-sub   { font-size: 0.75rem; letter-spacing: 0.08em; }
  .btn        { padding: 0.75rem 1.5rem; font-size: 0.75rem; }
}


/* ═══════════════════════════
   SHARED SECTION STYLES
═══════════════════════════ */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.title-gold {
  color: var(--gold);
  font-style: italic;
}

/* ═══════════════════════════
   ABOUT SECTION
═══════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 7rem 8vw;
  background: var(--cream);
  overflow: hidden;
}

/* ── Left image block ── */
.about-image {
  position: relative;
}

.about-img-frame {
  width: 100%;
  height: 540px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 40, 32, 0.18);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-frame:hover img {
  transform: scale(1.04);
}

/* Floating badges */
.about-badge,
.about-badge-years {
  position: absolute;
  background: var(--white);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 30px rgba(30, 40, 32, 0.14);
  animation: floatBadge 4s ease-in-out infinite;
}

.about-badge {
  bottom: 2.5rem;
  left: -2rem;
}

.about-badge-years {
  top: 2rem;
  right: -1.5rem;
  animation-delay: 2s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.badge-icon { font-size: 1.4rem; }

.badge-text,
.about-badge-years p {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.4;
}

/* ── Right text block ── */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-desc {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* Stats row */
.about-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(200, 169, 110, 0.2);
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(200, 169, 110, 0.3);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 6vw;
  }

  .about-img-frame { height: 360px; }

  .about-badge  { left: 0.5rem; }
  .about-badge-years { right: 0.5rem; }
}

@media (max-width: 480px) {
  .about-stats { gap: 1rem; }
  .stat-num    { font-size: 1.6rem; }
}


/* Scroll reveal state */
.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* ═══════════════════════════
   SERVICES SECTION
═══════════════════════════ */
.services {
  padding: 7rem 8vw;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

/* Background decorative circle */
.services::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.06);
  pointer-events: none;
}
.services::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.05);
  pointer-events: none;
}

/* ── Header ── */
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.services-header .section-title {
  color: var(--cream);
}

.services-subtitle {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.8;
  margin-top: 0.8rem;
}

/* ── Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── Card ── */
.service-card {
  position: relative;
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: all 0.35s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 169, 110, 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 110, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before { opacity: 1; }

/* Featured card */
.featured-card {
  background: rgba(200, 169, 110, 0.12);
  border-color: rgba(200, 169, 110, 0.4);
}

.service-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold);
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
}

.service-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.6);
  flex: 1;
}

.service-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  transition: gap 0.3s ease, opacity 0.3s;
}

.service-link:hover { opacity: 0.75; }

/* ── Bottom CTA ── */
.services-cta {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.services-cta p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.55);
  letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services { padding: 5rem 6vw; }
}

/* ═══════════════════════════
   GALLERY SECTION
═══════════════════════════ */
.gallery {
  padding: 7rem 8vw;
  background: var(--cream);
}

/* ── Header ── */
.gallery-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
}

.gallery-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 0.8rem;
}

/* ══════════════════
   IMAGE SLIDER
══════════════════ */
.slider-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 40, 32, 0.18);
}

.slider {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.slide {
  min-width: 100%;
  position: relative;
  height: 500px;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.8rem;
  background: linear-gradient(to top, rgba(10,30,12,0.75), transparent);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* Arrow buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(245, 240, 232, 0.15);
  border: 1.5px solid rgba(245, 240, 232, 0.4);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
}

.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
}

.slider-btn.prev { left: 1.2rem; }
.slider-btn.next { right: 1.2rem; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 99px;
}

/* ══════════════════
   PHOTO GRID
══════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1rem;
}

.grid-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-item:hover img {
  transform: scale(1.07);
}

.grid-item.tall {
  grid-row: span 2;
}

.grid-item.wide {
  grid-column: span 2;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 12, 0.65),
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.grid-item:hover .grid-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 20, 12, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
}

/* ── Gallery CTA ── */
.gallery-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .slide { height: 320px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .grid-item.tall  { grid-row: span 1; }
  .grid-item.wide  { grid-column: span 2; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .grid-item.wide { grid-column: span 1; }
  .gallery { padding: 5rem 6vw; }
}


/* ═══════════════════════════
   PRICING SECTION
═══════════════════════════ */
.pricing {
  padding: 7rem 8vw;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

/* Decorative background circles */
.pricing::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.05);
  pointer-events: none;
}
.pricing::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.05);
  pointer-events: none;
}

/* ── Header ── */
.pricing-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
}

.pricing-header .section-title { color: var(--cream); }

.pricing-subtitle {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.8;
  margin-top: 0.8rem;
}

/* ── Grid ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ── Card ── */
.pricing-card {
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Popular card */
.pricing-card.popular {
  background: rgba(200, 169, 110, 0.12);
  border-color: var(--gold);
  transform: translateY(-10px);
}

.pricing-card.popular:hover {
  transform: translateY(-16px);
}

.popular-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}

/* Pricing top */
.pricing-top { display: flex; flex-direction: column; gap: 0.5rem; }

.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
  margin: 0.3rem 0;
}

.currency {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.plan-desc {
  font-size: 0.84rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
}

/* Features list */
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.plan-features li {
  font-size: 0.87rem;
  color: rgba(245, 240, 232, 0.75);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.check {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cross {
  color: rgba(245, 240, 232, 0.25);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.plan-features li:has(.cross) {
  opacity: 0.4;
}

/* Outline dark button */
.btn-outline-dark {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  border: 1.5px solid rgba(200, 169, 110, 0.4);
  color: var(--gold);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline-dark:hover {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Note */
.pricing-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.45);
  letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .pricing-card.popular { transform: translateY(0); }
  .pricing-card.popular:hover { transform: translateY(-6px); }
}

@media (max-width: 480px) {
  .pricing { padding: 5rem 6vw; }
}

/* ═══════════════════════════
   LOCATION SECTION
═══════════════════════════ */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 7rem 8vw;
  background: var(--cream);
  overflow: hidden;
}

/* ── Left Info ── */
.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-desc {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--muted);
}

/* Info blocks */
.location-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 0.5rem 0;
}

.location-block {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 8px;
  padding: 1.2rem;
  transition: all 0.3s ease;
}

.location-block:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 40, 32, 0.08);
}

.loc-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.loc-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.3rem;
}

.loc-text p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ── Right Map ── */
.location-map {
  position: relative;
}

.map-frame {
  width: 100%;
  height: 480px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 40, 32, 0.16);
  border: 1px solid rgba(200, 169, 110, 0.2);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Map badge */
.map-badge {
  position: absolute;
  bottom: 1.8rem;
  left: 1.8rem;
  background: var(--white);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 8px 24px rgba(30, 40, 32, 0.15);
  font-size: 1.4rem;
  animation: floatBadge 4s ease-in-out infinite;
}

.map-badge strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
}

.map-badge p {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .location {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 6vw;
  }

  .map-frame { height: 360px; }
}

@media (max-width: 520px) {
  .location-blocks {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════
   CONTACT SECTION (FIXED)
═══════════════════════════ */
.contact {
  padding: 7rem 5vw;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Center header */
.contact-header {
  text-align: center;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* MAIN CONTAINER */
.contact-container {
  width: 100%;
  max-width: 1100px; /* 👈 THIS CENTERS EVERYTHING */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* FORM */
.contact-form {
  width: 100%;
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Inputs */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
}

/* Focus */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 2px rgba(200,169,110,0.2);
}

/* CONTACT INFO BOX */
.contact-info {
  background: var(--forest);
  color: var(--cream);
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.contact-info h3 {
  color: var(--gold);
}

/* SUCCESS MESSAGE */
.form-success {
  text-align: center;
  font-size: 0.85rem;
  color: var(--forest);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.form-success.show {
  opacity: 1;
  transform: translateY(0);
}

/* BUTTON LOADING */
.btn.loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.btn.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid var(--white);
  border-top: 2px solid transparent;
  border-radius: 50%;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}

/* Footer overall */
.site-footer {
  background-color: #1b3e2a; /* Example Tori Garden green */
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Social icons with Font Awesome */
.footer-social {
  margin-bottom: 20px;
}
.footer-social a {
  display: inline-block;
  margin: 0 10px;
  color: #fff;
  font-size: 24px;
  transition: transform 0.3s, color 0.3s;
}
.footer-social a:hover {
  transform: scale(1.2);
  color: #ffcc00; /* hover highlight */
}

/* Footer credit */
.footer-credit {
  font-size: 14px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.site-footer.show .footer-credit {
  opacity: 1;
  transform: translateY(0);
}

/* Developer name pulse animation */
.developer-name {
  font-weight: bold;
  color: #ffcc00;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); color: #ffcc00; }
  50% { transform: scale(1.05); color: #ffd633; }
}

/* Responsive */
@media screen and (max-width: 600px) {
  .footer-social a {
    font-size: 20px;
    margin: 0 8px;
  }
  .footer-credit { font-size: 13px; }
}

.site-footer {
  background-color: #1b3e2a;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Social Icons */
.footer-social {
  margin-bottom: 20px;
}
.footer-social a {
  display: inline-block;
  margin: 0 10px;
  color: #fff;
  font-size: 24px;
  transition: transform 0.3s, color 0.3s;
}
.footer-social a:hover {
  transform: scale(1.2);
  color: #ffcc00;
}

/* Developer Credit */
.footer-credit-wrapper {
  text-align: center;
}

.footer-credit {
  font-size: 14px;
  margin-top: 10px;
}

/* Developer name animation */
.developer-name {
  font-weight: bold;
  color: #ffcc00;
  display: inline-block ;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); color: #ffcc00; }
  50% { transform: scale(1.05); color: #ffd633; }
}

/* Responsive */
@media screen and (max-width: 600px) {
  .footer-social a { font-size: 20px; margin: 0 8px; }
  .footer-credit { font-size: 13px; }
}