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

:root {
  --bg:           #F7F5F0;   /* crema claro - fondo principal */
  --bg-soft:      #EDEAE3;   /* crema medio - secciones alternas */
  --bg-warm:      #E7E0D0;   /* crema dorado suave - chips, miniaturas */
  --panel:        #FFFFFF;   /* blanco - cards y formularios */
  --ink:          #1A1A2E;   /* casi negro azulado - titulos */
  --ink-muted:    #4A4A6A;   /* gris azulado - texto cuerpo */
  --primary:      #A8843F;   /* dorado oscuro - acentos, labels, enlaces */
  --primary-dark: #8A6C30;   /* dorado profundo - hover */
  --primary-light:#F4ECDC;   /* dorado muy claro - fondos hover */
  --accent:       #C9A765;   /* dorado principal */
  --accent-dark:  #A8843F;   /* dorado oscuro */
  --gold:         #C9A765;   /* dorado principal */
  --navy:         #1E2535;   /* navy suavizado - header/hero */
  --navy-deep:    #161C27;   /* navy logo - footer */
  --gold-light:   #E0C186;   /* dorado claro - texto sobre navy */
  --gradient-gold: linear-gradient(135deg, #A8843F 0%, #C9A765 40%, #E0C186 60%, #C9A765 100%);
  --stroke:       #E2DACA;   /* borde calido */
  --shadow-sm:    0 2px 10px rgba(22,28,39,0.07);
  --shadow:       0 14px 38px rgba(22,28,39,0.13);
  --radius-sm:    6px;
  --radius:       14px;
  --radius-lg:    22px;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.3rem; }

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* ── SKIP LINK ───────────────────────────────── */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 1rem; top: 1rem;
  background: #fff; padding: 0.75rem 1rem;
  border-radius: var(--radius-sm); z-index: 9999;
}

