/* ==========================================================================
   Dr. Ria Thukral's Homoeopathy Clinic — Stylesheet
   Design system: sage / beige / soft gold, warm editorial serif + Karla body
   ========================================================================== */

/* -------------------- 1. Design tokens -------------------- */
:root {
  /* Colour palette */
  --sage-900: #2f3b2a;   /* deep forest text on light */
  --sage-700: #4a5d45;   /* headings, primary text accent */
  --sage-600: #5f7a56;   /* primary interactive */
  --sage-500: #7c9473;   /* primary sage */
  --sage-300: #a8bc9e;   /* soft sage */
  --sage-100: #e3ead e0; /* fallback, overridden below */
  --sage-100: #e6ecdf;
  --gold-600: #b3894a;
  --gold-500: #c6a15b;
  --gold-300: #ddc088;
  --beige-000: #fbf9f4;  /* card / surface */
  --beige-100: #f4efe3;  /* page background */
  --beige-200: #eae2d0;  /* deeper section background */
  --white: #ffffff;
  --charcoal: #2b2b26;
  --ink-soft: #55564c;
  --line: #e0d9c8;
  --shadow-color: 90 70% 10%;

  /* Typography */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Karla", "Helvetica Neue", Arial, sans-serif;
  --font-utility: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Type scale */
  --step-1: clamp(0.85rem, 0.8rem + 0.2vw, 0.95rem);
  --step0: clamp(1rem, 0.95rem + 0.2vw, 1.05rem);
  --step1: clamp(1.15rem, 1.05rem + 0.4vw, 1.3rem);
  --step2: clamp(1.4rem, 1.2rem + 0.8vw, 1.75rem);
  --step3: clamp(1.8rem, 1.5rem + 1.4vw, 2.5rem);
  --step4: clamp(2.4rem, 1.9rem + 2.2vw, 3.6rem);
  --step5: clamp(3rem, 2.2rem + 3.6vw, 5rem);

  /* Layout */
  --max-width: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;
}

/* -------------------- 2. Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html, body { height: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--step0);
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--beige-100);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--sage-900);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
p { color: var(--ink-soft); }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2.5px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--sage-700);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

/* -------------------- 3. Type utilities -------------------- */
.eyebrow {
  font-family: var(--font-utility);
  font-size: var(--step-1);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-600);
  display: inline-block;
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--step3); margin-top: 0.6rem; }
.section-head p { margin-top: 1rem; font-size: var(--step1); }

