/* ============================================================
   PYEL CANELA — MAIN STYLESHEET
   Paleta "Canela" · Fraunces + DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,500;1,9..144,600&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ——— CSS VARIABLES ——— */
:root {
  /* Marca canela */
  --c-primary:        #8B5A3C;   /* Canela Pyel — wordmark, acentos, líneas */
  --c-primary-dark:   #6B4423;   /* Canela Profunda — texto destacado */
  --c-primary-light:  #C9956F;   /* Canela Suave — gradientes, fondos sutiles */
  --c-copper:         #B87333;   /* Cobre — acentos premium, números, líneas finas */

  /* Superficies oscuras (repurpose de "secondary") */
  --c-secondary:      #4A3120;   /* café profundo — títulos, superficies medias */
  --c-secondary-dark: #2A1B11;   /* espresso — hero base, footer, franjas */

  /* Acento cálido auxiliar */
  --c-accent:         #B87333;

  /* Fondos */
  --c-bg:             #FAF6F0;   /* Papel Cálido */
  --c-bg-alt:         #F2EBE0;   /* Lino Crema */
  --c-white:          #FFFFFF;
  --c-cream:          #FBF7F1;   /* crema para texto sobre oscuro */

  /* Texto */
  --c-text:           #2A2118;   /* Tinta Marrón (no negro puro) */
  --c-muted:          #6B5D52;   /* Marrón Apagado */

  /* Detalles */
  --c-border:         #E7DACB;
  --c-warn-bg:        #FBF3E9;

  /* Tipografía */
  --ff-head:          'Fraunces', Georgia, serif;
  --ff-body:          'DM Sans', system-ui, sans-serif;

  /* Radios */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;

  /* Sombras (cálidas) */
  --sh-sm: 0 2px 10px rgba(74,49,32,.07);
  --sh-md: 0 10px 34px rgba(74,49,32,.12);
  --sh-lg: 0 22px 60px rgba(42,27,17,.18);
}

/* ——— RESET ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--c-text); background: var(--c-bg); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
p    { margin-bottom: 1rem; }
svg  { display: block; }

/* ——— TYPOGRAPHY ——— */
h1, h2, h3, h4 {
  font-family: var(--ff-head); font-weight: 600; line-height: 1.14;
  font-optical-sizing: auto; letter-spacing: -.012em; color: var(--c-secondary);
}
h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 600; letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); }
em { font-style: italic; }

/* ——— LAYOUT ——— */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 92px 0; }

/* ——— UTILITY ——— */
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-body); font-size: .76rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-copper); margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 22px; height: 1px; background: var(--c-copper); opacity: .6;
}
.text-center .section-label::before { display: none; }
.section-title { color: var(--c-secondary); margin-bottom: 18px; }
.section-subtitle { color: var(--c-muted); font-size: 1.06rem; max-width: 640px; line-height: 1.8; }
.divider { width: 54px; height: 2px; background: var(--c-copper); border-radius: 2px; margin: 18px 0 32px; }
.divider-center { margin-left: auto; margin-right: auto; }
.badge { display: inline-block; padding: 5px 15px; border-radius: 50px; font-size: .78rem; font-weight: 600; font-family: var(--ff-body); }
.badge-primary { background: rgba(139,90,60,.12); color: var(--c-primary-dark); }
.badge-green   { background: rgba(184,115,51,.14); color: var(--c-copper); }

/* ——— ICON SYSTEM (line icons) ——— */
.ico { width: 24px; height: 24px; stroke: currentColor; fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ——— LOGO MARK (espiral canela) ——— */
/* Props set on the <svg> so they inherit into <use> shadow content */
.logo-mark { width: 1.7em; height: 1.7em; flex-shrink: 0; color: var(--c-primary);
  fill: none; stroke: currentColor; stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round; }

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 30px; border-radius: 50px;
  font-family: var(--ff-body); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  cursor: pointer; transition: all .28s ease;
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn .ico { width: 19px; height: 19px; }
.btn-primary  { background: var(--c-primary);   color: var(--c-cream);   border-color: var(--c-primary); }
.btn-primary:hover  { background: var(--c-primary-dark); border-color: var(--c-primary-dark); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-secondary{ background: transparent; color: var(--c-secondary); border-color: var(--c-secondary); }
.btn-secondary:hover{ background: var(--c-secondary); color: var(--c-cream); transform: translateY(-2px); }
.btn-white    { background: var(--c-cream); color: var(--c-primary-dark); border-color: var(--c-cream); }
.btn-white:hover    { background: #fff; transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-outline-light{ background: transparent; color: var(--c-cream); border-color: rgba(251,247,241,.45); }
.btn-outline-light:hover{ background: rgba(251,247,241,.12); border-color: var(--c-cream); transform: translateY(-2px); }
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }
.btn-sm { padding: 9px 21px;  font-size: .85rem; }

/* ——— NAVBAR ——— */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: all .32s ease; background: transparent;
}
.navbar.scrolled {
  background: rgba(250,246,240,.94);
  backdrop-filter: blur(14px);
  box-shadow: var(--sh-sm);
  padding: 11px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; color: var(--c-cream); letter-spacing: -.02em; }
.nav-logo span { color: var(--c-primary-light); }
.navbar.scrolled .nav-logo { color: var(--c-secondary); }
.navbar.scrolled .nav-logo span { color: var(--c-primary); }
.logo-mark { color: var(--c-primary-light); }
.navbar.scrolled .logo-mark { color: var(--c-primary); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-family: var(--ff-body); font-weight: 500; font-size: .92rem; color: rgba(251,247,241,.82); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--c-cream); }
.navbar.scrolled .nav-links a { color: var(--c-text); }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: var(--c-primary); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--c-cream); border-radius: 2px; transition: all .3s; }
.navbar.scrolled .nav-hamburger span { background: var(--c-secondary); }

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed; inset: 0; background: var(--c-bg); z-index: 1001;
  padding: 84px 28px 40px; flex-direction: column; gap: 6px; overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--ff-head); font-size: 1.25rem; font-weight: 600; color: var(--c-secondary); padding: 13px 0; border-bottom: 1px solid var(--c-border); }
