/* ==========================================================================
   WEIGHT LOSS BODHGAYA — Stylesheet
   Design system: natural green + white wellness aesthetic
   Typography: "Fraunces" (headings, soft organic serif) + "DM Sans" (body/UI)
   ========================================================================== */

/* -------------------- Design tokens -------------------- */
:root {
  /* Colors */
  --primary-green: #2f6b47;      /* core brand green */
  --primary-green-dark: #1f4a32; /* pressed / hover */
  --dark-green: #12271b;         /* near-black green for text on light */
  --light-green: #e9f2ea;        /* section background */
  --light-green-soft: #f3f8f2;   /* card background */
  --cream: #faf7f0;              /* subtle warm accent, used sparingly */
  --white: #ffffff;
  --text-dark: #1c2b21;
  --text-muted: #5c6d61;
  --border-soft: #dbe6dd;
  --gold-line: #b99a5b;          /* hairline accent, very sparing */
  --shadow-soft: 0 10px 30px rgba(18, 39, 27, 0.08);
  --shadow-lift: 0 18px 40px rgba(18, 39, 27, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --maxw: 1180px;

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
@media (max-width: 720px) {
  section { padding: 56px 0; }
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--dark-green); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
p { color: var(--text-muted); }

.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--primary-green);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.section-tag::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-line);
  display: inline-block;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--gold-line); outline-offset: 3px; }
.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--primary-green-dark); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-outline {
  background: transparent;
  border-color: var(--primary-green);
  color: var(--primary-green);
}
.btn-outline:hover { background: var(--primary-green); color: var(--white); transform: translateY(-2px); }
.btn-light {
  background: var(--white);
  color: var(--primary-green-dark);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* -------------------- Header -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border-soft);
  box-shadow: 0 6px 24px rgba(18, 39, 27, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--light-green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text .name { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--dark-green); }
.brand-text .tagline { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.02em; }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--primary-green);
  transition: width 0.25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary-green-dark); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-cta { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  border: none;
  background: var(--light-green);
  border-radius: 50%;
}
.hamburger span {
  width: 20px; height: 2px;
  background: var(--dark-green);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================
   MOBILE MENU FIX
================================ */

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  max-width: 100%;
  height: 100dvh;

  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;

  background: #ffffff;
  z-index: 9999;

  display: flex;
  flex-direction: column;

  padding: 24px;

  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.65,0,.35,1);

  visibility: hidden;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav ul {
  width: 100%;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav li {
  width: 100%;
}

.mobile-nav a {
  display: block;
  width: 100%;
  box-sizing: border-box;

  color: #12271b;
  font-size: 1.35rem;
  padding: 14px 4px;

  border-bottom: 1px solid #dbe6dd;
}

.mobile-nav .header-cta {
  width: 100%;
  margin-top: 30px;
}

@media (min-width: 960px) {
  .header-inner { padding: 18px 24px; }
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .hamburger { display: none; }
}

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--light-green) 0%, #ffffff 78%);
  padding: 64px 0 40px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,107,71,0.12) 0%, rgba(47,107,71,0) 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green-dark);
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary-green); }
.hero-title { margin-bottom: 18px; }
.hero-title .place { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; color: var(--primary-green); margin-bottom: 10px; }
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--primary-green-dark);
  margin-bottom: 20px;
}
.hero-text { max-width: 480px; font-size: 1.05rem; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }
.hero-trust { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 600; color: var(--dark-green); }
.hero-trust svg { width: 18px; height: 18px; color: var(--primary-green); flex-shrink: 0; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-blob {
  position: relative;
  width: min(420px, 88vw);
  aspect-ratio: 4 / 5;
  border-radius: 44% 56% 62% 38% / 46% 40% 60% 54%;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-blob img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: -14px; bottom: 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lift);
  display: flex; align-items: center; gap: 12px;
  max-width: 230px;
}
.hero-badge .ring {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--light-green); flex-shrink: 0;
}
.hero-badge .ring img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge .label { font-size: 0.78rem; color: var(--text-muted); }
.hero-badge .value { font-family: var(--font-display); font-weight: 600; color: var(--dark-green); font-size: 0.98rem; }

@media (min-width: 900px) {
  .hero { padding: 100px 0 60px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; }
  .hero-visual { justify-content: flex-end; }
}