.section-pad { padding-block: clamp(4rem, 9vw, 7.5rem); }
.bg-beige { background: var(--beige-200); }
.bg-white { background: var(--white); }
.bg-sage {
  background: linear-gradient(160deg, var(--sage-700), var(--sage-900));
  color: var(--beige-100);
}
.bg-sage h2, .bg-sage h3, .bg-sage .eyebrow { color: var(--beige-000); }
.bg-sage p { color: #d9e2d3; }

/* -------------------- 4. Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-utility);
  font-size: var(--step-1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 1.9rem;
  border-radius: var(--radius-pill);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage-700);
  color: var(--beige-000);
  box-shadow: 0 15px 35px -12px hsl(var(--shadow-color) / 0.5);
  font-weight: 600;
}
.btn-primary:hover { 
  background: var(--sage-900); 
  transform: translateY(-3px);
  box-shadow: 0 20px 45px -15px hsl(var(--shadow-color) / 0.6);
}
.btn-primary:active { transform: translateY(-1px); }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 15px 35px -12px hsl(var(--shadow-color) / 0.5); }
  50% { box-shadow: 0 15px 35px -12px hsl(var(--shadow-color) / 0.7); }
}
.btn-secondary {
  background: transparent;
  color: var(--sage-700);
  border: 1.5px solid var(--sage-500);
}
.btn-secondary:hover { background: var(--sage-700); color: var(--beige-000); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold-500);
  color: var(--sage-900);
}
.btn-gold:hover { background: var(--gold-600); transform: translateY(-2px); }
.btn-ghost-light {
  border: 1.5px solid rgba(251,249,244,0.5);
  color: var(--beige-000);
}
.btn-ghost-light:hover { background: rgba(251,249,244,0.12); }
.btn-sm { padding: 0.7rem 1.3rem; font-size: 0.78rem; }
.btn-block { width: 100%; }

/* -------------------- 5. Header / Nav -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 249, 244, 0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px -20px hsl(var(--shadow-color) / 0.5);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.05rem;
  transition: padding 0.4s var(--ease);
}
.site-header.is-scrolled .nav-row { padding-block: 0.7rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { height: 42px; width: auto; transition: height 0.4s var(--ease); }
.site-header.is-scrolled .brand img { height: 34px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--sage-900);
}
.brand-text span {
  font-family: var(--font-utility);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.6vw, 1.8rem);
  font-family: var(--font-utility);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}
.nav-links a {
  position: relative;
  padding-block: 0.3rem;
  color: var(--sage-900);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.is-active { color: var(--gold-600); }
.nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; background: var(--gold-600); }

.nav-cta { display: flex; align-items: center; gap: 0.8rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--sage-900); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------- 6. Hero -------------------- */
.hero {
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.hero-copy h1 {
  font-size: var(--step5);
  margin-top: 1rem;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--sage-600);
}
.hero-copy p.lede {
  margin-top: 1.4rem;
  font-size: var(--step1);
  max-width: 46ch;
  color: var(--ink-soft);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}
.hero-trust {
  display: flex;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-trust div strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step2);
  color: var(--sage-700);
}
.hero-trust div span {
  font-family: var(--font-utility);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-blob {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 4 / 5;
}
.hero-blob svg.blob-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: var(--sage-300);
  opacity: 0.55;
  animation: blobShift 14s var(--ease) infinite alternate;
}
@keyframes blobShift {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(6deg) scale(1.03); }
}
.hero-blob img {
  position: absolute;
  inset: 5% 7%;
  width: 86%;
  height: 90%;
  object-fit: cover;
  object-position: center center;
  border-radius: 44% 56% 52% 48% / 55% 48% 52% 45%;
  box-shadow: 0 30px 60px -25px hsl(var(--shadow-color) / 0.5);
  animation: heroFloat 6s var(--ease) infinite alternate;
}
@keyframes heroFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(12px); }
}
.hero-badge {
  position: absolute;
  bottom: -6%;
  left: -8%;
  background: var(--beige-000);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 20px 40px -22px hsl(var(--shadow-color) / 0.4);
  max-width: 210px;
}
.hero-badge .leaf-icon { width: 30px; height: 30px; color: var(--sage-600); flex-shrink: 0; }
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 0.95rem; color: var(--sage-900); }
.hero-badge span { font-size: 0.76rem; color: var(--ink-soft); }

.leaf-divider {
  width: 130px;
  height: 34px;
  color: var(--sage-500);
  margin-inline: auto;
}
.leaf-divider path { stroke-dasharray: 400; stroke-dashoffset: 400; animation: drawLeaf 1.6s var(--ease) forwards; }
@keyframes drawLeaf { to { stroke-dashoffset: 0; } }

/* -------------------- 7. About -------------------- */
.about .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.about-visual { position: relative; }
.about-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.about-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.about-carousel-slide.is-active {
  opacity: 1;
}
.about-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.about-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.about-carousel-dot.is-active {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.3);
}
.about-carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.about-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, hsl(var(--shadow-color) / 0.28));
}
.about-ring {
  position: absolute;
  top: -8%; right: -12%;
  width: 46%;
  aspect-ratio: 1;
  border: 1.5px solid var(--gold-300);
  border-radius: 50%;
  z-index: -1;
}
.about-cred {
  position: absolute;
  bottom: 6%;
  right: -9%;
  background: var(--sage-700);
  color: var(--beige-000);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  max-width: 200px;
  box-shadow: 0 20px 44px -20px hsl(var(--shadow-color) / 0.55);
}
.about-cred strong { font-family: var(--font-display); font-size: 1.4rem; display: block; }
.about-cred span { font-size: 0.75rem; letter-spacing: 0.03em; color: #d9e2d3; }

.about-copy .eyebrow { margin-bottom: 0.4rem; }
.about-copy h2 { font-size: var(--step3); margin-bottom: 1.1rem; }
.about-copy p { margin-bottom: 1rem; }
.about-copy p:last-of-type { margin-bottom: 0; }
.about-quals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.4rem 0 1.8rem;
}
.about-quals li {
  font-family: var(--font-utility);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  background: var(--beige-200);
  border: 1px solid var(--line);
  color: var(--sage-700);
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about-stats strong {
  font-family: var(--font-display);
  font-size: var(--step3);
  color: var(--sage-700);
  display: block;
}
.about-stats span {
  font-family: var(--font-utility);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* -------------------- 8. Feature / Why choose cards -------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.feature-card {
  background: var(--beige-000);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.6rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -24px hsl(var(--shadow-color) / 0.45);
  border-color: var(--sage-300);
}
.feature-icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: var(--beige-200);
  border-radius: 50%;
  color: var(--sage-600);
  margin-bottom: 1.1rem;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.92rem; }

/* -------------------- 9. Conditions -------------------- */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}
.condition-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.5rem;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.condition-card:hover { transform: translateY(-5px); box-shadow: 0 20px 38px -24px hsl(var(--shadow-color) / 0.4); }
.condition-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--sage-300), var(--sage-500));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.condition-icon svg { width: 22px; height: 22px; }
.condition-card h3 { font-size: 1rem; }
.condition-card p { font-size: 0.88rem; flex-grow: 1; }
.condition-card .card-link {
  font-family: var(--font-utility);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.condition-card .card-link svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease); }