.nav-mobile-close { position: absolute; top: 22px; right: 24px; background: none; border: none; cursor: pointer; color: var(--c-secondary); line-height: 0; }
.nav-mobile-close .ico { width: 28px; height: 28px; stroke-width: 1.8; }

@media (max-width: 820px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .nav-hamburger { display: flex; }
}

/* ——— HERO ——— */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(152deg, #2A1B11 0%, #4A2E1A 46%, #6B4423 100%);
  position: relative; overflow: hidden; padding: 130px 0 90px;
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 75%; height: 190%;
  background: radial-gradient(ellipse, rgba(184,115,51,.20) 0%, transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-copper), transparent);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(201,149,111,.14); border: 1px solid rgba(201,149,111,.32);
  color: var(--c-primary-light); padding: 8px 18px; border-radius: 50px;
  font-family: var(--ff-body); font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; background: var(--c-copper); border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(1.5); }
}
.hero h1 { color: var(--c-cream); margin-bottom: 24px; font-weight: 600; }
.hero h1 em { font-style: italic; color: var(--c-primary-light); font-weight: 500; }
.hero-sub { color: rgba(251,247,241,.74); font-size: 1.12rem; max-width: 520px; margin-bottom: 40px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual card */
.hero-card {
  background: rgba(251,247,241,.06); backdrop-filter: blur(18px);
  border: 1px solid rgba(251,247,241,.14); border-radius: var(--r-xl);
  padding: 36px;
}
.hero-card-title { font-family: var(--ff-body); font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--c-primary-light); margin-bottom: 24px; }
.hero-diag-list { display: flex; flex-direction: column; gap: 12px; }
.hero-diag-item { display: flex; align-items: center; gap: 14px; padding: 14px; background: rgba(251,247,241,.05); border: 1px solid rgba(251,247,241,.07); border-radius: var(--r-md); }
.hero-diag-icon { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(184,115,51,.16); color: var(--c-primary-light); }
.hero-diag-icon .ico { width: 21px; height: 21px; }
.hero-diag-label { font-weight: 600; color: var(--c-cream); font-size: .93rem; }
.hero-diag-sub   { font-size: .78rem; color: rgba(251,247,241,.5); margin-top: 2px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.hero-stat { text-align: center; padding: 18px 12px; background: rgba(251,247,241,.05); border: 1px solid rgba(251,247,241,.07); border-radius: var(--r-md); }
.hero-stat-num { font-family: var(--ff-head); font-size: 2.1rem; font-weight: 700; color: var(--c-primary-light); display: block; }
.hero-stat-lbl { font-size: .76rem; color: rgba(251,247,241,.55); margin-top: 4px; display: block; }

/* ——— AUTHORITY STRIP ——— */
.authority-strip { background: var(--c-secondary-dark); padding: 34px 0; overflow: hidden; }
.authority-inner { display: flex; align-items: center; gap: 24px; overflow-x: auto; scrollbar-width: none; }
.authority-inner::-webkit-scrollbar { display: none; }
.authority-label {
  font-family: var(--ff-body); font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(251,247,241,.4); white-space: nowrap; padding-right: 24px;
  border-right: 1px solid rgba(251,247,241,.14);
}
.authority-items { display: flex; gap: 36px; align-items: center; flex-shrink: 0; }
.authority-item { display: flex; align-items: center; gap: 9px; color: rgba(251,247,241,.74); font-size: .88rem; font-weight: 500; white-space: nowrap; }
.authority-dot { width: 6px; height: 6px; background: var(--c-copper); border-radius: 50%; flex-shrink: 0; }

/* ——— PROBLEM / SOLUTION ——— */
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ps-box { border-radius: var(--r-xl); padding: 42px; }
.ps-problem { background: var(--c-bg-alt); border: 1px solid var(--c-border); }
.ps-solution { background: linear-gradient(150deg, var(--c-secondary), #2E1F13); color: var(--c-cream); }
.ps-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.ps-problem .ps-icon { background: rgba(166,83,54,.12); color: #A65336; }
.ps-solution .ps-icon { background: rgba(201,149,111,.18); color: var(--c-primary-light); }
.ps-icon .ico { width: 26px; height: 26px; }
.ps-box h3 { margin-bottom: 12px; }
.ps-problem h3 { color: var(--c-primary-dark); }
.ps-solution h3 { color: var(--c-cream); }
.ps-box .lead { font-size: .98rem; margin-bottom: 22px; }
.ps-problem .lead { color: var(--c-text); }
.ps-solution .lead { color: rgba(251,247,241,.78); }
.ps-list { display: flex; flex-direction: column; gap: 12px; }
.ps-item { display: flex; align-items: flex-start; gap: 11px; font-size: .92rem; }
.ps-item .ico { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; stroke-width: 2; }
.ps-item-x { color: #A65336; }
.ps-item-check { color: var(--c-primary-light); }
.ps-problem .ps-item span:last-child { color: var(--c-text); }
.ps-solution .ps-item span:last-child { color: rgba(251,247,241,.84); }

/* ——— STEPS ——— */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 56px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 38px; left: calc(16.66% + 16px); right: calc(16.66% + 16px); height: 1px;
  background: linear-gradient(90deg, var(--c-copper), var(--c-primary-light), var(--c-copper));
  opacity: .5;
}
.step-card {
  background: var(--c-white); border-radius: var(--r-lg); padding: 38px 28px;
  text-align: center; border: 1px solid var(--c-border); box-shadow: var(--sh-sm);
  transition: all .3s ease;
}
.step-card:hover { transform: translateY(-7px); box-shadow: var(--sh-md); border-color: var(--c-primary-light); }
.step-number {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 22px;
  background: linear-gradient(140deg, var(--c-primary), var(--c-primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; color: var(--c-cream);
  position: relative; z-index: 1; box-shadow: 0 6px 18px rgba(139,90,60,.3);
}
.step-card h3 { color: var(--c-secondary); margin-bottom: 10px; }
.step-card p  { color: var(--c-muted); font-size: .94rem; margin: 0; }

/* ——— TECH / SERVICE CARDS ——— */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.service-card {
  background: var(--c-white); border-radius: var(--r-lg); padding: 32px;
  border: 1px solid var(--c-border); transition: all .3s; cursor: pointer;
}
.service-card:hover { border-color: var(--c-primary); box-shadow: var(--sh-md); transform: translateY(-5px); }
.service-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--c-bg-alt); color: var(--c-primary); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all .3s; }
.service-card:hover .service-icon { background: var(--c-primary); color: var(--c-cream); }
.service-icon .ico { width: 26px; height: 26px; }
.service-card h3 { color: var(--c-secondary); margin-bottom: 8px; font-size: 1.2rem; }
.service-card p  { color: var(--c-muted); font-size: .9rem; margin-bottom: 22px; line-height: 1.65; }

/* ——— TECHNOLOGY CARDS (encyclopedia) ——— */
.tech-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.tech-filter-btn {
  padding: 9px 21px; border-radius: 50px; border: 1.5px solid var(--c-border);
  background: var(--c-white); cursor: pointer; font-size: .88rem; font-weight: 500;
  color: var(--c-text); transition: all .2s; font-family: var(--ff-body);
}
.tech-filter-btn.active, .tech-filter-btn:hover { background: var(--c-secondary); color: var(--c-cream); border-color: var(--c-secondary); }
.tech-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.tech-card {
  background: var(--c-white); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--c-border); transition: all .3s; display: flex; flex-direction: column;
}
.tech-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); border-color: var(--c-primary-light); }
.tech-card-header { padding: 28px 28px 0; }
.tech-cat-tag { display: inline-flex; align-items: center; gap: 7px; padding: 4px 13px; border-radius: 50px; font-family: var(--ff-body); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.tag-grasa        { background: #F3E5D6; color: #8B5A3C; }
.tag-reafirmacion { background: #ECE2D2; color: #6B4423; }
.tag-facial       { background: #F5E9D9; color: #B87333; }
.tag-detox        { background: #EBE3D6; color: #5A4632; }
.tech-card h3 { color: var(--c-secondary); margin-bottom: 10px; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
.tech-card h3 .ico { width: 22px; height: 22px; color: var(--c-copper); flex-shrink: 0; }
.tech-card-body { padding: 14px 28px 28px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.tech-card-body p { font-size: .9rem; color: var(--c-muted); line-height: 1.7; margin-bottom: 20px; }

/* ——— CRO BLOCK ——— */
.cro-block {
  background: var(--c-warn-bg); border: 1px solid var(--c-primary-light);
  border-left: 3px solid var(--c-copper); border-radius: var(--r-md);
  padding: 22px 24px; margin-top: 28px;
}
.cro-block-label { display: flex; align-items: center; gap: 8px; font-family: var(--ff-body); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--c-copper); margin-bottom: 8px; }
.cro-block-label .ico { width: 17px; height: 17px; stroke-width: 2; }
.cro-block p { font-size: .88rem; color: var(--c-text); margin-bottom: 16px; font-weight: 500; line-height: 1.65; }
.cro-block .btn { font-size: .84rem; }

/* ——— CTA BAND ——— */
.cta-band {
  background: linear-gradient(150deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  padding: 92px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(251,247,241,.12), transparent 55%);
  pointer-events: none;
}
.cta-band h2 { color: var(--c-cream); margin-bottom: 16px; position: relative; }
.cta-band em { color: #F2D9C2; font-style: italic; }
.cta-band .cta-sub { color: rgba(251,247,241,.85); max-width: 560px; margin: 0 auto 36px; font-size: 1.06rem; position: relative; }
.cta-band .section-label { color: rgba(251,247,241,.7); }
.cta-band .section-label::before { background: rgba(251,247,241,.6); }

/* ——— TESTIMONIALS ——— */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-top: 48px; }
.testimonial-card { background: var(--c-white); border-radius: var(--r-lg); padding: 32px; border: 1px solid var(--c-border); box-shadow: var(--sh-sm); position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 14px; right: 26px; font-family: var(--ff-head); font-size: 4rem; line-height: 1; color: var(--c-primary-light); opacity: .35; }
.stars { display: inline-flex; gap: 3px; color: var(--c-copper); margin-bottom: 16px; }
.stars svg { width: 17px; height: 17px; fill: currentColor; }
.t-body { font-size: .96rem; color: var(--c-text); margin-bottom: 22px; line-height: 1.8; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(140deg, var(--c-primary-light), var(--c-primary)); display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-weight: 600; color: var(--c-cream); font-size: .95rem; flex-shrink: 0; }
.t-name   { font-weight: 600; font-size: .9rem; color: var(--c-secondary); }
.t-detail { font-size: .78rem; color: var(--c-muted); }

/* ——— BENEFITS LIST ——— */
.benefits-list { display: flex; flex-direction: column; gap: 14px; margin: 20px 0; }
.benefit-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px; background: var(--c-white); border-radius: var(--r-md); border: 1px solid var(--c-border); }
.benefit-icon { width: 44px; height: 44px; background: var(--c-bg-alt); color: var(--c-primary); border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-icon .ico { width: 23px; height: 23px; }
.benefit-text h4 { font-size: .95rem; color: var(--c-secondary); margin-bottom: 4px; font-family: var(--ff-head); font-weight: 600; }
.benefit-text p  { font-size: .85rem; color: var(--c-muted); margin: 0; line-height: 1.55; }

/* ——— PAGE HERO (inner pages) ——— */
.page-hero {
  background: linear-gradient(150deg, #2A1B11 0%, #4A2E1A 100%);
  padding: 150px 0 84px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -30%; right: -10%; width: 60%; height: 170%;
  background: radial-gradient(ellipse, rgba(184,115,51,.18) 0%, transparent 62%); pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .section-label { color: var(--c-primary-light); }
.page-hero .section-label::before { background: var(--c-primary-light); }
.page-hero h1 { color: var(--c-cream); }
.page-hero h1 em { font-style: italic; color: var(--c-primary-light); font-weight: 500; }
.page-hero p { color: rgba(251,247,241,.76); max-width: 600px; font-size: 1.1rem; margin-top: 16px; line-height: 1.75; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: rgba(251,247,241,.5); margin-bottom: 20px; }
.breadcrumb a { color: rgba(251,247,241,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--c-primary-light); }

/* ——— PROCESS STEPS (biometric page) ——— */
.process-timeline { display: flex; flex-direction: column; gap: 0; }
.process-step { display: grid; grid-template-columns: 76px 1fr; gap: 28px; align-items: start; padding: 40px 0; border-bottom: 1px solid var(--c-border); }
.process-step:last-child { border-bottom: none; }
.step-num { width: 62px; height: 62px; border-radius: 50%; background: linear-gradient(140deg, var(--c-primary), var(--c-primary-dark)); display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; color: var(--c-cream); flex-shrink: 0; box-shadow: 0 6px 18px rgba(139,90,60,.3); }
.process-step h3 { color: var(--c-secondary); margin-bottom: 10px; }
.process-step p  { color: var(--c-muted); font-size: .96rem; line-height: 1.8; margin-bottom: 14px; }

/* ——— CONTACT ——— */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.c-icon { width: 46px; height: 46px; background: var(--c-bg-alt); color: var(--c-primary); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon .ico { width: 23px; height: 23px; }
.c-label { font-size: .76rem; color: var(--c-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.c-value { font-weight: 600; font-size: .95rem; color: var(--c-text); }
.contact-form-box { background: var(--c-white); border-radius: var(--r-xl); padding: 40px; box-shadow: var(--sh-md); border: 1px solid var(--c-border); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 7px; color: var(--c-text); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm); font-family: var(--ff-body); font-size: .95rem;
  color: var(--c-text); background: var(--c-bg); transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(139,90,60,.12); }
.form-textarea { resize: vertical; min-height: 96px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ——— SERVICES PAGE CARDS ——— */
.spa-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.spa-card { background: var(--c-white); border-radius: var(--r-lg); padding: 34px; border: 1px solid var(--c-border); transition: all .3s; display: flex; flex-direction: column; box-shadow: var(--sh-sm); }
.spa-card:hover { border-color: var(--c-primary); box-shadow: var(--sh-md); transform: translateY(-5px); }
.spa-card-icon { width: 56px; height: 56px; border-radius: 15px; background: var(--c-bg-alt); color: var(--c-primary); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: all .3s; }
.spa-card:hover .spa-card-icon { background: var(--c-primary); color: var(--c-cream); }
.spa-card-icon .ico { width: 28px; height: 28px; }
.spa-card h3 { color: var(--c-secondary); font-size: 1.2rem; margin-bottom: 10px; }
.spa-card .spa-desc { color: var(--c-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 12px; }
.spa-card .spa-details { font-size: .82rem; color: var(--c-muted); margin-bottom: 24px; }
.spa-card .btn { margin-top: auto; align-self: flex-start; }

/* ——— ARTICLE (encyclopedia detail) ——— */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.article-content h2 { color: var(--c-secondary); margin: 40px 0 14px; font-size: 1.6rem; }
.article-content h3 { color: var(--c-secondary); margin: 28px 0 10px; font-size: 1.2rem; }
.article-content p  { color: var(--c-text); line-height: 1.85; margin-bottom: 16px; }
.article-content ul { margin: 12px 0 20px 4px; list-style: none; }
.article-content ul li { color: var(--c-text); margin-bottom: 10px; font-size: .95rem; line-height: 1.65; padding-left: 26px; position: relative; }
.article-content ul li::before { content: ''; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--c-copper); }
.article-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--c-white); border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--c-border); box-shadow: var(--sh-sm); }
.sidebar-card h4 { font-family: var(--ff-head); font-weight: 600; color: var(--c-secondary); margin-bottom: 14px; font-size: 1.05rem; }
.sidebar-list { display: flex; flex-direction: column; gap: 10px; }
.sidebar-list li { font-size: .88rem; color: var(--c-muted); display: flex; align-items: center; gap: 9px; }
.sidebar-list li::before { content: ''; width: 6px; height: 6px; background: var(--c-copper); border-radius: 50%; flex-shrink: 0; }

/* ——— FOOTER ——— */
.footer { background: var(--c-secondary-dark); color: rgba(251,247,241,.66); padding: 66px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-head); font-size: 1.45rem; font-weight: 700; color: var(--c-cream); margin-bottom: 16px; }
.footer-logo span { color: var(--c-primary-light); }
.footer .logo-mark { color: var(--c-primary-light); }
.footer-desc { font-size: .89rem; line-height: 1.75; max-width: 280px; }
.footer-heading { font-family: var(--ff-body); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--c-cream); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .89rem; color: rgba(251,247,241,.6); transition: color .2s; }
.footer-links a:hover { color: var(--c-primary-light); }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-link { width: 38px; height: 38px; background: rgba(251,247,241,.08); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: rgba(251,247,241,.8); transition: all .25s; }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
.social-link:hover { background: var(--c-primary); color: var(--c-cream); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(251,247,241,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: .82rem; gap: 16px; }

/* ——— WHATSAPP FLOAT ——— */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 998;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.42);
  cursor: pointer; transition: all .3s; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 36px rgba(37,211,102,.52); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-tip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--c-secondary-dark); color: var(--c-cream); padding: 7px 13px;
  border-radius: 8px; font-size: .8rem; font-weight: 600; white-space: nowrap;
  opacity: 0; transition: all .28s; pointer-events: none;
}
.whatsapp-float:hover .wa-tip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ——— FADE IN ANIMATION ——— */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ——— RESPONSIVE ——— */
@media (max-width: 960px) {
  .hero-inner      { grid-template-columns: 1fr; }
  .hero-visual     { display: none; }
  .ps-grid         { grid-template-columns: 1fr; }
  .steps-grid      { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .contact-grid    { grid-template-columns: 1fr; }
  .article-layout  { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-grid       { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 66px 0; }
  .footer-grid     { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: column; gap: 12px; text-align: center; }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .process-step    { grid-template-columns: 56px 1fr; gap: 18px; }
}

/* ——— RESPONSIVE HELPER ——— */
.responsive-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 820px) { .responsive-grid-2 { grid-template-columns: 1fr; gap: 40px; } }

/* ——— MISC ——— */
.section-bg-white { background: var(--c-white); }
.section-bg-alt   { background: var(--c-bg-alt); }
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }


/* ============================================================
   EDITORIAL SYSTEM — landing only
   ============================================================ */

/* Paper grain — barely-there texture for warmth */
.paper-grain { position: relative; }
.paper-grain::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16  0 0 0 0 0.10  0 0 0 0 0.06  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .6; mix-blend-mode: multiply;
}
.paper-grain > * { position: relative; z-index: 1; }

/* Background spiral motif (decorative) */
.bg-spiral {
  position: absolute; pointer-events: none; opacity: .06;
  width: 720px; height: 720px; color: var(--c-primary);
  fill: none; stroke: currentColor; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round;
}
.bg-spiral.bs-tr { top: -180px; right: -180px; transform: rotate(18deg); }
.bg-spiral.bs-bl { bottom: -220px; left: -240px; transform: rotate(-22deg); }
.bg-spiral.bs-center { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(8deg); }

/* Chapter framing */
.chapter { padding: 120px 0; position: relative; overflow: hidden; }
.chapter-head { display: flex; align-items: baseline; gap: 32px; margin-bottom: 56px; flex-wrap: wrap; }
.chapter-label {
  display: inline-flex; align-items: center; gap: 14px; white-space: nowrap;
  font-family: var(--ff-head); font-style: italic; font-weight: 500;
  font-size: 1rem; color: var(--c-copper);
}
.chapter-label::before { content: ''; width: 36px; height: 1px; background: var(--c-copper); }
.chapter-title {
  font-family: var(--ff-head); font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.08;
  color: var(--c-secondary); max-width: 18ch; letter-spacing: -.018em;
}
.chapter-title em { color: var(--c-primary); font-style: italic; font-weight: 500; }
.chapter-lede {
  font-family: var(--ff-head); font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55;
  color: var(--c-text); max-width: 42ch; margin-top: 18px;
}

/* Giant chapter numeral as background decoration */
.chapter-numeral {
  position: absolute; pointer-events: none;
  font-family: var(--ff-head); font-weight: 200;
  font-size: clamp(14rem, 30vw, 30rem); line-height: .78;
  color: var(--c-primary-light); opacity: .08;
  letter-spacing: -.05em; top: -10px; right: -.08em; z-index: 0;
  user-select: none;
}
.chapter > .container { position: relative; z-index: 1; }

/* ============ HERO EDITORIAL ============ */
.hero-editorial {
  min-height: clamp(640px, 84vh, 880px); display: flex; align-items: center;
  background:
    radial-gradient(ellipse 80% 60% at 78% 28%, rgba(184,115,51,.22), transparent 65%),
    linear-gradient(160deg, #261810 0%, #3F2718 50%, #5A3A22 100%);
  position: relative; overflow: hidden;
  padding: 140px 0 96px;
}
.hero-editorial::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-copper), transparent);
}
.hero-ed-inner { display: grid; grid-template-columns: 1.18fr .82fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-head); font-style: italic; font-weight: 500;
  color: var(--c-primary-light); font-size: 1rem; margin-bottom: 26px;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--c-primary-light); }