/* ── NAVIGATION ──────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 900;
  background: rgba(253,250,246,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

/* Logo placeholder */
.brand-placeholder {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border: 1.5px dashed var(--stroke);
  border-radius: var(--radius-sm);
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border: 1px solid var(--stroke);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px;
  background: var(--ink); border-radius: 2px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.menu > a,
.has-dropdown > .dropdown-trigger {
  display: flex; align-items: center; gap: 0.2rem;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  color: var(--ink-muted);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.18s, background 0.18s;
}

.menu > a:hover,
.menu > a[aria-current='page'],
.has-dropdown:hover .dropdown-trigger {
  color: var(--primary);
  background: var(--primary-light);
}

/* Dropdown */
.has-dropdown { position: relative; }

.chevron-icon {
  width: 12px; height: 12px;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}
.has-dropdown:hover .chevron-icon,
.has-dropdown.open .chevron-icon { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -0.5rem;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-size: 0.87rem;
  color: var(--ink-muted);
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
.dropdown-menu a:hover { background: var(--bg-soft); color: var(--primary); }
.dropdown-menu .dropdown-divider {
  border: none; border-top: 1px solid var(--stroke);
  margin: 0.4rem 0;
}
.dropdown-menu .dropdown-all {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.84rem;
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 0.72rem 1.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-cta {
  background: var(--primary); color: #fff;
  box-shadow: 0 8px 24px rgba(168,92,56,0.3);
}
.btn-cta:hover { background: var(--primary-dark); }

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

.btn-light {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5); color: #fff;
}
.btn-light:hover { background: rgba(255,255,255,0.28); }

.btn-white {
  background: #fff; color: var(--primary);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.btn-white:hover { background: var(--bg-soft); }

.nav-cta { font-size: 0.88rem; padding: 0.6rem 1.2rem; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  padding: 6rem 0 0;
  background: var(--bg);
  text-align: center;
}

.hero-inner { max-width: 760px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 54ch;
  margin: 0 auto 2.2rem;
  font-weight: 400;
}

.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Hero banner (wide image placeholder) */
.hero-banner {
  position: relative;
}

.hero-img-placeholder {
  background: var(--bg-warm);
  border: 2px dashed var(--stroke);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  min-height: 400px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.8rem;
  color: var(--primary);
  padding: 3rem;
}

.hero-img-placeholder svg { opacity: 0.45; }

.hero-img-placeholder strong {
  font-size: 1rem; color: var(--ink-muted);
  font-weight: 600;
}

.hero-img-placeholder span {
  font-size: 0.83rem; color: var(--ink-muted);
  max-width: 38ch; text-align: center; line-height: 1.5;
}

/* ── IMAGE PLACEHOLDER ────────────────────────── */
.img-placeholder {
  background: var(--bg-soft);
  border: 2px dashed var(--stroke);
  border-radius: var(--radius);
  min-height: 280px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.7rem;
  color: var(--primary);
  text-align: center;
  padding: 2rem;
}
.img-placeholder svg { opacity: 0.4; }
.img-placeholder strong { font-size: 0.92rem; color: var(--ink-muted); font-weight: 600; }
.img-placeholder span { font-size: 0.8rem; color: var(--ink-muted); max-width: 22ch; line-height: 1.5; }

/* ── STATS BAR ────────────────────────────────── */
.stats-bar {
  background: var(--primary);
  padding: 2.2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

/* ── SECTIONS ─────────────────────────────────── */
.section      { padding: 5rem 0; }
.section-sm   { padding: 3rem 0; }
.section-bg-soft { background: var(--bg-soft); }
.section-bg-warm { background: var(--bg-warm); }
.section-bg-sage { background: var(--bg-soft); }

h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }

.section-label {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 60ch;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

/* ── PAGE HEADER ──────────────────────────────── */
.page-header {
  background: var(--primary);
  padding: 4rem 0 3rem;
  color: #fff;
}
.page-header p.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
}
.page-header p.breadcrumb a { color: rgba(255,255,255,0.65); }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; margin-bottom: 0.8rem;
}
.page-header > .container > p:last-child {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem; max-width: 62ch;
}

/* ── GRIDS ────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1.5rem; }

.grid-services {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1.5rem;
}

/* ── FEATURE CARDS (home services) ───────────── */
.features-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--stroke);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--panel);
  padding: 2.2rem;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  transition: background 0.2s;
  text-decoration: none;
  color: var(--ink);
}
.feature-card:hover { background: var(--primary-light); }

.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--stroke);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin: 0 0 1rem;
  line-height: 1.65;
}

.feature-arrow {
  margin-top: 0.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex; align-items: center; gap: 0.3rem;
}

/* ── GENERIC CARDS ────────────────────────────── */
.card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 0.55rem; }
.card p  { color: var(--ink-muted); font-size: 0.97rem; }

/* ── SERVICE CARDS (services.html) ───────────── */
.service-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0.85rem;
  transition: transform 0.22s, box-shadow 0.22s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.service-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--bg-warm);
  display: grid; place-items: center;
  color: var(--primary);
}

.service-card h3 { font-size: 1.12rem; color: var(--primary); margin: 0; }
.service-card p  { color: var(--ink-muted); font-size: 0.93rem; margin: 0; flex: 1; line-height: 1.65; }

.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.service-tag {
  background: var(--bg-soft);
  color: var(--ink-muted);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.76rem; font-weight: 600;
}

/* ── STEPS (process) ─────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: var(--stroke);
  margin-top: 1.6rem;
}
.step-item { text-align: center; padding: 0 0.5rem; }
.step-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid; place-items: center;
  margin: 0 auto 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700;
}
.step-item h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 0.5rem; }
.step-item p  { font-size: 0.92rem; color: var(--ink-muted); }

/* ── BLOG CARDS ───────────────────────────────── */
.blog-card {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.blog-card-img {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--stroke);
  min-height: 200px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem; padding: 1.5rem;
  text-align: center; color: var(--primary);
}
.blog-card-img svg { opacity: 0.4; }
.blog-card-img span { font-size: 0.75rem; color: var(--ink-muted); max-width: 20ch; line-height: 1.4; }
.blog-card-img.has-photo { padding: 0; min-height: 0; }
.blog-card-photo { width: 100%; height: 210px; object-fit: cover; display: block; }

