/* ========================================
   Niranjana Rajendran — Clinical Nutritionist
   Aesthetic: Botanical Luxury (High Contrast)
   ======================================== */

/* --- Reset & Variables --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Botanical palette - enhanced contrast */
  --moss: #4a5d3b;
  --moss-deep: #2d3a24;
  --moss-light: #7a8e6a;
  --moss-wash: #e8efe2;

  --clay: #b8845a;
  --clay-dark: #8c6040;
  --clay-light: #d4b896;
  --clay-wash: #f5efe8;

  --stone: #1a1a1a;
  --stone-mid: #3d3d3d;
  --stone-soft: #5a5a5a;
  --stone-pale: #8a8a8a;

  --parchment: #f8f6f2;
  --parchment-dark: #e8e4dc;
  --white: #ffffff;

  --whatsapp: #25d366;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Timing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Spacing */
  --section-pad: clamp(5rem, 10vw, 8rem);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--stone);
  background: var(--parchment);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.5s var(--ease-out-expo);
  padding: 1.5rem 0;
}

.nav.scrolled {
  background: rgba(248, 246, 242, 0.95);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  padding: 0.8rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 110;
}

.nav__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.3s ease;
}

.nav.scrolled .nav__logo-img {
  border-color: var(--clay-light);
}

.nav__logo:hover .nav__logo-img {
  border-color: var(--clay-light);
}

.nav.scrolled .nav__logo:hover .nav__logo-img {
  border-color: var(--clay);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav.scrolled .nav__logo-text {
  color: var(--stone);
}

.nav__logo-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--clay-light);
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: super;
  transition: background 0.3s ease;
}

.nav.scrolled .nav__logo-dot {
  background: var(--clay);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.nav.scrolled .nav__link {
  color: var(--stone-mid);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clay-light);
  transition: width 0.4s var(--ease-out-expo), background 0.3s ease;
}

.nav.scrolled .nav__link::after {
  background: var(--clay);
}

.nav__link:hover { color: var(--white); }
.nav.scrolled .nav__link:hover { color: var(--stone); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--white); font-weight: 500; }
.nav.scrolled .nav__link.active { color: var(--stone); }

.nav__link--cta {
  background: var(--moss);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--moss-deep);
  transform: translateY(-1px);
}

/* Mobile Menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 110;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.3s ease, background 0.3s ease;
  transform-origin: center;
}

.nav.scrolled .nav__hamburger span {
  background: var(--stone);
}

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5.5px);
}
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5.5px);
}

/* ========================================
   HERO — Dark gradient background (no image)
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    145deg,
    #1a2014 0%,
    #2a3622 25%,
    #3d4a33 50%,
    #4a5540 70%,
    #3a4530 100%
  );
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(184, 132, 90, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(74, 93, 59, 0.2), transparent);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(26, 32, 20, 0.3) 100%
  );
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

/* Botanical leaf decorations */
.hero__botanical {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__leaf {
  position: absolute;
  color: rgba(90, 107, 74, 0.12);
}

.hero__leaf--1 {
  width: 180px;
  height: 300px;
  top: 10%;
  right: 5%;
  transform: rotate(15deg);
  animation: leafFloat 8s ease-in-out infinite;
}

.hero__leaf--2 {
  width: 120px;
  height: 200px;
  bottom: 15%;
  left: 3%;
  transform: rotate(-20deg);
  animation: leafFloat 10s ease-in-out infinite 1s;
}

.hero__leaf--3 {
  width: 100px;
  height: 160px;
  top: 40%;
  right: 15%;
  transform: rotate(35deg);
  opacity: 0.7;
  animation: leafFloat 12s ease-in-out infinite 2s;
}

@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(var(--rotate, 15deg)); }
  50% { transform: translateY(-15px) rotate(calc(var(--rotate, 15deg) + 3deg)); }
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding-top: 6rem;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay-light);
  border: 1px solid rgba(212, 184, 150, 0.4);
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease-out-expo) 0.2s forwards;
}

.hero__name {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero__name-line {
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease-out-expo) 0.4s forwards;
}

