/* ==========================================================================
   Diet Delights - Dt. Shatarupa Saha
   Theme: Soft Botanical Wellness
   ========================================================================== */

:root {
  /* Color tokens (from brief) */
  --bg: #FAF9F4;
  --bg-alt: #F2F4EC;
  --sage: #C8D5BD;
  --peach: #E8CFC3;
  --coral: #E98F86;
  --olive: #34483A;
  --ink: #30352F;
  --muted: #6D756C;
  --border: #E5E5DC;
  --white: #FFFFFF;

  /* Type */
  --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', 'Manrope', sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: clamp(0.72rem, 0.68rem + 0.2vw, 0.8rem);
  --fs-body: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  --fs-h4: clamp(1.15rem, 1.05rem + 0.4vw, 1.4rem);
  --fs-h3: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem);
  --fs-h2: clamp(1.8rem, 1.5rem + 1.4vw, 2.6rem);
  --fs-h1: clamp(2.1rem, 1.6rem + 2.4vw, 3.6rem);
  --fs-quote: clamp(1.3rem, 1.1rem + 1vw, 1.8rem);

  /* Spacing (fluid) */
  --space-xs: clamp(0.5rem, 0.45rem + 0.2vw, 0.75rem);
  --space-sm: clamp(0.9rem, 0.8rem + 0.4vw, 1.25rem);
  --space-md: clamp(1.5rem, 1.2rem + 1.2vw, 2.5rem);
  --space-lg: clamp(2.5rem, 1.8rem + 2.8vw, 4.5rem);
  --space-xl: clamp(3.5rem, 2.4rem + 4.4vw, 7rem);

  --container: min(1240px, 92vw);
  --radius-soft: 22px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 var(--space-sm); color: var(--olive); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
p { margin: 0 0 var(--space-sm); color: var(--ink); }
.container { width: var(--container); margin-inline: auto; }
.muted { color: var(--muted); }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--olive); color: var(--white);
  padding: 0.75em 1.25em; z-index: 999; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

/* Eyebrow label */
.eyebrow {
  font-family: var(--font-body); font-size: var(--fs-eyebrow); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral); font-weight: 700; display: inline-block;
  margin-bottom: var(--space-xs);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.95em 1.7em; border-radius: var(--radius-pill); font-weight: 700;
  text-decoration: none; font-size: 0.98rem; border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  cursor: pointer; min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--olive); color: var(--white); }
.btn-primary:hover { background: #263a2e; box-shadow: 0 10px 24px -12px rgba(52,72,58,0.55); }
.btn-secondary { background: transparent; color: var(--olive); border-color: var(--olive); }
.btn-secondary:hover { background: var(--olive); color: var(--white); }
.btn-whatsapp { background: var(--coral); color: var(--white); }
.btn-whatsapp:hover { background: #d97a70; box-shadow: 0 10px 24px -12px rgba(233,143,134,0.6); }
.btn-block { width: 100%; }

/* Section rhythm */
.section { padding: var(--space-xl) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: var(--space-lg); }
.section-head.center { margin-inline: auto; text-align: center; }

/* Botanical sprig divider - the signature element */
.sprig {
  display: block; margin: 0 auto var(--space-md); width: 46px; height: 46px;
  color: var(--sage);
}
.sprig path { stroke: currentColor; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(250,249,244,0.9);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 0.9rem; width: var(--container); margin-inline: auto;
}
.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; line-height: 1; }
.logo-img { width: 56px; height: 56px; border-radius: 50%; flex: none; object-fit: cover; cursor: pointer; transition: transform 0.3s var(--ease); }
.logo-img:hover { transform: scale(1.06); }
.logo-text { display: flex; flex-direction: column; align-items: flex-start; text-align: left; line-height: 1.3; gap: 0.05rem; }
.logo-word { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 1rem + 0.5vw, 1.35rem); color: var(--olive); letter-spacing: 0.02em; }
.logo-sub { font-size: 0.68rem; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }
.logo-tagline { font-style: italic; font-size: 0.7rem; color: var(--muted); margin-top: 0.1rem; }
@media (max-width: 420px) { .logo-tagline { display: none; } }
@media (max-width: 340px) { .logo-sub { display: none; } }