.hero-ed h1 {
  font-family: var(--ff-head); font-weight: 500;
  font-size: clamp(2.6rem, 6.6vw, 5.6rem); line-height: 1.02; letter-spacing: -.026em;
  color: var(--c-cream); margin: 0 0 26px;
}
.hero-ed h1 em { font-style: italic; color: var(--c-primary-light); font-weight: 400; }
.hero-ed .hero-sub {
  font-family: var(--ff-head); font-weight: 400; font-style: italic;
  font-size: clamp(1.1rem, 1.55vw, 1.35rem); line-height: 1.55;
  color: rgba(251,247,241,.78); max-width: 42ch; margin-bottom: 38px;
}
.hero-meta { display: flex; gap: 44px; margin-top: 48px; padding-top: 30px; border-top: 1px solid rgba(251,247,241,.16); max-width: 520px; }
.hero-meta-item { display: flex; flex-direction: column; gap: 6px; }
.hero-meta-num { font-family: var(--ff-head); font-size: 2.1rem; font-weight: 500; color: var(--c-primary-light); line-height: 1; }
.hero-meta-lbl { font-size: .74rem; color: rgba(251,247,241,.6); letter-spacing: .12em; text-transform: uppercase; font-family: var(--ff-body); }

/* Hero spiral artwork — drawn on load via stroke-dashoffset */
.hero-mark {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-mark svg { width: 100%; max-width: 520px; height: auto; color: var(--c-primary-light); display: block; }
.hero-mark svg path {
  fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1000; stroke-dashoffset: 1000;
  animation: spiral-draw 2.6s cubic-bezier(.55,.05,.25,.95) .25s forwards;
}
.hero-mark::after {
  content: ''; position: absolute; inset: 18%;
  background: radial-gradient(ellipse, rgba(184,115,51,.28), transparent 60%);
  filter: blur(28px); z-index: -1; opacity: 0; animation: glow-in 1.4s ease 1.4s forwards;
}
@keyframes spiral-draw { to { stroke-dashoffset: 0; } }
@keyframes glow-in { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .hero-mark svg path { animation: none; stroke-dashoffset: 0; }
  .hero-mark::after { animation: none; opacity: 1; }
}

/* ============ MANIFIESTO LINE (between hero and chapter 01) ============ */
.manifesto-line { padding: 72px 0 0; }
.manifesto-line .container { text-align: center; }
.manifesto-line p {
  font-family: var(--ff-head); font-weight: 400; font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem); line-height: 1.4;
  color: var(--c-secondary); max-width: 38ch; margin: 0 auto;
}
.manifesto-line p em { color: var(--c-primary); font-style: italic; font-weight: 500; }