.hero__name-line--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--clay-light);
  opacity: 0;
  animation: heroFadeUp 0.9s var(--ease-out-expo) 0.55s forwards;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out-expo) 0.7s forwards;
}

.hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out-expo) 0.85s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out-expo) 1s forwards;
}

.hero__free-chat {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out-expo) 1.1s forwards;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-out-expo) 1.2s forwards;
}

.hero__trust-chip {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroFadeUp 1s var(--ease-out-expo) 1.2s both;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}

.btn--primary {
  background: var(--clay);
  color: var(--white);
  border-radius: 4px;
}

.btn--primary:hover {
  background: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 132, 90, 0.35);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 4px;
}

.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
}

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
}

.btn--ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.btn--submit {
  background: var(--moss);
  color: var(--white);
  width: 100%;
  justify-content: center;
  padding: 1.1rem 2rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

.btn--submit:hover {
  background: var(--moss-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(74, 93, 59, 0.3);
}

/* ========================================
   SECTIONS — COMMON
   ======================================== */
.section {
  padding: var(--section-pad) 0;
}

.section--services { background: var(--white); }
.section--about {
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}
.section--conditions { background: var(--white); }
.section--form { background: var(--moss-deep); }
.section--contact { background: var(--white); }
.section--consult-details { background: var(--white); }
.section--process { background: var(--parchment); }
.section--faq { background: var(--parchment-dark); }

.section__header {
  margin-bottom: 3.5rem;
}

.section__header--center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: var(--stone);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.section__title--center { text-align: center; }

.section__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--stone-soft);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 540px;
}

.section__header--center .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   HOW IT WORKS / PROCESS
   ======================================== */
.process__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
}

.process-step {
  flex: 0 1 280px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--parchment-dark);
  transition: all 0.4s var(--ease-out-expo);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--clay-light);
}

.process-step__number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  background: var(--moss);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--stone);
  margin-bottom: 0.75rem;
}

.process-step__text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--stone-soft);
  line-height: 1.65;
}

.process-step__connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--clay-light), var(--moss-light));
  margin-top: 3.5rem;
  border-radius: 2px;
}

.process__cta {
  text-align: center;
  margin-top: 3rem;
}

.process__note {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--stone-soft);
  margin-top: 0.75rem;
}

/* ========================================
   SERVICES
   ======================================== */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.services__illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.services__illustration-inner {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.services__leaf {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(74, 93, 59, 0.15));
}

.services__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--clay-light);
}

.services__circle--1 {
  width: 180px;
  height: 180px;
  top: -20px;
  right: -30px;
  opacity: 0.4;
}

.services__circle--2 {
  width: 120px;
  height: 120px;
  bottom: 20px;
  left: -20px;
  opacity: 0.3;
}

.services__cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  padding: 1.75rem;
  background: var(--parchment);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover {
  border-color: var(--clay-light);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--moss-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--moss);
  transition: background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-card__icon {
  background: var(--moss);
  color: var(--white);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

.service-card__text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--stone-soft);
  line-height: 1.65;
}

/* ========================================
   CONDITIONS
   ======================================== */
.conditions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.condition-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--parchment);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-out-expo);
  cursor: default;
}

.condition-card:hover {
  border-color: var(--clay-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.condition-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--moss-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--moss);
  transition: all 0.4s var(--ease-out-expo);
}

.condition-card:hover .condition-card__icon {
  background: var(--moss);
  color: var(--white);
  transform: scale(1.08);
}

.condition-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--stone);
}

.conditions__cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--moss-wash);
  border-radius: 12px;
}

.conditions__cta p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--stone-mid);
  margin-bottom: 1.25rem;
}

.conditions__note {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--stone-soft);
  margin-top: 0.75rem;
}

/* ========================================
   ABOUT
   ======================================== */
.about__bg-shape {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 132, 90, 0.08), transparent 70%);
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}

.about__portrait-col {
  position: relative;
}

.about__portrait-wrap {
  position: relative;
}

.about__portrait {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}

.about__portrait-ring {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  border: 1.5px solid var(--clay-light);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}

.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: var(--moss);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(74, 93, 59, 0.35);
}

.about__badge-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.about__badge-label {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}

.about__role {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--clay);
  margin-bottom: 1.5rem;
}