.main-nav { display: none; }
.main-nav ul { list-style: none; display: flex; gap: var(--space-md); margin: 0; padding: 0; }
.main-nav a { text-decoration: none; font-weight: 600; font-size: 0.95rem; color: var(--ink); position: relative; padding-bottom: 4px; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--coral);
  transition: right 0.3s var(--ease);
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }

.header-cta { display: none; }

.hamburger {
  display: inline-flex; flex-direction: column; gap: 5px; background: none; border: none;
  padding: 10px; cursor: pointer; min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--olive); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; top: 0; background: var(--bg); z-index: 99;
  display: flex; flex-direction: column; padding: 6rem 8vw 2rem;
  transform: translateY(-100%); transition: transform 0.4s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-nav ul a { text-decoration: none; font-family: var(--font-display); font-size: 1.6rem; color: var(--olive); }
.mobile-nav .btn { margin-top: 2rem; width: 100%; box-sizing: border-box; }

/* ---------- Hero ---------- */
.hero { padding-top: var(--space-lg); padding-bottom: var(--space-lg); position: relative; overflow: hidden; }
.hero-grid { display: grid; gap: var(--space-lg); align-items: center; }
.hero-copy { position: relative; z-index: 2; order: 2; }
.hero-portrait { position: relative; order: 1; }
.hero h1 { margin-bottom: var(--space-sm); }
.hero-lede { font-size: 1.08rem; max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: var(--space-md); }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin-top: var(--space-lg);
  padding-top: var(--space-md); border-top: 1px solid var(--border);
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--muted); font-weight: 600; }
.trust-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex: none; }

.portrait-blob {
  position: relative; aspect-ratio: 4/5; border-radius: 44% 56% 62% 38% / 45% 40% 60% 55%;
  overflow: hidden; background: var(--sage);
  box-shadow: 0 30px 60px -30px rgba(52,72,58,0.35);
}
.portrait-blob img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.portrait-tag {
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 0.6em 1.3em; font-size: 0.82rem; font-weight: 700; color: var(--olive);
  box-shadow: 0 12px 24px -16px rgba(0,0,0,0.2); white-space: nowrap;
}

/* ---------- Meet Shatarupa / two-col ---------- */
.two-col { display: grid; gap: var(--space-lg); align-items: center; }
.two-col img { border-radius: var(--radius-soft); }
.pull-quote {
  font-family: var(--font-display); font-size: var(--fs-quote); color: var(--olive);
  border-left: 3px solid var(--coral); padding-left: 1.1em; margin: var(--space-md) 0; font-style: italic;
}

/* ---------- Interactive: what would you like help with ---------- */
.help-tabs { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: var(--space-md); }
.help-tab {
  border: 1.5px solid var(--border); background: var(--white); border-radius: var(--radius-pill);
  padding: 0.7em 1.3em; font-weight: 700; font-size: 0.9rem; cursor: pointer; color: var(--ink);
  transition: all 0.25s var(--ease); min-height: 44px;
}
.help-tab[aria-selected="true"] { background: var(--olive); border-color: var(--olive); color: var(--white); }
.help-panel {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-soft);
  padding: var(--space-md); display: grid; gap: var(--space-md); align-items: center;
}
.help-panel[hidden] { display: none; }
.help-panel-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-soft);
  padding: var(--space-md); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -28px rgba(52,72,58,0.3); }
.card-icon {
  width: 46px; height: 46px; border-radius: 14px; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-sm); color: var(--olive);
}
.card h3 { font-size: var(--fs-h4); margin-bottom: 0.4em; }
.card a.card-link { font-weight: 700; color: var(--coral); text-decoration: none; font-size: 0.9rem; }