.condition-card:hover .card-link svg { transform: translateX(4px); }
.conditions-more { text-align: center; margin-top: 2.6rem; }

/* -------------------- 10. Process -------------------- */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  position: relative;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 34px; left: 6%; right: 6%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--sage-300) 0 10px, transparent 10px 18px);
}
.process-step { position: relative; text-align: center; padding-top: 0; }
.process-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--beige-000);
  border: 1.5px solid var(--sage-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--sage-700);
  margin: 0 auto 1.3rem;
  position: relative;
  z-index: 1;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}
.process-step:hover .process-num { background: var(--sage-700); color: var(--beige-000); transform: scale(1.06); }
.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.86rem; }

/* -------------------- 11. Testimonials -------------------- */
.testimonial-wrap { position: relative; max-width: 780px; margin-inline: auto; }
.testimonial-track { overflow: hidden; }
.testimonial-slides { display: flex; transition: transform 0.6s var(--ease); }
.testimonial-slide { min-width: 100%; padding: 0 clamp(0.5rem, 3vw, 2rem); text-align: center; }
.stars { display: flex; justify-content: center; gap: 0.25rem; color: var(--gold-500); margin-bottom: 1.4rem; }
.stars svg { width: 18px; height: 18px; }
.testimonial-slide blockquote {
  font-family: var(--font-display);
  font-size: var(--step2);
  color: var(--sage-900);
  line-height: 1.45;
  font-weight: 500;
}
.testimonial-slide footer { margin-top: 1.6rem; }
.testimonial-slide footer strong { display: block; font-family: var(--font-utility); font-size: 0.9rem; letter-spacing: 0.02em; }
.testimonial-slide footer span { font-size: 0.8rem; color: var(--ink-soft); }
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2.4rem;
}
.testimonial-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--sage-300);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-700);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.testimonial-arrow:hover { background: var(--sage-700); color: var(--beige-000); }
.testimonial-arrow svg { width: 16px; height: 16px; }
.testimonial-dots { display: flex; gap: 0.5rem; }
.testimonial-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage-300);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonial-dots button.is-active { background: var(--gold-500); transform: scale(1.3); }

/* -------------------- 12. Blog -------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 44px -26px hsl(var(--shadow-color) / 0.4); }
.blog-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(150deg, var(--sage-300), var(--sage-600));
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem;
  overflow: hidden;
}
.blog-thumb svg { width: 40%; height: 40%; color: rgba(255,255,255,0.35); position: absolute; right: -5%; bottom: -10%; }
.blog-cat {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.9);
  color: var(--sage-700);
  font-family: var(--font-utility);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}
.blog-body { padding: 1.5rem 1.4rem 1.7rem; }
.blog-meta {
  display: flex;
  gap: 0.9rem;
  font-family: var(--font-utility);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.blog-body h3 { font-size: 1.12rem; margin-bottom: 0.6rem; }
.blog-body p { font-size: 0.88rem; margin-bottom: 1.1rem; }
.blog-body .card-link {
  font-family: var(--font-utility);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.blog-body .card-link svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease); }
.blog-card:hover .card-link svg { transform: translateX(4px); }
.blog-cta { text-align: center; margin-top: 2.6rem; }

/* -------------------- 13. FAQ -------------------- */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--step1);
  color: var(--sage-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--sage-300);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--sage-600);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }
