/* ============================================================
   NATURE CURE CENTRE — Design System
   Theme: Refined London Wellness · Green & Warm Parchment
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── Tokens ── */
:root {
  --green-900: #1a2e1f;
  --green-800: #243828;
  --green-700: #2e4a32;
  --green-600: #3a5c3e;
  --green-500: #4e7a52;
  --green-400: #6a9e6e;
  --green-300: #90bf94;
  --green-200: #bdd9bf;
  --green-100: #deeede;
  --green-50:  #f0f7f0;

  --beige-900: #3d3528;
  --beige-800: #5c4f3a;
  --beige-700: #7a6a50;
  --beige-600: #9a8768;
  --beige-500: #b8a480;
  --beige-400: #cfc0a0;
  --beige-300: #e0d4bc;
  --beige-200: #ede5d4;
  --beige-150: #f3ece0;
  --beige-100: #f8f4ec;
  --beige-50:  #fdfaf5;

  --ink:       #1e1c18;
  --ink-soft:  #3d3830;
  --ink-muted: #6b6358;
  --ink-faint: #9e9589;

  --white:     #ffffff;
  --cream:     var(--beige-50);

  --serif:  'Cormorant Garamond', 'Georgia', serif;
  --serif2: 'EB Garamond', 'Georgia', serif;
  --sans:   'Jost', 'Helvetica Neue', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 4px rgba(30,28,24,0.06);
  --shadow-md: 0 4px 20px rgba(30,28,24,0.08);
  --shadow-lg: 0 12px 48px rgba(30,28,24,0.10);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--serif2);
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--green-900);
}
h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 300; }
h4 { font-size: 1.25rem; }
p { color: var(--ink-soft); }

.display-italic { font-style: italic; color: var(--green-600); }
.section-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-500);
}

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 2rem; }

section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-tag { display: block; margin-bottom: 1rem; }
.section-header p { max-width: 580px; margin: 1rem auto 0; font-size: 1.1rem; color: var(--ink-muted); }

/* ── Ornament divider ── */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
}
.ornament::before, .ornament::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--green-300);
}
.ornament-leaf {
  color: var(--green-400);
  font-size: 1.1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  transition: var(--transition);
}
.btn-primary {
  background: var(--green-700);
  color: white;
  box-shadow: 0 2px 12px rgba(46,74,50,0.2);
}
.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46,74,50,0.28);
}
.btn-outline {
  border: 1px solid var(--green-700);
  color: var(--green-700);
}
.btn-outline:hover {
  background: var(--green-700);
  color: white;
}
.btn-light {
  background: var(--beige-50);
  color: var(--green-800);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover {
  background: var(--white);
  transform: translateY(-1px);
}

/* ── NAVIGATION ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.5rem;
  transition: var(--transition);
}
#nav.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(253,250,245,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  z-index: -1;
}
#nav.scrolled .nav-inner {
  padding: 0.9rem 2.5rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--green-900);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.nav-logo span { display: block; font-style: italic; font-weight: 300; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-500); font-family: var(--sans); margin-top: 1px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--green-500);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--green-700); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--green-700); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; }
.nav-phone {
  font-family: var(--sans);
  font-size: 0.75rem;
  
  letter-spacing: 0.05em;
}

/* Nav on pages with a dark hero directly behind it (before scroll) */
#nav.nav--on-dark .nav-logo,
#nav.nav--on-dark .nav-links a,
#nav.nav--on-dark .nav-phone {
  color: var(--beige-50);
  transition: color var(--transition);
}
#nav.nav--on-dark .nav-links a::after { background: var(--beige-200); }
#nav.nav--on-dark .nav-links a:hover,
#nav.nav--on-dark .nav-links a.active { color: var(--beige-200); }
#nav.nav--on-dark .nav-toggle span { background: var(--beige-50); }
/* The open mobile menu always has a light background, so its links stay dark regardless of scroll state */
#nav.nav--on-dark .nav-links.open a { color: var(--ink); }
#nav.nav--on-dark .nav-links.open a:hover,
#nav.nav--on-dark .nav-links.open a.active { color: var(--green-700); }
/* Once scrolled, revert to the standard light-background nav styling */
#nav.nav--on-dark.scrolled .nav-logo,
#nav.nav--on-dark.scrolled .nav-phone { color: var(--green-900); }
#nav.nav--on-dark.scrolled .nav-links a { color: inherit; }
#nav.nav--on-dark.scrolled .nav-links a::after { background: var(--green-500); }
#nav.nav--on-dark.scrolled .nav-links a:hover,
#nav.nav--on-dark.scrolled .nav-links a.active { color: var(--green-700); }
#nav.nav--on-dark.scrolled .nav-toggle span { background: var(--green-800); }