/* ---------- Approach steps ---------- */
.approach-list { display: grid; gap: var(--space-md); counter-reset: step; }
.approach-item { display: flex; gap: 1.2rem; }
.approach-num {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--sage); font-weight: 700;
  flex: none; width: 3ch;
}
.approach-item h4 { margin-bottom: 0.25em; }

/* ---------- Timeline ---------- */
.timeline { display: flex; flex-direction: column; gap: 0; border-left: 2px solid var(--border); margin-left: 8px; }
.timeline-item { position: relative; padding: 0 0 var(--space-md) 1.6rem; }
.timeline-item::before {
  content: ""; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--coral); border: 3px solid var(--bg);
}
.timeline-year { font-size: 0.82rem; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Thoughts / blog cards ---------- */
.thought-card { display: flex; flex-direction: column; }
.thought-media { border-radius: var(--radius-soft); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-alt); margin-bottom: var(--space-sm); }
.thought-media img { width: 100%; height: 100%; object-fit: cover; }
.thought-cat { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--olive); }
.thought-date { font-size: 0.8rem; color: var(--muted); }

/* ---------- Social ---------- */
.social-grid { display: grid; gap: var(--space-sm); grid-template-columns: repeat(2,1fr); }
.social-card {
  border-radius: var(--radius-soft); overflow: hidden; position: relative; aspect-ratio: 1/1;
  background: var(--bg-alt); text-decoration: none; display: block;
}
.social-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.social-card:hover img { transform: scale(1.06); }
.social-card .social-tag {
  position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,0.92); border-radius: var(--radius-pill);
  padding: 0.3em 0.8em; font-size: 0.72rem; font-weight: 700; color: var(--olive);
}
.social-links-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: var(--space-md); }

/* ---------- Testimonials ---------- */
.testimonial-track { display: grid; gap: var(--space-md); }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-soft); padding: var(--space-md); }
.testimonial-name { font-weight: 700; color: var(--olive); margin-top: var(--space-sm); }
.testimonial-loc { font-size: 0.82rem; color: var(--muted); }

/* ---------- Form ---------- */
.form-grid { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.field label { font-weight: 700; font-size: 0.88rem; color: var(--olive); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--border); border-radius: 12px; padding: 0 1em; font-family: var(--font-body);
  font-size: 1rem; background: var(--white); color: var(--ink);
  box-sizing: border-box; width: 100%; height: 50px; line-height: 48px;
}
.field select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2334483A' stroke-width='2'%3E%3Cpath d='M5 8l5 5 5-5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1em center; background-size: 16px;
  padding-right: 2.6em;
}
.field textarea { height: auto; min-height: 120px; line-height: 1.5; padding-block: 0.85em; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--olive); }
.field-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; align-items: end; }
.field-row-name { display: grid; gap: 1.1rem; grid-template-columns: 1fr; align-items: end; }
@media (min-width: 480px) { .field-row-name { grid-template-columns: 110px 1fr; } }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem; color: var(--muted); }
.consent input { margin-top: 3px; }
.form-status { font-size: 0.9rem; padding: 0.9em 1.1em; border-radius: 12px; display: none; }
.form-status.show { display: block; }
.form-status.success { background: #E9F0E4; color: var(--olive); }
.form-status.error { background: #FBEAE7; color: #A6392E; }

/* ---------- Contact / map ---------- */
.contact-info-list { display: grid; gap: var(--space-sm); }
.contact-info-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.contact-info-item .ci-icon { color: var(--olive); flex: none; margin-top: 2px; }
.map-embed { border-radius: var(--radius-soft); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/10; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Testimonials (expandable cards) ---------- */
.testi-grid { display: grid; gap: var(--space-sm); grid-template-columns: 1fr; }
.testi-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-soft);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.testi-card:hover { box-shadow: 0 16px 34px -26px rgba(52,72,58,0.35); }
.testi-toggle {
  display: block; width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: var(--space-sm) var(--space-md); font-family: var(--font-body); color: var(--ink);
}
.testi-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--olive); background: var(--bg-alt); border-radius: var(--radius-pill); padding: 0.3em 0.8em; margin-bottom: 0.6em;
}
.testi-excerpt, .testi-full { font-style: italic; color: var(--ink); margin: 0 0 0.8em; line-height: 1.6; }
.testi-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.4em; }
.testi-name { font-weight: 700; color: var(--olive); font-size: 0.92rem; font-style: normal; }
.testi-result { font-size: 0.82rem; color: var(--coral); font-weight: 700; font-style: normal; }
.testi-more { font-size: 0.82rem; font-weight: 700; color: var(--coral); }
.testi-card.is-open .testi-more::after { content: ""; }