.about__bio {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone-soft);
  margin-bottom: 2.5rem;
}

.about__quals {
  border-top: 1px solid var(--parchment-dark);
  padding-top: 2rem;
}

.about__quals-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1.25rem;
}

.about__quals-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__quals-list li {
  font-size: 0.9rem;
  color: var(--stone-soft);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.about__quals-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay-light);
}

.about__quals-list li strong {
  font-weight: 500;
  color: var(--stone);
  display: block;
}

.about__quals-list li span {
  display: block;
  font-size: 0.82rem;
  color: var(--stone-pale);
  margin-top: 0.15rem;
}

/* ========================================
   FAQ
   ======================================== */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--parchment-dark);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item[open] {
  border-color: var(--clay-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--stone);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s ease;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--clay);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__question:hover {
  color: var(--moss);
}

.faq-item__answer {
  padding: 0 1.5rem 1.5rem;
}

.faq-item__answer p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--stone-soft);
  line-height: 1.7;
}

/* ========================================
   FORMS
   ======================================== */
.section--form {
  color: var(--white);
}

.section--form .section__eyebrow {
  color: var(--clay-light);
}

.section--form .section__title {
  color: var(--white);
}

.section--form .section__subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.form-section__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  margin-top: 2.5rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.form__label span {
  color: var(--clay-light);
}

.form__label-optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.6;
}

.form__input,
.form__textarea,
.form__select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  outline: none;
  border-radius: 6px;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--clay-light);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(212, 184, 150, 0.15);
}

.form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(255,255,255,0.6)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__select option {
  background: var(--stone);
  color: var(--white);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 0.5rem;
}

.form__hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin: -0.5rem 0 1rem;
  font-style: italic;
}

.form__hint--error {
  color: #ff6b6b;
  font-weight: 500;
  font-style: normal;
}

.section--form .btn--submit {
  background: var(--clay);
}

.section--form .btn--submit:hover {
  background: var(--clay-dark);
  box-shadow: 0 8px 24px rgba(184, 132, 90, 0.4);
}

.form__success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  animation: successIn 0.6s var(--ease-out-back);
}

.form__success.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form__success svg {
  color: var(--clay-light);
}

.form__success p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.link--inline {
  color: var(--clay-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.link--inline:hover {
  color: var(--white);
}

@keyframes successIn {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ========================================
   PAGE HEROES (Contact, Consultation)
   ======================================== */
.page-hero {
  position: relative;
  padding: 10rem 0 4rem;
  overflow: hidden;
}

.page-hero--tall {
  padding-bottom: 5rem;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    #2a3622 0%,
    #3d4a33 40%,
    #4a5540 100%
  );
  z-index: 0;
}

.page-hero__bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 132, 90, 0.12), transparent 70%);
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 107, 74, 0.1), transparent 70%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: var(--white);
}

.page-hero__content .section__eyebrow {
  color: var(--clay-light);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.page-hero__desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 500px;
  margin-top: 1rem;
}

.page-hero__quote {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--clay);
}

.page-hero__quote span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--clay-light);
  line-height: 1.5;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--stone);
  margin-bottom: 1rem;
}

.contact__info-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--stone-soft);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--parchment);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease-out-expo);
}

a.contact__method:hover {
  border-color: var(--clay-light);
  transform: translateX(4px);
}

.contact__method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--moss-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss);
  flex-shrink: 0;
}

.contact__method-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-pale);
}

.contact__method-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--stone);
  margin-top: 0.15rem;
}

.contact__form-wrap {
  background: var(--parchment);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--parchment-dark);
}

.contact__form-wrap .form__label {
  color: var(--stone-mid);
}

.contact__form-wrap .form__input,
.contact__form-wrap .form__textarea {
  background: var(--white);
  color: var(--stone);
  border-color: var(--parchment-dark);
}

.contact__form-wrap .form__input::placeholder,
.contact__form-wrap .form__textarea::placeholder {
  color: var(--stone-pale);
}

.contact__form-wrap .form__input:focus,
.contact__form-wrap .form__textarea:focus {
  border-color: var(--moss-light);
  box-shadow: 0 0 0 3px rgba(74, 93, 59, 0.1);
}