/* The CTA button always has a solid green background, so its text must stay
   white regardless of scroll state or nav--on-dark — it should never inherit
   the plain link color rules above. */
#nav .nav-links a.nav-cta,
#nav.nav--on-dark .nav-links a.nav-cta,
#nav.scrolled .nav-links a.nav-cta,
#nav.nav--on-dark.scrolled .nav-links a.nav-cta {
  color: var(--white);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--green-800);
  transition: var(--transition);
}

/* Mobile nav close (X) button — hidden entirely outside mobile breakpoint */
.nav-close {
  display: none;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-phone { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--beige-50);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.5rem; letter-spacing: 0.05em; }

  /* Close button: present in DOM but invisible/unclickable until the menu opens */
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 1.5rem;
    right: 1.75rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--beige-300);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: background var(--transition), transform var(--transition), opacity var(--transition);
  }
  .nav-close.visible {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-close:hover {
    background: var(--green-50);
    transform: rotate(90deg);
  }
  .nav-close-icon {
    position: relative;
    width: 16px;
    height: 16px;
  }
  .nav-close-icon::before,
  .nav-close-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 0;
    width: 16px;
    height: 1.5px;
    background: var(--green-800);
    border-radius: 2px;
  }
  .nav-close-icon::before { transform: translateY(-50%) rotate(45deg); }
  .nav-close-icon::after  { transform: translateY(-50%) rotate(-45deg); }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--beige-100);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(90,158,110,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(207,192,160,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 4rem 6rem;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 2rem;
}
.hero-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green-400);
}
.hero h1 {
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige-300);
}
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}
.trust-item svg { color: var(--green-500); flex-shrink: 0; }
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
 
}
.hero-img-wrap img {
  width: 90%; 
  object-fit: cover;
  margin-top: 6.5rem;
  margin-left: 0.8rem;  
  
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,74,50,0.5) 0%, rgba(26,46,31,0.7) 100%);
}
.hero-img-card {
  position: absolute;
  bottom: 3rem;
  left: -2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}
.hero-img-card .stat { font-family: var(--serif); font-size: 2.5rem; color: var(--green-700); line-height: 1; }
.hero-img-card .stat-label { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-top: 0.25rem; }
.hero-img-card .stat-desc { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.5rem; line-height: 1.5; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 8rem 2rem 4rem; }
  .hero-right { height: 50vh; }
  .hero-img-card { display: none; }
}
@media (max-width: 500px) {
  .no-mob {
    display: none;
  }
  .hero-trust-row {
    flex-direction: column;
    align-items: start;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .hero-trust {
    
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--green-800);
  color: var(--white);
  padding: 3.5rem 0;
}
.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.intro-strip h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.4;
}
.intro-strip h2 em { font-style: italic; color: var(--green-300); }
@media (max-width: 768px) {
  .intro-strip-inner { flex-direction: column; text-align: center; }
}