/* Filter tabs reuse .help-tab styling */
.testi-filter-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--space-md); justify-content: center; }

/* ---------- Testimonials carousel (v2) ---------- */
.testi-carousel { position: relative; max-width: 720px; margin-inline: auto; outline: none; }
.testi-viewport { overflow: hidden; border-radius: var(--radius-soft); transition: height 0.4s var(--ease); }
.testi-track { display: flex; transition: transform 0.45s var(--ease); align-items: flex-start; }
.testi-slide { flex: 0 0 100%; min-width: 0; display: flex; justify-content: center; padding: 2px 2px; box-sizing: border-box; }

.testi-card-v2 {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-soft);
  width: 100%; overflow: hidden; box-shadow: 0 16px 34px -28px rgba(52,72,58,0.35);
}
.testi-card-v2.has-photo { max-width: 480px; }
.testi-card-v2.text-only { max-width: 420px; margin-inline: auto; }
.testi-photo-wrap { aspect-ratio: 1/1; background: var(--bg-alt); overflow: hidden; }
.testi-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; display: block; }
.testi-card-body { padding: var(--space-md); }
.testi-card-v2.text-only .testi-card-body { padding: var(--space-sm) var(--space-md); }
.testi-card-v2.text-only .testi-excerpt,
.testi-card-v2.text-only .testi-full { font-size: 0.96rem; }

.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--white); color: var(--olive); display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 10px 24px -14px rgba(52,72,58,0.4);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.testi-arrow:hover { background: var(--olive); color: var(--white); transform: translateY(-50%) scale(1.06); }
.testi-arrow.prev { left: -6px; }
.testi-arrow.next { right: -6px; }
.testi-arrow[hidden] { display: none; }

.testi-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: var(--space-sm); }
.testi-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--border); padding: 0; cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.testi-dots button[aria-current="true"] { background: var(--coral); transform: scale(1.3); }
.testi-dots[hidden] { display: none; }
.testi-counter {
  display: block; text-align: center; margin-top: var(--space-sm); font-size: 0.82rem; font-weight: 700;
  color: var(--muted); letter-spacing: 0.04em;
}
.testi-counter[hidden] { display: none; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; gap: var(--space-md); grid-template-columns: repeat(2, 1fr); }
.gallery-cat-card {
  border: 1px solid var(--border); background: var(--white); border-radius: var(--radius-soft);
  padding: 0.6rem; cursor: pointer; text-align: left; display: flex; flex-direction: column; gap: 0.7rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gallery-cat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -28px rgba(52,72,58,0.32); }
.gallery-cat-cover { display: block; aspect-ratio: 1/1; border-radius: 16px; overflow: hidden; background: var(--bg-alt); }
.gallery-cat-cover img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; transition: transform 0.4s var(--ease); }
.gallery-cat-card:hover .gallery-cat-cover img { transform: scale(1.06); }
.gallery-cat-info { display: flex; flex-direction: column; gap: 0.3rem; padding: 0 0.3rem 0.3rem; }
.gallery-cat-label { font-weight: 700; color: var(--olive); font-size: 0.95rem; }
.gallery-cat-count { font-size: 0.78rem; color: var(--muted); }

