/* ============================================
   RE EQUILIBRIUM — Osteopatía y Medicina Integrativa
   ============================================ */

:root {
  --cream: #E6E3DC;
  --terracotta: #A14F35;
  --olive: #747B4D;
  --brown: #7A6349;

  --ink: #2E2A24;
  --ink-soft: #5A5347;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-display: 'Bodoni Moda', 'Times New Roman', serif;
  --font-sans: 'Montserrat', 'DM Sans', -apple-system, sans-serif;

  --max-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.overline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
}

em, .italic {
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: #8a4229;
  border-color: #8a4229;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.7rem;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(122, 99, 73, 0.18);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.site-header.has-hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
}

.site-header.has-hero.is-scrolled {
  background: var(--cream);
  border-bottom-color: rgba(122, 99, 73, 0.18);
}

.site-header.has-hero .logo-img {
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.7)) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
  transition: filter 0.35s ease;
}

.site-header.has-hero.is-scrolled .logo-img {
  filter: none;
}

.site-header.has-hero .header-social a {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.site-header.has-hero.is-scrolled .header-social a {
  border-color: var(--brown);
  color: var(--brown);
}

.site-header.has-hero .header-nav a {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.site-header.has-hero.is-scrolled .header-nav a {
  color: var(--ink-soft);
  text-shadow: none;
}

.site-header.has-hero .header-nav a:hover {
  color: var(--white);
}

.site-header.has-hero.is-scrolled .header-nav a:hover {
  color: var(--terracotta);
}

.site-header.has-hero .header-nav li:not(:first-child)::before {
  color: rgba(255, 255, 255, 0.5);
}

.site-header.has-hero.is-scrolled .header-nav li:not(:first-child)::before {
  color: var(--brown);
  opacity: 0.4;
}

.site-header.has-hero .nav-toggle span {
  background: var(--white);
}

.site-header.has-hero.is-scrolled .nav-toggle span {
  background: var(--ink);
}

.site-header.has-hero .header-nav {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.site-header.has-hero.is-scrolled .header-nav {
  border-top-color: rgba(122, 99, 73, 0.12);
}

.header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 32px 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header-logo {
  justify-self: start;
}

.logo-lockup {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
}

.header-social {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--brown);
  color: var(--brown);
  transition: all 0.3s ease;
}

.header-social a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.header-social svg {
  width: 13px;
  height: 13px;
}

.header-cta {
  justify-self: end;
}

.header-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  transition: background 0.3s ease;
}

.header-cta a:hover {
  background: #8a4229;
}

.header-cta svg {
  width: 13px;
  height: 13px;
}

.header-nav {
  display: flex;
  justify-content: center;
  padding: 14px 32px 18px;
  border-top: 1px solid rgba(122, 99, 73, 0.12);
}

.header-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.header-nav li {
  display: flex;
  align-items: center;
}

.header-nav li:not(:first-child)::before {
  content: '|';
  margin: 0 20px;
  color: var(--brown);
  opacity: 0.4;
  font-weight: 400;
}

.header-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: var(--terracotta);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  padding: 14px 30px 26px;
  margin-top: -1px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 60;
}

.nav-dropdown-panel-inner {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(46, 42, 36, 0.18);
  padding: 26px 30px;
  display: flex;
  gap: 40px;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
}

.nav-dropdown-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.nav-dropdown-sublabel {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}

.nav-dropdown-link {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  padding: 2px 0;
  transition: color 0.2s ease;
}

.nav-dropdown-link:hover {
  color: var(--terracotta);
}

.nav-dropdown-link-sub {
  padding-left: 14px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  justify-self: end;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
}

.hero-media {
  width: 100%;
  line-height: 0;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 15, 8, 0.3) 0%, rgba(20, 15, 8, 0.5) 55%, rgba(20, 15, 8, 0.62) 100%);
}

.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6vw;
  max-width: 760px;
  margin: 0 auto;
}

.hero-text .overline {
  display: block;
  margin-bottom: 26px;
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 46px;
  color: #FBF9F4;
}