/* ── TREATMENTS ── */
.treatments { background: var(--beige-50); }
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--beige-300);
  border: 2px solid var(--beige-300);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.treatment-card {
  background: var(--white);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.treatment-card:hover { background: var(--green-50); }
.treatment-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--beige-300);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color var(--transition);
}
.treatment-card:hover .treatment-number { color: var(--green-200); }
.treatment-icon {
  width: 48px;
  height: 48px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.treatment-card:hover .treatment-icon { background: var(--green-200); }
.treatment-icon svg { color: var(--green-700); }
.treatment-card h3 { margin-bottom: 0.75rem; font-size: 1.5rem; }
.treatment-card p { font-size: 0.95rem; color: var(--ink-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.treatment-link {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}
.treatment-card:hover .treatment-link { gap: 0.9rem; }

/* ── CONDITIONS ── */
.conditions { background: var(--beige-100); }
.conditions-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.conditions-intro p { color: var(--ink-muted); margin-top: 1.5rem; line-height: 1.8; }
.conditions-intro .btn { margin-top: 2rem; }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--beige-300);
  border: 1px solid var(--beige-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.condition-item {
  background: var(--white);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: background var(--transition);
  cursor: default;
}
.condition-item:hover { background: var(--green-50); }
.condition-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-400);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .conditions-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── ABOUT ── */
.about { background: var(--beige-100); overflow: hidden; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-col { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  display: none;
  position: absolute;
  bottom: 15rem; right: -1.5rem;
  background: var(--green-800);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  min-width: 140px;
  box-shadow: var(--shadow-lg);
}
.about-img-badge .num {
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--green-200);
}
.about-img-badge .lbl {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-top: 0.25rem;
}
.about-quote {
  margin-top: 0.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--beige-50);
  border-left: 3px solid var(--green-500);
  border-radius: var(--radius-md);
}
.about-quote p {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green-800);
  line-height: 1.65;
  margin: 0 0 0.6rem;
}
.about-quote cite {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.about-content .section-tag { margin-bottom: 1rem; }
.about-content h2 { margin-bottom: 0.5rem; }
.about-content p { margin-top: 1.25rem; color: var(--ink-muted); line-height: 1.85; }
.about-accreditations {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige-200);
}
.accred-badge {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--beige-100);
  border: 2px solid var(--beige-300);
  border-radius: 100px;
  padding: 0.4rem 1rem;
}
.accred-logo {
  height: 34px;
  width: auto;
  display: block;
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-badge { right: 0; }
}
@media (max-width: 500px) {
  .about-img-frame {
    padding-right: 0;
  }
  .about-accreditations {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--green-900); color: var(--white); position: relative; overflow: hidden; }
.testimonials::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 3rem;
  font-family: var(--serif);
  font-size: 20rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: var(--green-300); }
.testimonials .section-tag { color: var(--green-300); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem;
  transition: background var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,0.09); }
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}
.testi-stars span { color: var(--beige-400); font-size: 0.85rem; }
.testi-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--beige-100);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--green-100);
  font-weight: 500;
  flex-shrink: 0;
}
.testi-name { font-family: var(--sans); font-size: 0.82rem; font-weight: 500; color: var(--white); letter-spacing: 0.04em; }
.testi-role { font-family: var(--sans); font-size: 0.72rem; color: var(--green-300); letter-spacing: 0.06em; }

/* ── PRODUCTS ── */
.products { background: var(--beige-50); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  /* With auto-fit grid columns, a single card would otherwise stretch to
     fill the full row width. Capping max-width keeps it the same size it
     would be if 3+ cards were present, and margin: 0 auto centers it
     within its grid track. Has no effect once 3+ cards fill each row,
     since each track is already narrower than this cap. */
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--green-100);
  transition: box-shadow var(--transition);
}
.product-card:hover .product-image { box-shadow: var(--shadow-sm); }
.product-image svg,
.product-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.product-category {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-500);
}
.product-card h3 { margin: 0.5rem 0 0.65rem; font-size: 1.4rem; }
.product-desc { font-size: 0.92rem; color: var(--ink-muted); line-height: 1.7; flex-grow: 1; margin-bottom: 1.25rem; }
.product-price {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--green-700);
  margin-bottom: 1.25rem;
}
.product-card .btn { align-self: flex-start; }

.products-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* Products page category filter */
.products-tabs {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.products-tab {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border-radius: 100px;
  border: 1px solid var(--beige-300);
  background: var(--white);
  color: var(--ink-muted);
  transition: var(--transition);
}
.products-tab:hover { border-color: var(--green-500); color: var(--green-700); }
.products-tab.active { background: var(--green-700); border-color: var(--green-700); color: var(--white); }
.product-card[data-hidden="true"] { display: none; }



/* ── RETREAT (HOMEPAGE TEASER) ── */
.retreat {
  background: var(--green-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.retreat-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.retreat-img-col { position: relative; }
.retreat-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.retreat-img-frame img,
.retreat-img-frame svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.retreat-img-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  min-width: 150px;
  box-shadow: var(--shadow-lg);
}
.retreat-img-badge .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--green-700);
}
.retreat-img-badge .lbl {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.35rem;
}
.retreat-content .section-tag { color: var(--green-100); margin-bottom: 1rem; display: block; }
.retreat-content h2 { color: var(--white); margin-bottom: 1.25rem; }
.retreat-content h2 em { font-style: italic; color: var(--green-300); }
.retreat-content p { color: var(--green-100); line-height: 1.85; margin-bottom: 1.25rem; }
.retreat-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin: 1.75rem 0 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.retreat-fact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--beige-100);
}
.retreat-fact svg { color: var(--green-300); flex-shrink: 0; }
@media (max-width: 900px) {
  .retreat-inner { grid-template-columns: 1fr; gap: 3rem; }
  .retreat-img-badge { right: 0; }
}