.blog-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.blog-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}
.blog-card h3 { font-size: 1.08rem; color: var(--ink); margin: 0; line-height: 1.35; }
.blog-card p  { font-size: 0.9rem; color: var(--ink-muted); margin: 0; flex: 1; }
.blog-card .read-more {
  font-size: 0.85rem; font-weight: 600;
  color: var(--primary);
  display: flex; align-items: center; gap: 0.3rem;
}
.blog-date { font-size: 0.78rem; color: var(--ink-muted); }

/* ── TESTIMONIALS ─────────────────────────────── */
.quote-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--stroke);
  display: block;
  margin-bottom: 0.8rem;
}
.quote-card blockquote {
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.72;
  margin: 0 0 1rem;
}
.quote-card cite {
  font-style: normal;
  font-size: 0.87rem;
  color: var(--ink-muted);
  font-weight: 600;
}

/* ── IMPACT CARDS ─────────────────────────────── */
.impact-card {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.impact-card h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 0.5rem; }
.impact-card p  { font-size: 0.92rem; color: var(--ink-muted); margin: 0; }

/* ── VALUES ───────────────────────────────────── */
.values-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.value-chip {
  background: var(--bg-warm);
  color: var(--primary);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.38rem 1rem;
  font-size: 0.88rem; font-weight: 600;
}

/* ── BENEFITS LIST ────────────────────────────── */
.benefits-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.benefits-list li {
  display: flex; gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.97rem; color: var(--ink-muted);
}
.benefits-list li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  margin-top: 0.52rem; flex-shrink: 0;
}

/* ── FAQ ──────────────────────────────────────── */
.faq-section details {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: var(--panel);
  padding: 1.1rem 1.4rem;
  transition: box-shadow 0.2s;
}
.faq-section details[open] { box-shadow: var(--shadow-sm); }
.faq-section details + details { margin-top: 0.85rem; }
.faq-section summary {
  cursor: pointer; list-style: none;
  font-weight: 600; color: var(--primary);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.97rem;
}
.faq-section summary::-webkit-details-marker { display: none; }
.faq-section summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 400;
  color: var(--primary); flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-section details[open] summary::after { transform: rotate(45deg); }
.faq-section details p { margin: 0.8rem 0 0; color: var(--ink-muted); font-size: 0.97rem; }

/* ── CTA BAND ─────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 2.5rem 3rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.cta-band h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: #fff; margin-bottom: 0.5rem;
}
.cta-band p { color: rgba(255,255,255,0.82); margin: 0; font-size: 1rem; }

/* Full-width CTA section */
.cta-section {
  background: var(--primary);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff; margin-bottom: 0.75rem;
}
.cta-section p {
  color: rgba(255,255,255,0.8); font-size: 1.05rem;
  max-width: 52ch; margin: 0 auto 2rem;
}

/* ── CONTACT ──────────────────────────────────── */
.contact-box {
  background: var(--panel);
  border-radius: var(--radius); border: 1px solid var(--stroke);
  padding: 2rem;
}
.form-row { display: grid; gap: 1rem; }
.form-row label {
  display: flex; flex-direction: column; gap: 0.35rem;
  font-weight: 600; font-size: 0.9rem; color: var(--ink);
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 0.78rem 1rem;
  font: inherit; background: var(--bg-soft); color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--primary); background: #fff;
}
.form-row textarea { min-height: 140px; resize: vertical; }