.hero-text h1 em {
  font-weight: 500;
  color: #E9DDC7;
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-cta-row .btn-primary {
  background: var(--olive);
  border-color: var(--olive);
}

.hero-cta-row .btn-primary:hover {
  background: #5f6540;
  border-color: #5f6540;
}

.hero-cta-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-text .overline,
.hero-text h1 {
  min-height: 1em;
}

.typewriter-cursor::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: 3px;
  background: currentColor;
  vertical-align: -0.1em;
  animation: cursor-blink 0.8s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-cta-row .btn {
  padding: 18px 38px;
  font-size: 0.85rem;
  border-radius: 999px;
}

.hero-text .btn-outline {
  color: #FBF9F4;
  border-color: #FBF9F4;
}

.hero-text .btn-outline:hover {
  background: #FBF9F4;
  color: var(--ink);
}

/* ============================================
   ¿TE IDENTIFICAS?
   ============================================ */

.identify-section {
  background: var(--cream);
  padding: 100px 32px;
}

.identify-heading {
  max-width: 900px;
  margin: 0 auto 64px;
  text-align: center;
}

.identify-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 28px;
}

.identify-intro {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 18px;
}

.identify-intro em {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 500;
}

.identify-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

.identify-divider {
  max-width: var(--max-width);
  margin: 0 auto 56px;
  height: 1px;
  background: rgba(122, 99, 73, 0.25);
}

.identify-list {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.identify-item-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.identify-item {
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}

.identify-num {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--terracotta);
}

.identify-item-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  line-height: 0.95;
  color: var(--ink);
  transition: color 0.25s ease;
}

.identify-item-wrap:hover .identify-item-title,
.identify-item-wrap.is-active .identify-item-title {
  color: var(--olive);
}

.identify-item-wrap:hover .identify-num,
.identify-item-wrap.is-active .identify-num {
  color: var(--olive);
}

.identify-tooltip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 250px;
  z-index: 10;
  background: rgba(214, 232, 230, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 20px 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 10px 30px rgba(46, 42, 36, 0.12);
}

.identify-item-wrap:hover .identify-tooltip,
.identify-item-wrap.is-active .identify-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.identify-tooltip-down {
  top: calc(100% + 22px);
}

.identify-tooltip-up {
  bottom: calc(100% + 22px);
}

.identify-tooltip::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  height: 22px;
  background: rgba(122, 99, 73, 0.4);
  transform: translateX(-50%);
}

.identify-tooltip-down::before {
  top: -22px;
}

.identify-tooltip-up::before {
  bottom: -22px;
}

.identify-tooltip-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 12px;
}

.identify-tooltip ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.identify-tooltip li {
  position: relative;
  padding-left: 15px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.identify-tooltip li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--olive);
}

/* ============================================
   MÉTODO — ¿QUÉ ES RE.EQUILIBRIUM?
   ============================================ */

.method-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.method-col-text {
  background: var(--olive);
  padding: 64px 4.5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.method-col-text .overline {
  display: block;
  margin-bottom: 16px;
  color: var(--cream);
  font-size: 0.75rem;
}

.method-col-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  color: var(--white);
  margin-bottom: 20px;
}

.method-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.method-flow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.method-step-word {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  line-height: 1;
  color: var(--white);
}

.method-arrow {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  position: relative;
  flex-shrink: 0;
}

.method-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-right: 1px solid rgba(255, 255, 255, 0.55);
  transform: translateY(-50%) rotate(45deg);
}

.method-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 30px;
}

.method-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 5px;
  transition: color 0.25s ease, gap 0.25s ease, border-color 0.25s ease;
}

.method-cta:hover {
  color: var(--cream);
  border-color: var(--cream);
  gap: 14px;
}

.method-col-image {
  min-height: 0;
  position: relative;
}

.method-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.method-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 92px;
  height: 92px;
  z-index: 3;
}

.method-badge-spin {
  width: 100%;
  height: 100%;
  animation: method-badge-rotate 14s linear infinite;
}

.method-badge-spin text {
  font-family: var(--font-sans);
  font-size: 8.6px;
  font-weight: 600;
  letter-spacing: 0.06em;
  fill: var(--white);
  text-transform: uppercase;
}

.method-badge-spin circle {
  fill: rgba(46, 42, 36, 0.35);
}

.method-badge-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  color: var(--white);
}

@keyframes method-badge-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   LONGEVITY MARQUEE
   ============================================ */

.longevity-marquee {
  background: var(--brown);
  overflow: hidden;
  padding: 22px 0;
}

.longevity-track {
  display: flex;
  width: max-content;
  animation: longevity-scroll 22s linear infinite;
}

.longevity-track span {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  color: var(--cream);
  white-space: nowrap;
}

@keyframes longevity-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


@media (max-width: 900px) {
  .identify-list {
    grid-template-columns: 1fr 1fr;
    row-gap: 90px;
  }
}