/* -------------------- About preview / general two-col -------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
  .split.reverse { grid-template-columns: 1.15fr 0.85fr; }
  .split.reverse .split-media { order: 2; }
}
.split-media { position: relative; }
.split-media .photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/4.6;
}
.split-media .photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.split-media .float-card {
  position: absolute;
  bottom: -22px; right: -18px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  text-align: center;
}
.split-media .float-card .num { font-family: var(--font-display); font-size: 1.7rem; color: var(--primary-green); font-weight: 600; }
.split-media .float-card .cap { font-size: 0.78rem; color: var(--text-muted); }

.about-list { margin: 24px 0 30px; display: flex; flex-direction: column; gap: 14px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; color: var(--text-dark); }
.about-list svg { width: 20px; height: 20px; color: var(--primary-green); flex-shrink: 0; margin-top: 2px; }

/* -------------------- Cards: why choose us -------------------- */
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: var(--light-green-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); background: var(--white); }
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
}
.feature-icon svg { width: 26px; height: 26px; color: var(--primary-green); }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 0.95rem; }

/* -------------------- Services -------------------- */
.bg-alt { background: var(--light-green); }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 700px) { .service-grid { grid-template-columns: 1fr 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.service-media { aspect-ratio: 16/10; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-media img { transform: scale(1.07); }
.service-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.service-body p { font-size: 0.95rem; margin-bottom: 18px; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--primary-green-dark); font-size: 0.94rem;
  align-self: flex-start;
  transition: gap 0.25s ease, color 0.25s ease;
}
.service-link svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.service-card:hover .service-link { color: var(--primary-green); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* -------------------- How it works -------------------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: step;
}
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative;
  padding: 34px 24px 26px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}
.step-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 0.93rem; }
.steps-connector { display: none; }
@media (min-width: 900px) {
  .steps { position: relative; }
  .steps::before {
    content: "";
    position: absolute;
    top: 22px; left: 12.5%; right: 12.5%;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--border-soft) 0 10px, transparent 10px 18px);
    z-index: 0;
  }
}

/* -------------------- CTA band -------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,255,255,0.12), transparent 45%);
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 30px; }
.cta-band .btn-light:hover { background: var(--cream); }

/* -------------------- Page hero (inner pages) -------------------- */
.page-hero {
  background: var(--light-green);
  padding: 56px 0 48px;
  text-align: center;
}
.page-hero .section-tag { justify-content: center; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero .lead { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumbs { font-size: 0.85rem; color: var(--text-muted); margin-top: 16px; }
.breadcrumbs a { color: var(--primary-green-dark); font-weight: 600; }

/* -------------------- Approach cards (About) -------------------- */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 760px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.approach-card {
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-soft);
  text-align: left;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.approach-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.approach-index { font-family: var(--font-display); font-style: italic; color: var(--primary-green); font-size: 1.6rem; margin-bottom: 14px; }

/* -------------------- Gallery -------------------- */
.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px;
}
.gallery-filter button {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border-soft);
  background: var(--white);
  font-size: 0.88rem; font-weight: 600; color: var(--text-muted);
  transition: all 0.25s ease;
}
.gallery-filter button.active, .gallery-filter button:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
}
.masonry {
  column-count: 1;
  column-gap: 18px;
}
@media (min-width: 640px) { .masonry { column-count: 2; } }
@media (min-width: 980px) { .masonry { column-count: 3; } }
@media (min-width: 1280px) { .masonry { column-count: 4; } }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  background: var(--light-green-soft);
}
.masonry-item img {
  width: 100%; display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.06); }
.masonry-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 16px 14px;
  background: linear-gradient(0deg, rgba(18,39,27,0.75), transparent);
  color: var(--white);
  font-size: 0.85rem; font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.masonry-item:hover .masonry-caption { opacity: 1; transform: translateY(0); }

.masonry-item.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.masonry-item.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(18, 39, 27, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-inner { max-width: 900px; width: 100%; text-align: center; }
.lightbox img { max-height: 78vh; margin: 0 auto; border-radius: var(--radius-sm); }
.lightbox-caption { color: var(--white); margin-top: 16px; font-size: 0.95rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
}

/* -------------------- Contact -------------------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 980px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }

.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 32px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--light-green-soft);
  border: 1px solid var(--border-soft);
  padding: 20px 22px;
  border-radius: var(--radius-md);
}
.contact-info-item .icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--white); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.contact-info-item .icon svg { width: 20px; height: 20px; color: var(--primary-green); }
.contact-info-item .label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-info-item .value { font-weight: 600; color: var(--dark-green); font-family: var(--font-body); }
.contact-info-item a.value:hover { color: var(--primary-green); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }
.map-actions { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 14px; }

/* -------------------- Appointment form -------------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--dark-green); }
.field .req { color: var(--primary-green); }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--light-green-soft);
  color: var(--text-dark);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-error {
  font-size: 0.8rem; color: #b0463a; min-height: 16px;
}
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #b0463a;
}
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 18px; }
.form-submit { margin-top: 8px; }

/* -------------------- Modal -------------------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(18, 39, 27, 0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  max-width: 440px; width: 100%;
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
  box-shadow: var(--shadow-lift);
}
.modal-overlay.is-open .modal-card { transform: translateY(0) scale(1); }
.modal-icon {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--light-green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.modal-icon svg { width: 30px; height: 30px; color: var(--primary-green); }
.modal-card h3 { margin-bottom: 10px; }
.modal-card p { font-size: 0.95rem; margin-bottom: 8px; }
.modal-contact { font-weight: 700; color: var(--dark-green); margin-bottom: 22px; }
.modal-actions { display: flex; flex-direction: column; gap: 12px; }
.modal-close-text { margin-top: 18px; font-size: 0.85rem; color: var(--text-muted); }
.modal-close-text button { color: var(--primary-green-dark); font-weight: 600; text-decoration: underline; background: none; border: none; }

/* -------------------- Footer -------------------- */
.site-footer {
  background: var(--dark-green);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 0.8fr 1fr; } }