/* ============ MANIFIESTO (problem/solution editorial) ============ */
.manifesto-grid {
  display: grid; grid-template-columns: 1fr auto 1.35fr; gap: 56px; align-items: start;
  padding-top: 12px;
}
.ms-block { padding-top: 8px; }
.ms-block h3 {
  font-family: var(--ff-head); font-weight: 500; font-size: 1.05rem;
  margin-bottom: 14px; font-style: italic;
}
.ms-block .ms-text {
  font-family: var(--ff-head); font-weight: 400;
  line-height: 1.55; max-width: 28ch;
}
.ms-side h3 { color: var(--c-muted); }
.ms-side .ms-text { font-size: 1.2rem; color: var(--c-muted); }
.ms-main h3 { color: var(--c-primary); font-style: normal; font-weight: 600; }
.ms-main .ms-text { font-size: clamp(1.45rem, 2.4vw, 2rem); color: var(--c-secondary); font-weight: 500; line-height: 1.3; }
.ms-main .ms-text em { font-style: italic; color: var(--c-primary); }
.ms-vs {
  font-family: var(--ff-head); font-style: italic; font-weight: 500;
  font-size: 1.4rem; color: var(--c-copper); padding-top: 12px;
}

/* ============ CATALOG (numbered editorial lists) ============ */
.catalog { display: flex; flex-direction: column; }
.catalog-row {
  display: grid; grid-template-columns: 110px 1.4fr 1.3fr 56px; gap: 36px; align-items: center;
  padding: 30px 8px 30px 0; border-top: 1px solid var(--c-border);
  transition: background .25s ease, padding .25s ease;
  text-decoration: none; color: inherit;
}
.catalog-row:last-child { border-bottom: 1px solid var(--c-border); }
.catalog-row:hover { background: rgba(184,115,51,.06); padding-left: 12px; }
.catalog-num {
  font-family: var(--ff-head); font-weight: 300; font-size: 3rem;
  color: var(--c-copper); line-height: 1; letter-spacing: -.02em;
}
.catalog-title {
  font-family: var(--ff-head); font-weight: 500; font-size: 1.4rem;
  color: var(--c-secondary); letter-spacing: -.01em;
}
.catalog-desc { font-family: var(--ff-body); font-size: .94rem; color: var(--c-muted); line-height: 1.6; }
.catalog-ico {
  width: 48px; height: 48px; border-radius: 12px; border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-copper); transition: all .25s; justify-self: end;
}
.catalog-ico .ico { width: 22px; height: 22px; }
.catalog-row:hover .catalog-ico { border-color: var(--c-primary); background: var(--c-cream); color: var(--c-primary); }