/* ============================================
   CIERRE
   ============================================ */

.closing-section {
  position: relative;
  background: var(--brown);
  height: clamp(160px, 30vh, 320px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.closing-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(18px);
  transform: scale(1.2);
}

.closing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(90, 61, 42, 0.72);
}

.closing-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}

.closing-highlight {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 14px;
}

.closing-line {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: rgba(233, 222, 199, 0.9);
  line-height: 1.55;
}

/* ============================================
   SOBRE NOSOTRAS
   ============================================ */

.about-section {
  padding: 110px 32px 56px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-heading {
  text-align: center;
  margin-bottom: 72px;
}

.about-heading .overline {
  display: block;
  margin-bottom: 18px;
}

.about-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-card {
  display: flex;
  flex-direction: column;
}

.about-photo {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  margin: 0 auto 28px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
  border: 1px dashed var(--brown);
}

.about-name {
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.about-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 20px;
}

.about-bio {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.about-bio p {
  margin-bottom: 16px;
}

.about-bio h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 24px 0 12px;
}

.about-bio ul {
  margin-bottom: 4px;
}

.about-bio ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.about-bio ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

.bio-excerpt-more {
  display: none;
}

.about-card.expanded .bio-excerpt-more {
  display: block;
}

.bio-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(122, 99, 73, 0.18);
}

.bio-socials a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid rgba(122, 99, 73, 0.3);
  border-radius: 999px;
  padding: 8px 14px;
  transition: all 0.25s ease;
}

.bio-socials a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.bio-socials svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1.is-visible { transition-delay: 0.1s; }
.reveal-delay-2.is-visible { transition-delay: 0.2s; }
.reveal-delay-3.is-visible { transition-delay: 0.3s; }

.ver-mas-btn {
  align-self: flex-start;
  background: none;
  border: none;
  border-bottom: 1px solid var(--terracotta);
  color: var(--terracotta);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 0;
  margin-top: 4px;
}

.ver-mas-btn:hover {
  color: #8a4229;
  border-color: #8a4229;
}

/* ============================================
   CÍRCULO DE BIENESTAR
   ============================================ */

.wellness-section {
  padding: 100px 32px 140px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.wellness-heading {
  text-align: center;
  margin-bottom: 64px;
}

.wellness-heading .overline {
  display: block;
  margin-bottom: 18px;
}

.wellness-heading h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.wellness-wheel-wrap {
  --wheel-size: clamp(300px, 46vw, 560px);
  --wheel-duration: 130s;
  --label-radius: calc(var(--wheel-size) / 2 + clamp(38px, 6vw, 54px));
  --label-width: clamp(92px, 13vw, 150px);

  position: relative;
  width: var(--wheel-size);
  height: var(--wheel-size);
  margin: 0 auto;
}

.wellness-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wheel-rotor {
  transform-box: view-box;
  transform-origin: 200px 200px;
  transform: rotate(0deg);
}

.wheel-rotor image {
  filter: saturate(0.92);
  transition: filter 0.3s ease;
}

.wheel-wedge {
  cursor: pointer;
}

.wheel-wedge:hover image,
.wheel-wedge.is-active image {
  filter: saturate(1.15) brightness(1.05);
}

.wheel-dot {
  fill: var(--cream);
  stroke: var(--brown);
  stroke-width: 2;
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.35s ease;
  width: calc(var(--wheel-size) * 0.32);
  height: calc(var(--wheel-size) * 0.32);
  background: var(--cream);
  border: 1px solid rgba(122, 99, 73, 0.35);
  box-shadow: 0 8px 24px rgba(46, 42, 36, 0.15);
}

.wheel-center span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  color: var(--ink);
  line-height: 1.25;
}

.wellness-wheel-wrap.info-active .wheel-center {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  pointer-events: none;
}