details[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item .faq-answer {
  padding: 0 0 1.7rem;
  max-width: 62ch;
}
.faq-item .faq-answer p { font-size: 0.95rem; }

/* -------------------- 14. Appointment / Contact -------------------- */
.appointment .container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.appointment-info h2 { font-size: var(--step3); margin-bottom: 1rem; }
.appointment-info > p { margin-bottom: 2rem; max-width: 42ch; }
.info-list { display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2.2rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(251,249,244,0.12);
  border: 1px solid rgba(251,249,244,0.3);
  display: flex; align-items: center; justify-content: center;
}
.info-ico svg { width: 19px; height: 19px; }
.info-list strong { display: block; font-family: var(--font-utility); font-size: 0.85rem; letter-spacing: 0.02em; }
.info-list span { font-size: 0.86rem; color: #d9e2d3; }
.timing-card {
  background: rgba(251,249,244,0.08);
  border: 1px solid rgba(251,249,244,0.22);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
}
.timing-card h4 { color: var(--beige-000); font-size: 0.9rem; margin-bottom: 0.9rem; font-family: var(--font-utility); letter-spacing: 0.04em; text-transform: uppercase; }
.timing-row { display: flex; justify-content: space-between; font-size: 0.86rem; padding: 0.4rem 0; color: #d9e2d3; border-bottom: 1px dashed rgba(251,249,244,0.18); }
.timing-row:last-child { border-bottom: none; }
.timing-row span:last-child { color: var(--beige-000); font-weight: 600; }

.appointment-form {
  background: var(--beige-000);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--charcoal);
  box-shadow: 0 34px 70px -30px hsl(var(--shadow-color) / 0.6);
}
.appointment-form h3 { font-size: 1.3rem; margin-bottom: 0.3rem; color: var(--sage-900); }
.appointment-form > p { font-size: 0.9rem; margin-bottom: 1.6rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-utility); font-size: 0.76rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--sage-700); }
.form-field input, .form-field select, .form-field textarea {
  border: 1.4px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  background: var(--white);
  font-size: 0.92rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--sage-500);
  box-shadow: 0 0 0 4px rgba(124,148,115,0.15);
  outline: none;
}
.radio-group { display: flex; gap: 0.8rem; }
.radio-pill {
  flex: 1;
  border: 1.4px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem;
  text-align: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  position: relative;
}
.radio-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-pill:has(input:checked) { border-color: var(--sage-600); background: var(--beige-200); color: var(--sage-700); font-weight: 600; }
.form-submit { margin-top: 1.6rem; }
.form-note { font-size: 0.76rem; color: var(--ink-soft); margin-top: 0.9rem; text-align: center; }
.form-success {
  display: none;
  align-items: center;
  gap: 0.9rem;
  background: var(--beige-200);
  border: 1px solid var(--sage-300);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--sage-700);
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Form field error states */
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #b2483f;
  box-shadow: 0 0 0 4px rgba(178,72,63,0.1);
}
.field-error {
  display: none;
  font-size: 0.76rem;
  color: #b2483f;
  margin-top: 0.15rem;
}
.form-field.has-error .field-error { display: block; }

/* -------------------- 15. Map / contact strip -------------------- */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 21/8;
  background: var(--beige-200);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) sepia(0.08); }
.map-fallback { text-align: center; color: var(--ink-soft); font-size: 0.85rem; padding: 1rem; }

.social-row { display: flex; gap: 0.8rem; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-700);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.social-row a:hover { background: var(--sage-700); color: var(--beige-000); border-color: var(--sage-700); }
.social-row svg { width: 17px; height: 17px; }