@media (max-width: 820px) {
  .catalog-row { grid-template-columns: 64px 1fr 44px; gap: 18px; padding-right: 0; }
  .catalog-row .catalog-desc { grid-column: 1 / -1; padding-left: 82px; font-size: .88rem; margin-top: -10px; }
  .catalog-num { font-size: 2rem; }
  .catalog-title { font-size: 1.1rem; }
}

/* ============ MEASURE LIST (Chapter 02 – Lo que medimos) — editorial 4-col ============ */
.measure-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 8px; }
.measure-item { display: flex; flex-direction: column; gap: 14px; padding-top: 28px; border-top: 1px solid var(--c-border); }
.measure-num {
  font-family: var(--ff-head); font-weight: 300; font-size: 2.4rem; line-height: 1;
  color: var(--c-copper); letter-spacing: -.02em;
}
.measure-item h3 { font-family: var(--ff-head); font-weight: 500; font-size: 1.2rem; color: var(--c-secondary); line-height: 1.2; letter-spacing: -.01em; }
.measure-item p { font-size: .92rem; color: var(--c-muted); line-height: 1.65; }
.measure-ico { color: var(--c-primary); }
.measure-ico .ico { width: 26px; height: 26px; }
@media (max-width: 980px) { .measure-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .measure-grid { grid-template-columns: 1fr; } }