.wheel-info-card {
  position: absolute;
  top: 50%;
  left: 100%;
  margin-left: 30px;
  transform: translateY(-50%) scale(0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.35s ease;
  gap: 6px;
  border-radius: 16px;
  width: min(260px, 24vw);
  padding: 22px;
  background: rgba(214, 232, 230, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 36px rgba(46, 42, 36, 0.16);
  opacity: 0;
  pointer-events: none;
}

.wellness-wheel-wrap.info-active .wheel-info-card {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}

.wellness-wheel-wrap.card-left .wheel-info-card {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 30px;
}

@media (max-width: 1100px) {
  .wheel-info-card,
  .wellness-wheel-wrap.card-left .wheel-info-card,
  .wellness-wheel-wrap.card-right .wheel-info-card {
    left: 50%;
    right: auto;
    top: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 28px;
    transform: translateX(-50%) translateY(0) scale(0.92);
    width: min(320px, 88vw);
  }
  .wellness-wheel-wrap.info-active .wheel-info-card {
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.wheel-info-photo {
  width: 100%;
  max-height: calc(var(--wheel-size) * 0.26);
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 4px;
}

.wheel-info-title {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.2;
}

.wheel-info-text {
  font-family: var(--font-sans);
  font-size: clamp(0.62rem, 1.1vw, 0.74rem);
  line-height: 1.4;
  color: var(--ink-soft);
}

.wheel-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--label-angle)) translateY(calc(-1 * var(--label-radius)));
}

.wheel-label-inner {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) rotate(calc(-1 * var(--label-angle)));
  width: var(--label-width);
  font-family: var(--font-sans);
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  font-weight: 600;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.25s ease, background 0.25s ease;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--ink-soft);
  text-align: center;
}

.wheel-label:hover .wheel-label-inner,
.wheel-label.is-active .wheel-label-inner {
  color: var(--terracotta);
  background: rgba(161, 79, 53, 0.1);
}

/* ============================================
   SERVICIOS
   ============================================ */

.services-section {
  background: var(--white);
  padding: 64px 32px 100px;
}

.services-section > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.services-heading {
  text-align: center;
  margin-bottom: 60px;
}

.services-heading .overline {
  display: block;
  margin-bottom: 18px;
}

.services-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

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

.service-card-soon {
  position: relative;
  opacity: 0.9;
}

.service-soon-badge {
  position: absolute;
  top: 24px;
  left: 28px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.service-btn-disabled {
  background: rgba(122, 99, 73, 0.25);
  color: var(--ink-soft);
  cursor: default;
  pointer-events: none;
}

.service-card {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(122, 99, 73, 0.25);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  border-color: var(--terracotta);
  box-shadow: 0 14px 30px rgba(46, 42, 36, 0.1);
  transform: translateY(-3px);
}

.service-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: rgba(122, 99, 73, 0.16);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 26px;
  flex-grow: 1;
}

.service-btn {
  display: inline-block;
  align-self: center;
  text-align: center;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 999px;
  transition: background 0.25s ease;
}

.service-btn:hover {
  background: #8a4229;
}

.ebook-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ebook-nav {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(122, 99, 73, 0.3);
  background: var(--white);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ebook-nav:hover {
  border-color: var(--terracotta);
  box-shadow: 0 8px 18px rgba(46, 42, 36, 0.1);
}

.ebook-scroll {
  flex: 1 1 auto;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.ebook-scroll::-webkit-scrollbar {
  display: none;
}

.ebook-card {
  flex: 0 0 auto;
  width: 260px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px dashed rgba(122, 99, 73, 0.4);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.ebook-card:hover {
  border-color: var(--terracotta);
  box-shadow: 0 14px 30px rgba(46, 42, 36, 0.1);
  transform: translateY(-3px);
}

.ebook-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  background-image: repeating-linear-gradient(-45deg, rgba(122, 99, 73, 0.14) 0 2px, transparent 2px 12px);
  background-color: rgba(122, 99, 73, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 18px;
  overflow: hidden;
}

.ebook-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ebook-cover span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(122, 99, 73, 0.6);
}

.ebook-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.ebook-card p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 20px;
  flex-grow: 1;
}

.ebook-buy {
  display: inline-block;
  align-self: flex-start;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--ink);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.ebook-card:hover .ebook-buy {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.ebook-scrollbar {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 420px;
  margin: 18px auto 0;
}

.ebook-scrollbar-arrow {
  font-size: 0.9rem;
  color: rgba(122, 99, 73, 0.5);
}

.ebook-scrollbar-track {
  position: relative;
  flex: 1 1 auto;
  height: 6px;
  border-radius: 999px;
  background: rgba(122, 99, 73, 0.18);
  overflow: hidden;
}

.ebook-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 999px;
  background: rgba(122, 99, 73, 0.55);
  transition: left 0.1s linear;
}

@media (max-width: 720px) {
  .ebook-nav { display: none; }
}

/* ============================================
   RESET 21
   ============================================ */

.reset21-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.reset21-photo img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 16px;
}