/* -------------------- 16. CTA banner -------------------- */
.cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sage-600), var(--sage-900));
  padding: clamp(2.4rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(251,249,244,0.15);
  right: -80px; top: -120px;
}
.cta-banner h2 { color: var(--beige-000); font-size: var(--step3); max-width: 22ch; position: relative; }
.cta-banner p { color: #d9e2d3; margin-top: 0.6rem; max-width: 40ch; position: relative; }
.cta-actions { display: flex; gap: 1rem; position: relative; flex-wrap: wrap; }

/* -------------------- 17. Footer -------------------- */
.site-footer { background: var(--sage-900); color: #cdd8c6; }
.footer-top {
  padding-block: clamp(3rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
}
.footer-brand .brand-text strong { color: var(--beige-000); }
.footer-brand img { height: 44px; margin-bottom: 0.9rem; }
.footer-brand p { color: #b7c4ae; font-size: 0.9rem; margin: 0.9rem 0 1.3rem; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-utility);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--beige-000);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.9rem; color: #b7c4ae; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold-300); }
.footer-newsletter p { font-size: 0.88rem; color: #b7c4ae; margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: 0.6rem; }
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(251,249,244,0.25);
  background: rgba(251,249,244,0.06);
  color: var(--beige-000);
  font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: #93a48a; }
.newsletter-form button {
  background: var(--gold-500);
  color: var(--sage-900);
  border-radius: 50%;
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease);
}
.newsletter-form button:hover { background: var(--gold-600); }
.newsletter-form svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid rgba(251,249,244,0.12);
  padding-block: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.footer-legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-legal a { color: #93a48a; }
.footer-legal a:hover { color: var(--gold-300); }
.footer-disclaimer {
  font-size: 0.76rem;
  color: #8a9982;
  border-top: 1px solid rgba(251,249,244,0.08);
  padding-top: 1.2rem;
  margin-top: 0.2rem;
  line-height: 1.6;
}

/* -------------------- 18. Floating widgets -------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #3f6b46;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 32px -14px hsl(var(--shadow-color) / 0.55);
  z-index: 400;
  transition: transform 0.3s var(--ease);
  animation: floatPulse 3.4s ease-in-out infinite;
}
.floating-whatsapp:hover { transform: scale(1.08); }
.floating-whatsapp svg { width: 27px; height: 27px; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 16px 32px -14px hsl(var(--shadow-color) / 0.55), 0 0 0 0 rgba(63,107,70,0.4); }
  50% { box-shadow: 0 16px 32px -14px hsl(var(--shadow-color) / 0.55), 0 0 0 10px rgba(63,107,70,0); }
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--beige-000);
  border: 1px solid var(--line);
  color: var(--sage-700);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 32px -16px hsl(var(--shadow-color) / 0.45);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  z-index: 400;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top svg { width: 18px; height: 18px; }

/* -------------------- 19. Scroll reveal -------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.34s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.42s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.5s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.58s; }

/* -------------------- 19b. Gallery -------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.span-2 { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 60%, hsl(var(--shadow-color) / 0.35));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute;
  left: 0.9rem; bottom: 0.8rem;
  color: var(--beige-000);
  font-family: var(--font-utility);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

.gallery-item.is-placeholder {
  border: 1.5px dashed var(--sage-300);
  background: var(--beige-000);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--sage-600);
  cursor: default;
}
.gallery-item.is-placeholder:hover img { transform: none; }
.gallery-item.is-placeholder svg { width: 26px; height: 26px; }
.gallery-item.is-placeholder span {
  font-family: var(--font-utility);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0 1rem;
  color: var(--ink-soft);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 34, 26, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 900;
}
.gallery-lightbox.is-open { display: flex; }
.gallery-lightbox img {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
}
.gallery-lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(251,249,244,0.12);
  border: 1px solid rgba(251,249,244,0.3);
  color: var(--beige-000);
  display: flex; align-items: center; justify-content: center;
}
.gallery-lightbox-close svg { width: 18px; height: 18px; }

/* -------------------- 19d. Instagram Widget -------------------- */
.instagram-widget {
  margin: 2rem auto;
  max-width: 540px;
}
.instagram-widget iframe {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px -12px hsl(var(--shadow-color) / 0.2);
}
.instagram-cta a {
  display: inline-flex;
}

/* -------------------- 20. Misc utility -------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.divider-leaf { display: flex; justify-content: center; margin-bottom: 1.4rem; }

/* -------------------- 21. Responsive -------------------- */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav-links {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0;
    bottom: 0;
    background: var(--beige-000);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem var(--gutter) 2rem;
    gap: 1.1rem;
    z-index: 999;
    overflow-y: auto;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.08);
  }
  .site-header.nav-open .nav-links a {
    padding: 0.7rem 0;
    font-size: 1.05rem;
  }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-blob { width: min(78%, 320px); margin-inline: auto; }
  .about .container { grid-template-columns: 1fr; }
  .about-visual { max-width: 340px; margin-inline: auto; }
  .about-cred, .about-ring { display: none; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); row-gap: 2.4rem; }
  .process-track::before { display: none; }
  .appointment .container { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
}

@media (max-width: 680px) {
  .feature-grid, .conditions-grid, .blog-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; row-gap: 1rem; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.span-2 { grid-column: span 2; grid-row: span 1; }
}