/* ============ METHOD (3-step with spiral connector) ============ */
.method-wrap { position: relative; padding-top: 16px; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; position: relative; }
.method-step { position: relative; z-index: 1; }
.method-num {
  font-family: var(--ff-head); font-weight: 300; font-size: 5.6rem;
  color: var(--c-primary); line-height: .9; letter-spacing: -.04em;
  margin-bottom: 18px;
}
.method-step h3 { font-family: var(--ff-head); font-weight: 500; font-size: 1.4rem; color: var(--c-secondary); margin-bottom: 12px; letter-spacing: -.01em; }
.method-step p { color: var(--c-muted); font-size: .95rem; line-height: 1.78; max-width: 34ch; }
.method-connector { position: absolute; left: 0; right: 0; top: 60px; height: 70px; pointer-events: none; z-index: 0; }
.method-connector svg { width: 100%; height: 100%; display: block; }
.method-connector path {
  fill: none; stroke: var(--c-copper); stroke-width: 1.5; stroke-linecap: round;
  stroke-dasharray: 3 9; opacity: .55;
}
@media (max-width: 820px) {
  .method-grid { grid-template-columns: 1fr; gap: 44px; }
  .method-connector { display: none; }
  .method-num { font-size: 4rem; }
}

/* ============ PULL QUOTE ============ */
.pullquote-section { background: var(--c-secondary-dark); position: relative; overflow: hidden; padding: 120px 0; }
.pullquote-section .container { position: relative; z-index: 1; }
.pullquote-section .bg-spiral { color: var(--c-primary-light); opacity: .07; }
.pullquote { max-width: 22ch; margin: 0 auto; text-align: center; }
.pullquote .pq-mark {
  font-family: var(--ff-head); font-size: 5rem; line-height: 1; color: var(--c-primary-light);
  font-style: italic; opacity: .6; margin-bottom: -12px;
}
.pullquote blockquote {
  font-family: var(--ff-head); font-weight: 400; font-style: italic;
  font-size: clamp(1.55rem, 3.2vw, 2.6rem); line-height: 1.28; color: var(--c-cream);
  margin: 0 0 32px; letter-spacing: -.012em;
}
.pullquote cite {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-body); font-style: normal; font-weight: 500; font-size: .82rem;
  color: rgba(251,247,241,.7); letter-spacing: .14em; text-transform: uppercase;
}
.pullquote cite::before { content: ''; width: 26px; height: 1px; background: var(--c-primary-light); }