.reset21-text .overline {
  display: block;
  margin-bottom: 14px;
}

.reset21-badge {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.reset21-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}

.reset21-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.reset21-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.reset21-close {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .reset21-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 72px 20px;
  }

  .reset21-photo img {
    max-height: 420px;
  }
}

/* ============================================
   RESEÑAS
   ============================================ */

.reviews-section {
  background: var(--cream);
  padding: 100px 32px;
}

.reviews-section > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.reviews-heading {
  text-align: center;
  margin-bottom: 56px;
}

.reviews-heading .overline {
  display: block;
  margin-bottom: 18px;
}

.reviews-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}

.reviews-profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.reviews-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

.reviews-profile h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.reviews-stars {
  color: #E3A639;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.reviews-source {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.reviews-write-btn {
  display: inline-block;
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 999px;
  margin-bottom: 22px;
  transition: background 0.25s ease, color 0.25s ease;
}

.reviews-write-btn:hover {
  background: var(--terracotta);
  color: var(--white);
}

.reviews-google-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.review-carousel-wrap {
  min-width: 0;
}

.review-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-nav {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(122, 99, 73, 0.3);
  background: var(--white);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-nav:hover {
  border-color: var(--terracotta);
  box-shadow: 0 8px 18px rgba(46, 42, 36, 0.1);
}

.review-scroll {
  flex: 1 1 auto;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.review-scroll::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 auto;
  width: 300px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid rgba(122, 99, 73, 0.16);
  border-radius: 14px;
  padding: 22px;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card-head > div {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}

.review-name {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.review-date {
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.review-google-icon {
  flex: 0 0 auto;
}

.review-stars {
  color: #E3A639;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.review-scrollbar {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 420px;
  margin: 18px auto 0;
}

.review-scrollbar-arrow {
  font-size: 0.9rem;
  color: rgba(122, 99, 73, 0.5);
}

.review-scrollbar-track {
  position: relative;
  flex: 1 1 auto;
  height: 6px;
  border-radius: 999px;
  background: rgba(122, 99, 73, 0.18);
  overflow: hidden;
}

.review-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 999px;
  background: rgba(122, 99, 73, 0.55);
  transition: left 0.1s linear;
}

.reviews-all-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.reviews-all-btn:hover {
  background: var(--terracotta);
  color: var(--white);
}

@media (max-width: 900px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .reviews-profile {
    align-items: center;
    text-align: center;
  }

  .reviews-google-tag {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .review-nav { display: none; }
  .reviews-section { padding: 72px 20px; }
}

/* ============================================
   CONTACTO CTA
   ============================================ */

.contact-cta-section {
  background: var(--cream);
  padding: 100px 32px;
}

.contact-cta-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-cta-text .overline {
  display: block;
  margin-bottom: 18px;
}

.contact-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 18px;
}

.contact-cta-text > p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 460px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(122, 99, 73, 0.18);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-option:hover {
  border-color: var(--terracotta);
  box-shadow: 0 12px 26px rgba(46, 42, 36, 0.08);
  transform: translateY(-2px);
}

.contact-option-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--brown);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-option-icon svg {
  width: 20px;
  height: 20px;
}

.contact-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-option-text strong {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
}

.contact-option-text span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.contact-cta-photo img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .contact-cta-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta-photo {
    order: -1;
  }

  .contact-cta-photo img {
    max-height: 360px;
  }
}

@media (max-width: 720px) {
  .contact-cta-section { padding: 72px 20px; }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .services-section { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--brown);
  color: var(--cream);
  font-size: 0.85rem;
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 32px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-col-title a {
  color: inherit;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(233, 222, 199, 0.82);
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

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

.footer-brand .logo-lockup {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 40px;
  filter: brightness(0) invert(1) opacity(0.92);
}

.footer-tagline {
  color: rgba(233, 222, 199, 0.85);
  font-size: 0.85rem;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(233, 222, 199, 0.4);
  color: var(--cream);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-copyright {
  color: rgba(233, 222, 199, 0.65);
  font-size: 0.76rem;
}

.footer-bottom {
  border-top: 1px solid rgba(233, 222, 199, 0.18);
  padding: 22px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
}

.footer-bottom a {
  color: rgba(233, 222, 199, 0.75);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

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

@media (max-width: 720px) {
  .identify-section { padding: 64px 20px; }
  .identify-heading { margin-bottom: 44px; }
  .identify-divider { margin-bottom: 36px; }
  .identify-list { grid-template-columns: 1fr; gap: 28px; }
  .identify-item-title { font-size: 1.7rem; }

  .identify-tooltip {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 14px;
    display: none;
    box-shadow: none;
  }
  .identify-tooltip::before {
    display: none;
  }
  .identify-item-wrap:hover .identify-tooltip,
  .identify-item-wrap.is-active .identify-tooltip {
    left: auto;
    transform: none;
  }
  .identify-item-wrap.is-active .identify-tooltip {
    display: block;
    opacity: 1;
  }

  .method-section { grid-template-columns: 1fr; }
  .method-col-image { min-height: 260px; order: -1; }
  .method-col-text { padding: 56px 24px; }
  .method-flow { gap: 10px; }
  .method-arrow { transform: rotate(90deg); }

  .soil-content { padding: 56px 24px; }
  .soil-node { max-width: 100%; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 24px 40px;
    text-align: center;
  }
  .footer-brand .logo-lockup {
    justify-content: center;
    width: 100%;
  }
  .footer-tagline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-bottom {
    padding: 20px 24px;
    gap: 10px 20px;
  }
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */

.wa-widget {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.wa-button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.wa-button:hover {
  transform: scale(1.06);
}

.wa-button svg {
  width: 30px;
  height: 30px;
}

.wa-button.wa-bounce {
  animation: wa-jump 0.9s ease-in-out 3;
}

@keyframes wa-jump {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-14px); }
  45% { transform: translateY(0); }
  60% { transform: translateY(-7px); }
  75% { transform: translateY(0); }
}

.wa-teaser {
  width: 290px;
  max-width: calc(100vw - 3rem);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(46, 42, 36, 0.28);
  padding: 1.1rem 1.2rem 1.2rem;
  position: relative;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.wa-teaser.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wa-teaser-close {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0.2rem;
}

.wa-teaser-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  padding-right: 1rem;
}

.wa-teaser-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
  flex-shrink: 0;
}

.wa-teaser-id {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.wa-teaser-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}

.wa-teaser-role {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--ink-soft);
}

.wa-teaser-text {
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 1rem;
}

.wa-teaser-btn {
  display: block;
  text-align: center;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  transition: background 0.25s ease;
}

.wa-teaser-btn:hover {
  background: #8a4229;
}

@media (max-width: 720px) {
  .wa-widget { right: 1rem; bottom: 1rem; }
  .wa-button { width: 52px; height: 52px; }
  .wa-button svg { width: 27px; height: 27px; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 720px) {
  .header-top {
    grid-template-columns: auto 1fr auto;
    padding: 16px 20px 12px;
  }
  .header-cta a span.cta-text { display: none; }
  .header-cta a { padding: 12px 14px; }
  .header-social { gap: 8px; }
  .header-social a { width: 26px; height: 26px; }
  .header-social svg { width: 12px; height: 12px; }
  .logo-img { height: 32px; }

  .nav-toggle {
    display: block;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }

  .header-nav {
    display: none;
    padding: 8px 20px 18px;
  }
  .header-nav.open { display: block; }
  .header-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .header-nav li:not(:first-child)::before {
    display: none;
  }

  .nav-dropdown-panel {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    background: none;
    margin-top: 10px;
    padding: 0;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }

  .wellness-section {
    padding: 72px 16px 100px;
  }
  .wellness-wheel-wrap {
    --wheel-size: clamp(180px, 50vw, 260px);
    --label-radius: calc(var(--wheel-size) / 2 + clamp(20px, 5vw, 30px));
    --label-width: clamp(62px, 20vw, 84px);
    margin-bottom: 40px;
  }
  .wheel-label-inner {
    font-size: 0.58rem;
  }

  .hero-media::after {
    display: none;
  }
  .hero-text {
    position: static;
    align-items: center;
    text-align: center;
    padding: 40px 20px 40px;
    max-width: 100%;
  }
  .hero-text .overline {
    color: var(--terracotta);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }
  .hero-text h1 {
    color: var(--ink);
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .hero-cta-row .btn {
    padding: 15px 30px;
    font-size: 0.78rem;
  }
  .hero-text h1 em {
    color: var(--terracotta);
  }
  .hero-text .btn-outline {
    color: var(--ink);
    border-color: var(--ink);
  }
  .hero-text .btn-outline:hover {
    background: var(--ink);
    color: var(--cream);
  }
  .hero-cta-row {
    justify-content: center;
  }
  .about-section { padding: 72px 20px; }
}