.footer-brand .brand-text .name { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.6); margin: 14px 0 18px; font-size: 0.92rem; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--primary-green); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.72); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-col .contact-line { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: rgba(255,255,255,0.72); }
.footer-col .contact-line svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--primary-green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
@media (min-width: 760px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* -------------------- Floating buttons -------------------- */
.floating-actions {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 400;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift);
  transition: transform 0.25s ease;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 26px; height: 26px; }
.float-btn.whatsapp { background: #25d366; color: var(--white); }
.float-btn.call { background: var(--white); color: var(--primary-green-dark); border: 1.5px solid var(--border-soft); }

/* -------------------- Scroll reveal -------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* -------------------- Utilities -------------------- */
.eyebrow-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
:focus-visible { outline: 3px solid var(--gold-line); outline-offset: 2px; }




<style>
/* ================================
   PREMIUM HANGING GALLERY
================================ */

.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.masonry-item {
  position: relative;
  overflow: visible;
  margin: 0;
  border-radius: 22px;
  transform-origin: top center;
  animation: gallerySwing 6s ease-in-out infinite;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hanging rope */
.masonry-item::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 24px;
  background: rgba(47, 107, 71, 0.45);
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* Small hanging hook */
.masonry-item::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid #2f6b47;
  border-radius: 50%;
  background: #fff;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

/* Image */
.masonry-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(20, 50, 35, 0.14);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    filter 0.5s ease;
}

/* Caption */
.masonry-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 11px 14px;
  border-radius: 13px;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
  transition: 0.35s ease;
}

/* Hover */
.masonry-item:hover {
  animation-play-state: paused;
  z-index: 10;
  transform: translateY(-10px) rotate(0deg) scale(1.02);
}

.masonry-item:hover img {
  transform: scale(1.04);
  box-shadow: 0 25px 50px rgba(20, 50, 35, 0.24);
  filter: saturate(1.08);
}

.masonry-item:hover .masonry-caption {
  transform: translateY(-4px);
}

/* Different swing timing */
.masonry-item:nth-child(2) {
  animation-delay: -1.5s;
}

.masonry-item:nth-child(3) {
  animation-delay: -3s;
}

.masonry-item:nth-child(4) {
  animation-delay: -4.5s;
}

.masonry-item:nth-child(5) {
  animation-delay: -2s;
}

.masonry-item:nth-child(6) {
  animation-delay: -5s;
}

.masonry-item:nth-child(7) {
  animation-delay: -1s;
}

.masonry-item:nth-child(8) {
  animation-delay: -3.5s;
}

.masonry-item:nth-child(9) {
  animation-delay: -2.5s;
}

/* Hanging movement */
@keyframes gallerySwing {
  0% {
    transform: rotate(-1.2deg);
  }

  50% {
    transform: rotate(1.2deg);
  }

  100% {
    transform: rotate(-1.2deg);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .masonry {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .masonry-item {
    animation-duration: 7s;
  }

  .masonry-item img {
    border-radius: 18px;
  }

  .masonry-caption {
    font-size: 13px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .masonry-item {
    animation: none;
  }
}
</style>


/* =========================================
   FINAL MOBILE WIDTH FIX
========================================= */

html,
body {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
}

main {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
}

section,
.page-hero {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1180px;
  box-sizing: border-box;
}

@media (max-width: 959px) {

  .site-header {
    width: 100%;
    max-width: 100%;
  }

  .header-inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-hero {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .page-hero .container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .split {
    width: 100%;
    max-width: 100%;
  }

  .mobile-nav {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100dvh !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    z-index: 99999 !important;
  }
}