/* ============ MASTHEAD (refined authority strip) ============ */
.masthead { background: var(--c-secondary-dark); padding: 28px 0; overflow: hidden; border-top: 1px solid rgba(251,247,241,.08); }
.masthead-inner { display: flex; align-items: center; gap: 28px; }
.masthead-label {
  font-family: var(--ff-head); font-style: italic; font-weight: 500;
  color: rgba(251,247,241,.55); font-size: 1rem; white-space: nowrap;
  padding-right: 28px; border-right: 1px solid rgba(251,247,241,.14);
}
.masthead-ticker { display: flex; gap: 40px; align-items: center; overflow-x: auto; scrollbar-width: none; flex: 1; }
.masthead-ticker::-webkit-scrollbar { display: none; }
.masthead-item {
  font-family: var(--ff-head); font-size: 1.02rem; color: var(--c-cream);
  white-space: nowrap; display: flex; align-items: center; gap: 12px;
}
.masthead-item::before { content: ''; width: 5px; height: 5px; background: var(--c-copper); border-radius: 50%; }

/* ============ CTA editorial ============ */
.cta-editorial {
  background: linear-gradient(155deg, #6B4423 0%, #8B5A3C 60%, #A06A45 100%);
  padding: 120px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-editorial::before {
  content: ''; position: absolute; left: 50%; top: -140px; transform: translateX(-50%);
  width: 760px; height: 760px; opacity: .07; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path d='M53.7 39.1L54.4 35.8L54.5 32.5L54.2 29.3L53.4 26.1L52.2 23.2L50.6 20.4L48.6 18L46.3 15.8L43.7 14L40.9 12.7L38 11.7L35 11.2L32 11.2L29 11.6L26.1 12.4L23.4 13.6L20.9 15.1L18.7 17L16.8 19.2L15.2 21.6L14 24.2L13.2 27L12.9 29.8L12.9 32.5L13.3 35.3L14.1 37.9L15.3 40.4L16.8 42.6L18.6 44.6L20.7 46.2L22.9 47.6L25.4 48.6L27.9 49.2L30.4 49.5L33 49.4L35.4 48.9L37.8 48.1L40 47L42 45.5L43.7 43.8L45.2 41.9L46.3 39.8L47.2 37.6L47.7 35.3L47.8 33L47.7 30.7L47.2 28.5L46.4 26.4L45.3 24.5L43.9 22.7L42.3 21.2L40.6 20L38.7 19L36.7 18.3L34.6 17.9L32.5 17.8L30.5 18.1L28.5 18.6L26.7 19.4L25 20.4L23.5 21.7L22.2 23.1L21.1 24.7L20.3 26.4L19.8 28.2L19.5 30L19.5 31.9L19.8 33.6L20.3 35.3L21.1 36.9L22 38.4L23.2 39.7L24.5 40.7L25.9 41.6L27.4 42.2L29 42.7L30.6 42.8L32.2 42.8L33.7 42.5L35.1 42L36.5 41.3L37.7 40.4L38.7 39.4L39.6 38.2L40.3 37L40.8 35.7L41.1 34.3L41.2 33L41 31.6L40.7 30.4L40.3 29.2L39.6 28.1L38.9 27.1L38 26.3L37 25.6L35.9 25.1L34.8 24.7L33.7 24.5L32.6 24.5L31.5 24.7L30.5 25L29.5 25.4L28.7 26L27.9 26.6L27.3 27.4L26.8 28.2L26.5 29.1L26.2 29.9L26.2 30.8L26.2 31.7L26.4 32.5L26.7 33.3L27 34L27.5 34.6L28.1 35.1L28.7 35.6L29.3 35.9L30 36.1L30.6 36.2L31.3 36.2L31.9 36.1L32.5 35.9L33 35.7L33.4 35.3L33.8 35L34.1 34.5L34.4 34.1L34.5 33.7L34.6 33.2L34.6 32.8L34.5 32.4L34.4 32' fill='none' stroke='%23FBF7F1' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-size: contain; background-position: center;
}
.cta-editorial .container { position: relative; z-index: 1; }
.cta-editorial .chapter-label { color: rgba(251,247,241,.7); justify-content: center; }
.cta-editorial .chapter-label::before { background: rgba(251,247,241,.6); }
.cta-editorial h2 {
  color: var(--c-cream); font-family: var(--ff-head); font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -.022em;
  margin: 16px auto 22px; max-width: 18ch;
}
.cta-editorial h2 em { font-style: italic; color: #F2D9C2; }
.cta-editorial .cta-sub {
  color: rgba(251,247,241,.86); max-width: 46ch; margin: 0 auto 40px;
  font-family: var(--ff-head); font-style: italic; font-size: 1.2rem; line-height: 1.55;
}

/* ============ FOOTER MASTHEAD touch ============ */
.footer-mast {
  display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(251,247,241,.1); padding-bottom: 36px; margin-bottom: 36px;
}
.footer-mast-tag {
  font-family: var(--ff-head); font-style: italic; font-weight: 500;
  color: rgba(251,247,241,.55); font-size: .98rem;
}

/* Responsive */
@media (max-width: 820px) {
  .hero-ed-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-mark { order: -1; max-width: 280px; margin: 0 auto; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 24px; }
  .ms-vs { padding: 0; }
  .chapter-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .chapter-title { max-width: 100%; }
  .chapter { padding: 88px 0; }
  .chapter-numeral { font-size: 12rem; }
}

/* ============================================================
   ENCYCLOPEDIA — categorías editoriales + entradas técnicas
   ============================================================ */
.ency-list { display: flex; flex-direction: column; }
.ency-entry {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2.4fr;
  gap: 56px;
  padding: 38px 0;
  border-top: 1px solid var(--c-border);
  align-items: start;
}
.ency-entry:last-child { border-bottom: 1px solid var(--c-border); }
.ee-head { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; padding-top: 6px; }
.ee-meta { display: flex; align-items: center; gap: 18px; }
.ee-num { font-family: var(--ff-head); font-weight: 300; font-size: 1.7rem; color: var(--c-copper); line-height: 1; letter-spacing: -.02em; }
.ee-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--c-primary); }
.ee-icon .ico { width: 26px; height: 26px; }
.ee-name { font-family: var(--ff-head); font-weight: 500; font-size: 1.4rem; color: var(--c-secondary); line-height: 1.18; letter-spacing: -.012em; margin: 0; }
.ee-name small { display: block; font-family: var(--ff-head); font-style: italic; font-weight: 400; font-size: .76em; color: var(--c-muted); margin-top: 4px; letter-spacing: 0; }
.ee-body { padding-top: 6px; }
.ee-question { font-family: var(--ff-head); font-weight: 500; font-style: italic; font-size: .94rem; color: var(--c-copper); margin: 0 0 8px; }
.ee-desc { color: var(--c-text); line-height: 1.78; font-size: .96rem; margin: 0; }

@media (max-width: 820px) {
  .ency-entry { grid-template-columns: 1fr; gap: 18px; padding: 30px 0; }
  .ee-head { padding-top: 0; }
  .ee-name { font-size: 1.2rem; }
}

/* Positioning manifesto on enciclopedia */
.ency-positioning { padding: 72px 0 40px; }
.ency-positioning p {
  font-family: var(--ff-head); font-weight: 400; font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem); line-height: 1.42;
  color: var(--c-secondary); max-width: 44ch; margin: 0 auto;
  text-align: center;
}
.ency-positioning p em { color: var(--c-primary); font-style: italic; font-weight: 500; }
.ency-positioning .ency-pos-cta { display: block; text-align: center; margin-top: 32px; font-family: var(--ff-body); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-primary); font-weight: 600; }
.ency-positioning .ency-pos-cta::after { content: ' \2192'; }