.gallery-lightbox {
  position: fixed; inset: 0; width: 100%; height: 100vh; height: 100dvh; z-index: 9985;
  background: rgba(24,28,22,0.96);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  opacity: 0; pointer-events: none; transform: scale(0.96);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.gallery-lightbox.open { opacity: 1; pointer-events: all; transform: scale(1); }
.gallery-lightbox-stage { position: relative; width: min(92vw, 900px); max-height: 78vh; display: flex; flex-direction: column; align-items: center; }
.gallery-lightbox-img {
  max-width: 100%; max-height: 68vh; width: auto; height: auto; object-fit: contain; border-radius: 14px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6); cursor: zoom-out;
}
.gallery-lightbox-caption { color: #E7ECE3; font-size: 0.9rem; margin-top: 0.9rem; text-align: center; max-width: 60ch; }
.gallery-lightbox-caption[hidden] { display: none; }
.gallery-lightbox-label {
  position: fixed; top: 20px; left: 20px; color: #E7ECE3; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.04em; opacity: 0.85;
}
.gallery-lightbox-counter {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); color: #E7ECE3; font-size: 0.82rem;
  font-weight: 700; background: rgba(255,255,255,0.1); padding: 0.35em 0.9em; border-radius: var(--radius-pill);
}
.gallery-lightbox-close {
  position: fixed; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); color: #fff;
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.gallery-lightbox-close:hover { background: rgba(255,255,255,0.25); transform: scale(1.08); }
.gallery-lightbox-arrow {
  position: fixed; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.gallery-lightbox-arrow:hover { background: rgba(255,255,255,0.25); }
.gallery-lightbox-arrow.gl-prev { left: 14px; }
.gallery-lightbox-arrow.gl-next { right: 14px; }
.gallery-lightbox-arrow[hidden] { display: none; }
@media (prefers-reduced-motion: reduce) {
  .gallery-lightbox, .gallery-cat-card, .gallery-cat-cover img { transition: none; }
}

/* ---------- Universal photo-frame fallback (site-wide) ----------
   Any image wrapper marked with [data-img-frame] automatically gets a
   graceful, on-brand fallback if its photo is ever missing/broken - instead
   of a browser broken-image icon. This applies to every photo on the site,
   present and future (hero, about, gallery, testimonials, thoughts, social),
   with zero extra CSS/JS needed per new photo. See js/main.js
   (initPhotoResilience) for how it's wired. */
[data-img-frame].img-frame-empty {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 160px; background: linear-gradient(160deg, var(--bg-alt), #EEF2E9);
}
[data-img-frame].img-frame-empty::after {
  content: "🖼"; font-size: 1.8rem; opacity: 0.4;
}
[data-img-frame].img-frame-empty > img { display: none; }
[data-img-fallback-slot] { color: var(--muted); font-size: 0.85rem; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; z-index: 95; right: 16px;
  bottom: calc(88px + env(safe-area-inset-bottom));
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--olive); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1; cursor: pointer;
  box-shadow: 0 10px 24px -10px rgba(52,72,58,0.55);
  opacity: 0; transform: translateY(12px) scale(0.85); pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s;
}
.back-to-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.back-to-top:hover { background: #263a2e; transform: translateY(-3px) scale(1.05); }
@media (prefers-reduced-motion: reduce) { .back-to-top { transition: opacity 0.2s; } }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; padding: 1.1em 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-weight: 700;
  font-family: var(--font-display); font-size: 1.05rem; color: var(--olive);
}
.faq-q .plus { transition: transform 0.3s var(--ease); flex: none; }
.faq-q[aria-expanded="true"] .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding-bottom: 1.1em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--olive); color: #E7ECE3; padding: var(--space-xl) 0 calc(var(--space-lg) + 70px); }
.site-footer a { text-decoration: none; color: #E7ECE3; }
.footer-grid { display: grid; gap: var(--space-lg); }
.footer-brand .logo-word { color: #fff; }
.footer-brand .logo-sub { color: #B9C6B4; }
.footer-brand .logo-tagline { color: #C7D2C1; }
.footer-logo-img { width: 64px; height: 64px; border-radius: 50%; flex: none; cursor: pointer; transition: transform 0.3s var(--ease); }
.footer-logo-img:hover { transform: scale(1.06); }

/* ---------- Site credit (404 page standalone use; shared .credit-link/.credit-logo below) ---------- */
.site-credit { text-align: center; padding-top: 0.9rem; }

/* ---------- Logo click-to-expand overlay ---------- */
.logo-expand-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh; z-index: 9990;
  background: rgba(30,34,29,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
.logo-expand-overlay.open { opacity: 1; pointer-events: all; }
.logo-expand-img {
  width: min(72vw, 420px); height: min(72vw, 420px); border-radius: 50%; object-fit: cover;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.55);
  transform: scale(0.55) rotate(-8deg);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.logo-expand-overlay.open .logo-expand-img { transform: scale(1) rotate(0deg); }
.logo-expand-close {
  position: fixed; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); color: #fff;
  font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.logo-expand-close:hover { background: rgba(255,255,255,0.25); transform: scale(1.08); }
@media (prefers-reduced-motion: reduce) {
  .logo-expand-overlay, .logo-expand-img { transition: none; }
}
.footer-tag { margin-top: var(--space-sm); color: #C7D2C1; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-body); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15); margin-top: var(--space-lg); padding-top: var(--space-md);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem; text-align: center;
  font-size: 0.82rem; color: #B9C6B4;
}
.footer-copyright { order: 1; }
.footer-legal { order: 2; }
.footer-credit {
  order: 3; display: inline-flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.4rem; row-gap: 0.3rem;
}
.credit-phrase { color: #B9C6B4; }
.credit-link { display: inline-flex; align-items: center; gap: 0.4rem; text-decoration: none; color: #C7D2C1; font-weight: 700; transition: color 0.2s; }
.credit-link:hover { color: #fff; }
.credit-logo { width: 24px; height: 24px; border-radius: 6px; object-fit: cover; flex: none; display: block; }

/* ---------- Mobile sticky CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--white); border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 0.5rem;
  padding: 0.6rem max(0.6rem, env(safe-area-inset-left)) calc(0.6rem + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 24px -18px rgba(0,0,0,0.2);
}
.sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 0.35rem; text-decoration: none;
  border-radius: 12px; font-weight: 700; font-size: 0.78rem; padding: 0.6em 0.3em; height: 46px;
  white-space: nowrap; overflow: hidden;
}
.sticky-cta a svg { flex: none; width: 16px; height: 16px; }
.sticky-cta a span { overflow: hidden; text-overflow: ellipsis; }
.sticky-cta .sc-whatsapp { background: #EAF3E7; color: var(--olive); }
.sticky-cta .sc-call { background: var(--bg-alt); color: var(--olive); }
.sticky-cta .sc-book { background: var(--olive); color: #fff; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.82rem; color: var(--muted); padding-top: var(--space-md); }
.breadcrumbs a { text-decoration: none; color: var(--muted); }
.breadcrumbs a:hover { color: var(--olive); }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* Reveal-on-scroll */
/* Content is visible by default - never hidden behind a scroll-triggered
   animation, so a slow/misfiring observer can never blank out a page.
   Where JS successfully adds .in-view, a subtle one-time fade-up plays;
   otherwise content simply shows immediately, as if reveal weren't there. */
.reveal { opacity: 1; }
.reveal.pre-animate { opacity: 0; transform: translateY(18px); }
.reveal.in-view { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