.contact-info-item {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--stroke);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--bg-warm); display: grid; place-items: center;
  color: var(--primary); flex-shrink: 0;
}
.contact-info-text { flex: 1; }
.contact-info-text strong {
  display: block; font-size: 0.8rem; color: var(--ink-muted);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.contact-info-text a, .contact-info-text span { color: var(--ink); font-size: 0.97rem; }

.info-util {
  background: var(--bg-warm); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.2rem;
}
.info-util h3 { font-size: 1rem; color: var(--primary); margin-bottom: 0.9rem; }
.info-util-item { display: flex; gap: 0.7rem; margin-bottom: 0.7rem; font-size: 0.94rem; color: var(--ink-muted); }
.info-util-item strong { color: var(--ink); }

/* ── SERVICE DETAIL ───────────────────────────── */
.service-detail-meta { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1rem; }
.meta-tag {
  background: var(--bg-warm); color: var(--primary);
  border: 1px solid var(--stroke);
  border-radius: 999px; padding: 0.3rem 0.9rem;
  font-size: 0.82rem; font-weight: 600;
}

/* ── FOOTER ───────────────────────────────────── */
footer { background: #0D2418; color: #C8DDD0; }

.footer-grid {
  padding: 4rem 0 2.5rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: #fff; margin-bottom: 0.7rem;
}
.footer-brand-sub { font-size: 0.88rem; font-style: italic; color: rgba(180,210,190,0.75); margin-bottom: 1rem; display: block; }
.footer-grid > div > p { font-size: 0.9rem; color: #9DBDAB; line-height: 1.65; margin: 0; }

.footer-title {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}
.footer-link {
  display: block; margin-bottom: 0.55rem;
  font-size: 0.9rem; color: #90C4A5;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 0; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(180,215,195,0.4); margin: 0; }

/* ── WHATSAPP FLOAT ───────────────────────────── */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 1000; }
.whatsapp-float a {
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float a:hover { transform: scale(1.08); box-shadow: 0 14px 36px rgba(37,211,102,0.5); }

/* ── REVEAL ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 960px) {
  .hero { padding: 4rem 0 0; }
  .features-wrap { grid-template-columns: 1fr; }
  .steps-row { display: flex; flex-direction: column; gap: 1.5rem; }
  .step-connector { display: none; }
  .step-item { text-align: left; display: flex; gap: 1rem; align-items: flex-start; }
  .step-dot { margin: 0; flex-shrink: 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .grid-2, .grid-3, .grid-4, .grid-services, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 1.8rem; }

  .menu {
    position: absolute; top: 76px; left: 0; right: 0;
    display: none; flex-direction: column; align-items: flex-start;
    background: var(--panel); border-bottom: 1px solid var(--stroke);
    padding: 1rem 1.4rem; gap: 0.3rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .has-dropdown { width: 100%; }
  .has-dropdown .dropdown-trigger { width: 100%; justify-content: space-between; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: hidden; height: 0;
    overflow: hidden; transform: none; box-shadow: none;
    border: none; padding: 0; min-width: 0;
    transition: height 0.25s ease, visibility 0.25s;
    background: var(--bg-soft); border-radius: 10px;
    margin-top: 0.3rem;
  }
  .has-dropdown.open .dropdown-menu {
    visibility: visible; height: auto; padding: 0.5rem;
  }
}

@media (max-width: 640px) {
  .hero { padding: 3rem 0 0; }
  .section { padding: 3.5rem 0; }
  .page-header { padding: 3rem 0 2rem; }
  .cta-section { padding: 3.5rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-img-placeholder { min-height: 260px; }
}


/* ============================================================
   REBRAND — Hipnosis Integral Rangel
   Identidad dorada / navy / crema. Overrides sobre la base.
   ============================================================ */

/* ── Header navy + logo ──────────────────────── */
.topbar {
  background: rgba(22,28,39,0.96);
  border-bottom: 1px solid rgba(201,167,101,0.28);
}
.brand img { height: 52px; width: auto; display: block; border-radius: 4px; }
@media (max-width: 640px) { .brand img { height: 40px; } }
.menu > a,
.has-dropdown > .dropdown-trigger { color: #E8E2D4; }
.menu > a:hover,
.menu > a[aria-current='page'],
.has-dropdown:hover .dropdown-trigger,
.has-dropdown.open .dropdown-trigger {
  color: var(--gold-light);
  background: rgba(201,167,101,0.12);
}
.nav-toggle { background: transparent; border-color: rgba(201,167,101,0.4); }
.nav-toggle span { background: #E8E2D4; }
.dropdown-menu a:hover { background: var(--primary-light); color: var(--primary-dark); }

/* ── Botones dorados ─────────────────────────── */
.btn-cta {
  background: var(--gradient-gold);
  color: var(--navy-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 22px rgba(168,132,63,0.32);
}
.btn-cta:hover { background: var(--gradient-gold); opacity: 0.92; }
.nav-cta { color: var(--navy-deep); }
.btn-white { color: var(--primary-dark); }

/* ── Hero navy, texto dorado ─────────────────── */
.hero { background: var(--navy); color: #F0EBE0; }
.hero-eyebrow { color: var(--gold-light); }
.hero h1 { color: #F8F4EB; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub { color: rgba(240,235,224,0.82); }
.hero .btn-outline { border-color: var(--gold-light); color: var(--gold-light); }
.hero .btn-outline:hover { background: rgba(224,193,134,0.14); }
.hero-img-placeholder {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201,167,101,0.4);
  color: var(--gold-light);
}
.hero-img-placeholder strong { color: #F0EBE0; }
.hero-img-placeholder span { color: rgba(240,235,224,0.68); }

/* ── Stats navy + numeros dorados ────────────── */
.stats-bar { background: var(--navy-deep); }
.stat-number { color: var(--gold-light); }

/* ── Page header navy (paginas internas) ─────── */
.page-header { background: var(--navy); }

/* ── Pasos: circulo navy + numero dorado ─────── */
.step-dot { background: var(--navy); color: var(--gold-light); }

/* ── Detalle dorado en titulos de card ───────── */
.feature-card h3,
.service-card h3,
.card h3 { color: var(--primary-dark); }

/* ── Comillas doradas ────────────────────────── */
.quote-mark { color: var(--accent); }

/* ── CTA navy ────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); }
.cta-section { background: var(--navy); }

/* ── Footer navy del logo ────────────────────── */
footer { background: var(--navy-deep); color: #C9C3D0; }
.footer-brand { color: #F8F4EB; }
.footer-brand-sub { color: rgba(224,193,134,0.82); }
.footer-grid > div > p { color: #A9A5B8; }
.footer-title { color: rgba(255,255,255,0.5); }
.footer-link { color: #C3B98F; }
.footer-link:hover { color: var(--gold-light); }
.footer-bottom { border-top-color: rgba(201,167,101,0.14); }

/* ── Enlaces legales discretos del footer ────── */
.footer-legal {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  color: rgba(180,200,200,0.55);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  line-height: 1.6;
}
.footer-legal a {
  color: rgba(195,185,143,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold-light); }
.footer-legal .sep { color: rgba(201,167,101,0.35); }

/* ── Páginas legales (contenido de texto) ────── */
.legal { max-width: 820px; }
.legal-updated {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0 0 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--stroke);
}
.legal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 2.2rem 0 0.7rem;
  letter-spacing: 0.01em;
}
.legal h2:first-of-type { margin-top: 0; }
.legal p { margin: 0 0 1rem; color: var(--ink-muted); line-height: 1.75; }
.legal ul { margin: 0 0 1rem; padding-left: 1.3rem; }
.legal li { margin-bottom: 0.5rem; color: var(--ink-muted); line-height: 1.7; }
.legal li::marker { color: var(--accent); }
.legal strong { color: var(--ink); }
.legal .legal-note {
  background: var(--primary-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.2rem;
  margin: 0 0 1.4rem;
}
.legal .legal-note p { margin: 0; }
.legal .legal-copyright {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--stroke);
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ── Foto perfil de la hipnoterapeuta ────────── */
/* Foto principal del hero (panorámica) */
.hero-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 16 / 7;
  display: block;
  border: 1px solid rgba(201,167,101,0.35);
}
/* Foto inspiradora panorámica (testimonios) */
.inspira-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 21 / 9;
  display: block;
}
@media (max-width: 640px) {
  .hero-photo { aspect-ratio: 4 / 3; }
  .inspira-photo { aspect-ratio: 4 / 3; }
}
.service-media { position: relative; }
.service-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}
.service-media::after {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.perfil-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
}
.perfil-frame { position: relative; }
.perfil-frame::after {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ── Menu movil sobre navy ───────────────────── */
@media (max-width: 960px) {
  .menu {
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(201,167,101,0.2);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  }
  .dropdown-menu { background: rgba(255,255,255,0.06); }
  .has-dropdown.open .dropdown-menu a { color: #E8E2D4; }
  .has-dropdown.open .dropdown-menu a:hover { background: rgba(201,167,101,0.15); color: var(--gold-light); }
  .nav-cta { display: none; }
}

/* ============================================================
   SECCIONES DE 2 COLUMNAS (texto + imagen) — mobile-first
   Móvil (<768px): 1 columna, imagen arriba, botones full width.
   Desktop (768px+): se conservan las proporciones originales.
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr;     /* móvil: una sola columna */
  gap: 2rem;
  align-items: center;
}
.split__media { order: -1; }       /* la imagen siempre va arriba en móvil */
.split__media img,
.split__media .img-placeholder { width: 100%; }

@media (max-width: 767px) {
  .split .btn { width: 100%; }     /* botones a ancho completo en móvil */
}

@media (min-width: 768px) {
  .split { gap: 4rem; }                         /* separación original de desktop */
  .split--1-1 { grid-template-columns: 1fr 1fr; }
  .split--3-2 { grid-template-columns: 3fr 2fr; }
  .split--2-3 { grid-template-columns: 2fr 3fr; }
  .split__media { order: unset; }               /* respeta el orden del HTML */
}

/* ══════════════════════════════════════════════
   HERO FULLBLEED — imagen de fondo con capas
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
  background: #080A16;
  text-align: center;
}

/* Capa de imagen con zoom lento al cargar */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-consultorio.png');
  background-size: cover;
  background-position: center center;
  animation: heroZoom 18s ease-out forwards;
  transform-origin: center center;
  z-index: 0;
  will-change: transform;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* 3 capas de degradado apiladas */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(8,10,22,0.55) 0%, rgba(8,10,22,0.18) 30%, transparent 55%),
    radial-gradient(ellipse at 50% 45%, transparent 18%, rgba(8,10,22,0.82) 100%),
    linear-gradient(to top, rgba(10,13,28,0.97) 0%, rgba(10,13,28,0.70) 45%, rgba(15,18,40,0.28) 75%);
}

/* Contenido anclado al fondo del hero */
.hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 5rem;
  text-shadow: 0 2px 18px rgba(4,6,16,0.7), 0 1px 4px rgba(4,6,16,0.5);
}

/* Eyebrow con líneas decorativas a los lados */
.hero .hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}
.hero .hero-eyebrow::before,
.hero .hero-eyebrow::after {
  content: '';
  flex: 0 0 52px;
  height: 1px;
  display: block;
}
.hero .hero-eyebrow::before {
  background: linear-gradient(to right, transparent, rgba(224,193,134,0.65));
}
.hero .hero-eyebrow::after {
  background: linear-gradient(to left, transparent, rgba(224,193,134,0.65));
}

/* Título: primera línea blanca, segunda cursiva dorada */
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  line-height: 1.12;
  color: #F8F4EB;
  margin-bottom: 1.3rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

/* Párrafo al 72% de opacidad */
.hero .hero-sub {
  font-size: 1.1rem;
  color: rgba(240,235,224,0.72);
  max-width: 54ch;
  margin: 0 auto 2.4rem;
  font-weight: 400;
  line-height: 1.75;
}

/* Botones */
.hero .hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero .btn-outline {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.hero .btn-outline:hover {
  background: rgba(224,193,134,0.14);
}

/* ── Animación fade + slide up escalonada ── */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.3s + var(--i) * 0.22s);
}

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

/* ── Responsive ─────────────────────────── */
@media (max-width: 960px) {
  .hero { min-height: 100svh; }
  .hero .hero-inner { padding-bottom: 4rem; }
}
@media (max-width: 640px) {
  .hero .hero-inner { padding-bottom: 3rem; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero .hero-eyebrow::before,
  .hero .hero-eyebrow::after { flex-basis: 32px; }
}