/* ── PRODUCT DETAIL OVERLAY ── */
.product-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--transition), visibility var(--transition);
}
.product-overlay.open { visibility: visible; opacity: 1; }
.product-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,46,31,0.6);
  backdrop-filter: blur(4px);
}
.product-overlay-panel {
  position: relative;
  background: var(--beige-50);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(0.98);
  transition: transform var(--transition);
}
.product-overlay.open .product-overlay-panel { transform: translateY(0) scale(1); }
.product-overlay-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--green-800);
  box-shadow: var(--shadow-sm);
  z-index: 2;
  transition: var(--transition);
}
.product-overlay-close:hover { background: var(--green-700); color: var(--white); }
.product-overlay-body {
  display: grid;
  grid-template-columns: 220px 1fr;
}
.product-overlay-media {
  background: var(--green-800);
  overflow: hidden;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}
.product-overlay-icon {
  width: 100%;
  height: 100%;
}
.product-overlay-icon svg,
.product-overlay-icon img { width: 100%; height: 100%; display: block; object-fit: cover; }
.product-overlay-content { padding: 2.75rem 2.5rem 2.5rem 2rem; }
.product-overlay-content #productOverlayTitle { margin: 0.5rem 0 0.75rem; font-size: 1.8rem; }
.product-overlay-price { font-family: var(--serif); font-size: 1.4rem; color: var(--green-700); margin-bottom: 1.1rem; }
.product-overlay-content > p { color: var(--ink-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.product-overlay-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--beige-300);
}
.product-overlay-meta strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}
.product-overlay-meta p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }
body.overlay-open { overflow: hidden; }
@media (max-width: 640px) {
  .product-overlay { padding: 1rem; }
  .product-overlay-body { grid-template-columns: 1fr; }
  .product-overlay-media { border-radius: var(--radius-xl) var(--radius-xl) 0 0; height: 200px; }
  .product-overlay-content { padding: 2rem; }
}

/* ── HOW IT WORKS ── */
.how { background: var(--beige-50); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--beige-300);
  border: 1.5px solid var(--beige-300);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.step {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}
.step-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--beige-200);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h4 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.75rem; color: var(--green-800); }
.step p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.7; }
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ── LOCATION / CONTACT ── */
.contact { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--ink-muted); margin-bottom: 2rem; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { color: var(--green-600); }
.contact-detail-text strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.2rem;
}
.contact-detail-text a, .contact-detail-text span {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.contact-map {
  
  overflow: hidden;
  height: 500px;
  position: relative;
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: none;
}
.map-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--ink-muted);
  
}
.map-pin { font-size: 3rem; }
.map-address { text-align: center; font-family: var(--sans); font-size: 0.85rem; line-height: 1.6; color: var(--ink-muted); }
.map-placeholder img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-map { height: auto; overflow: visible; padding: 2rem 1.5rem; }
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--green-700);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: var(--green-200); max-width: 480px; margin: 0 auto 2.5rem; font-size: 1.1rem; }
.cta-band .btn-light { background: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--green-900);
  color: var(--beige-300);
  padding: 5rem 0 2rem;
  letter-spacing: 0.05em;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--beige-100);
  margin-bottom: 1rem;
}
.footer-brand .logo em { font-style: italic; }
.footer-brand p { font-size: 1rem; color: #f6f6f6; line-height: 1.75; max-width: 280px; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem;;}
.footer-col ul a {
  font-size: 1rem;
  color: #f6f6f6;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--beige-200); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.footer-contact-item svg { color: var(--green-400); flex-shrink: 0; margin-top: 10px; }
.footer-contact-item span, .footer-contact-item a {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #f6f6f6;
  line-height: 1.6;
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--beige-200); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-family: var(--sans); font-size: 0.75rem; color: var(--green-600); }
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--green-600);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--green-300); }
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── INNER PAGE HERO ── */
.page-hero {
  background: var(--green-800);
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(90,158,110,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(207,192,160,0.08) 0%, transparent 50%);
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero .section-tag { color: var(--green-300); position: relative; margin-bottom: 1rem; display: block; }
.page-hero p { color: var(--green-300); max-width: 540px; margin: 1rem auto 0; position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--green-400);
  margin-top: 2rem;
  position: relative;
}
.breadcrumb a { color: var(--green-300); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