.contact__form-wrap .form__success svg {
  color: var(--moss);
}

.contact__form-wrap .form__success p {
  color: var(--stone-mid);
}

/* ========================================
   CONSULTATION PAGE
   ======================================== */
.consult__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}

.consult__lead {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--stone);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.consult__body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--stone-soft);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.consult__highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--moss-wash);
  border-radius: 8px;
  margin-top: 1.5rem;
  color: var(--moss-deep);
  font-weight: 400;
  font-size: 0.95rem;
}

.consult__highlight svg {
  flex-shrink: 0;
  color: var(--moss);
}

.consult__contact-card {
  background: var(--parchment);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--parchment-dark);
  position: sticky;
  top: 120px;
}

.consult__contact-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--stone);
  margin-bottom: 0.75rem;
}

.consult__contact-text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--stone-soft);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.consult__contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.consult__contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease-out-expo);
  color: var(--moss);
}

.consult__contact-link:hover {
  border-color: var(--clay-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.consult__contact-link svg {
  flex-shrink: 0;
}

.consult__contact-link-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-pale);
}

.consult__contact-link-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--stone);
  margin-top: 0.1rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--stone);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  margin-bottom: 0.35rem;
}

.footer__tagline {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}

.footer__links {
  display: flex;
  gap: 4rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

.footer__col a {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: 2rem;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.4s var(--ease-out-back), box-shadow 0.3s ease;
  cursor: pointer;
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  animation-play-state: paused;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

/* ========================================
   MOBILE STICKY CTA
   ======================================== */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 190;
  display: none;
  padding: 0.75rem 1rem;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  gap: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.mobile-cta.visible {
  transform: translateY(0);
}

.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-cta__btn--wa {
  background: var(--whatsapp);
  color: var(--white);
}

.mobile-cta__btn--wa:hover {
  background: #1ebe5d;
}

.mobile-cta__btn--form {
  background: var(--clay);
  color: var(--white);
}

.mobile-cta__btn--form:hover {
  background: var(--clay-dark);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 320px 1fr;
    gap: 3rem;
  }

  .consult__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .consult__contact-card {
    position: static;
  }

  .process__grid {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .process-step__connector {
    display: none;
  }

  .process-step {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 200px;
  }
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services__illustration {
    min-height: 300px;
    order: -1;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__portrait-col {
    max-width: 300px;
    margin: 0 auto;
  }

  .conditions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(42, 54, 34, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav__links.open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Mobile menu open state - light text on dark background */
  .nav__links.open .nav__link {
    color: rgba(255, 255, 255, 0.85);
  }

  .nav__links.open .nav__link:hover,
  .nav__links.open .nav__link.active {
    color: var(--white);
  }

  .nav__links.open .nav__link::after {
    background: var(--clay-light);
  }

  .nav__links .nav__link {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }

  .nav__links .nav__link--cta {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }

  /* Hamburger stays light when menu is open (on dark background) */
  .nav__hamburger.open span {
    background: var(--white);
  }

  .nav__hamburger { display: flex; }

  .hero__scroll { display: none; }

  .hero__trust {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero__trust-chip {
    text-align: center;
  }

  .page-hero {
    padding: 8rem 0 3rem;
  }

  .page-hero--tall {
    padding-bottom: 3rem;
  }

  .footer__top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__links {
    gap: 3rem;
  }

  .contact__form-wrap {
    padding: 1.5rem;
  }

  .mobile-cta {
    display: flex;
  }

  .whatsapp-float {
    bottom: 5.5rem;
  }
}

@media (max-width: 480px) {
  .hero__name-line {
    font-size: 2.75rem;
  }

  .section__title {
    font-size: 1.85rem;
  }

  .conditions__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .condition-card {
    padding: 1.75rem 1rem;
  }

  .whatsapp-float {
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .about__badge {
    width: 75px;
    height: 75px;
    bottom: -12px;
    right: -12px;
  }

  .about__badge-number { font-size: 1.25rem; }
  .about__badge-label { font-size: 0.5rem; }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .faq-item__question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-item__answer {
    padding: 0 1.25rem 1.25rem;
  }
}