/* ============================================================
   BRAND SEAL — el logo real como artefacto tangible
   ============================================================ */
.brand-seal {
  background: var(--c-bg-alt);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brand-seal::before {
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 640px; height: 640px; background: radial-gradient(ellipse, rgba(184,115,51,.07), transparent 60%);
  pointer-events: none;
}
.brand-seal-mark {
  position: relative; z-index: 1;
  display: inline-block;
  max-width: 340px; width: 72%;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(74,49,32,.18), 0 6px 18px rgba(74,49,32,.08);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.brand-seal-mark:hover { transform: translateY(-4px) rotate(-.6deg); }
.brand-seal-mark img { width: 100%; height: auto; display: block; }
.brand-seal-caption {
  position: relative; z-index: 1;
  margin: 46px auto 0;
  max-width: 30ch;
  font-family: var(--ff-head);
  font-weight: 400; font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  color: var(--c-secondary);
}
.brand-seal-caption em { color: var(--c-primary); font-style: italic; font-weight: 500; }
.brand-seal-caption span {
  display: block; margin-top: 12px;
  font-family: var(--ff-body); font-style: normal;
  font-size: .76rem; color: var(--c-muted);
  letter-spacing: .18em; text-transform: uppercase;
}

@media (max-width: 600px) {
  .brand-seal { padding: 80px 0; }
  .brand-seal-mark { width: 78%; max-width: 280px; }
}

/* Category index strip (sticky-ish quick nav) */
.ency-index { padding: 24px 0; background: var(--c-bg-alt); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.ency-index-inner { display: flex; gap: 18px; align-items: center; overflow-x: auto; scrollbar-width: none; font-family: var(--ff-head); font-size: .92rem; }
.ency-index-inner::-webkit-scrollbar { display: none; }
.ency-index-label { font-style: italic; color: var(--c-muted); white-space: nowrap; padding-right: 16px; border-right: 1px solid var(--c-border); }
.ency-index-link { color: var(--c-secondary); white-space: nowrap; transition: color .2s; display: inline-flex; align-items: center; gap: 8px; }
.ency-index-link:hover { color: var(--c-primary); }
.ency-index-link .idx-num { color: var(--c-copper); font-weight: 500; }
