:root{
  --ink:#2B2B28;
  --ink-soft: rgba(43,43,40,.72);
  --muted:#8A8A80;
  --whisper:#DDD9CF;
  --hairline:#E8E4DC;
  --paper:#FFFFFF;
  color-scheme: light;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

h1,h2,h3{
  font-family:"Cormorant Garamond","Iowan Old Style","Palatino Linotype",serif;
  font-weight:500;
  margin:0;
  text-wrap:balance;
}

p{margin:0;}

.wrap{
  max-width:1180px;
  margin-inline:auto;
}

/* ---------- nav ---------- */
.nav{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(120%) blur(6px);
  border-bottom:1px solid var(--hairline);
}
.nav .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  padding-block:1.1rem;
}
.nav__mark{
  font-family:"Cormorant Garamond",serif;
  font-size:1.05rem;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--ink);
  white-space:nowrap;
  text-decoration:none;
}
.nav__links{
  display:flex;
  gap:2rem;
  list-style:none;
  margin:0;
  padding:0;
}
.nav__links a{
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--ink-soft);
  text-decoration:none;
}
.nav__links a:hover{color:var(--ink);}
.nav__cta{
  flex-shrink:0;
}
@media (max-width: 760px){
  .nav__links{display:none;}
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-family:"Inter",sans-serif;
  font-size:.78rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  text-decoration:none;
  padding:.85em 1.6em;
  border:1px solid var(--ink);
  border-radius:1px;
  transition:background-color .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn--solid{
  background:var(--ink);
  color:var(--paper);
}
.btn--solid:hover{
  background:var(--paper);
  color:var(--ink);
}
.btn--ghost{
  background:transparent;
  color:var(--ink);
  font-size:.72rem;
  padding:.7em 1.3em;
}
.btn--ghost:hover{
  background:var(--ink);
  color:var(--paper);
}
.btn--invert{
  background:var(--paper);
  color:var(--ink);
  border:1px solid var(--paper);
}
.btn--invert:hover{
  background:transparent;
  color:var(--paper);
}

/* ---------- section scaffold ---------- */
.sec{
  position:relative;
  padding-block:clamp(3.25rem, 6.5vw, 5.25rem);
  border-bottom:1px solid var(--hairline);
}
.sec:last-of-type{border-bottom:none;}

.sec__eyebrow{
  position:relative;
  z-index:1;
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:1rem;
}

.sec__title{
  position:relative;
  z-index:1;
  font-size:clamp(1.9rem, 4vw, 2.75rem);
  line-height:1.2;
  margin-bottom:1.75rem;
  max-width:18ch;
}

.sec__body{
  position:relative;
  z-index:1;
  font-size:1.0625rem;
  line-height:1.8;
  color:var(--ink-soft);
  max-width:42ch;
}
.sec__body > * + *{margin-top:1.35em;}

.sec__body strong{font-weight:600; color:var(--ink);}

.sec__body em.lift{
  display:block;
  font-style:normal;
  color:var(--ink);
  font-family:"Cormorant Garamond",serif;
  font-size:1.4rem;
  line-height:1.45;
}

.sec__rule{
  display:block;
  width:2.75rem;
  height:1px;
  background:var(--ink);
  opacity:.32;
  margin:-.35rem 0 1.6rem;
}

.sec__whisper{
  font-family:"Cormorant Garamond",serif;
  font-style:italic;
  font-size:1.1rem;
  opacity:.7;
}

.sec__cta{
  margin-top:2.5rem;
}

.sec__grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:clamp(2rem, 6vw, 5rem);
  align-items:center;
}
@media (max-width: 860px){
  .sec__grid{grid-template-columns:1fr;}
}

.sec__art{
  display:flex;
  justify-content:center;
  align-items:center;
}
.sec__art svg{
  width:100%;
  max-width:320px;
  height:auto;
  color:var(--ink);
}
@media (max-width: 860px){
  .sec__art{order:-1; margin-bottom:1rem;}
  .sec__art svg{max-width:220px;}
}

/* ---------- experiencias & servicios · un único universo oscuro ---------- */
.sec--dark{
  background:var(--ink);
  color:var(--paper);
  margin-inline:calc(-1 * clamp(1.25rem, 5vw, 3rem));
  padding-inline:clamp(1.25rem, 5vw, 3rem);
  border-bottom:none;
}
.sec--dark .sec__eyebrow{color:rgba(255,255,255,.62);}
.sec--dark .sec__title{color:var(--paper);}
.sec--dark .sec__body{color:rgba(255,255,255,.8);}
.sec--dark .sec__body em.lift{color:var(--paper);}
.sec--dark .sec__body strong{color:var(--paper);}
.sec--dark .service-list__item{border-color:rgba(255,255,255,.16);}
.sec--dark .sec__outro{border-top-color:rgba(255,255,255,.2);}
.sec--dark .sec__outro-title{color:var(--paper);}
.sec--dark .sec__outro-body{color:rgba(255,255,255,.78);}

/* experiencia integral · mayor jerarquía por escala y espacio, no por fondo */
.feature-panel{
  padding-top:clamp(1rem, 3vw, 2rem);
  padding-bottom:clamp(3rem, 6vw, 4.5rem);
  border-bottom:1px solid rgba(255,255,255,.14);
  margin-bottom:clamp(3rem, 6vw, 4.5rem);
}

.sec__title--feature{
  font-size:clamp(2.25rem, 4.5vw, 3.4rem);
  max-width:20ch;
}

/* ---------- experiencias & servicios (índice editorial) ---------- */
.sec__intro{
  position:relative;
  z-index:1;
  max-width:56ch;
}
.sec__intro .sec__title{max-width:30ch;}

.sec__intro--centered{
  max-width:62ch;
  margin-inline:auto;
  text-align:center;
}
.sec__intro--centered .sec__title{
  max-width:26ch;
  margin-inline:auto;
  font-size:clamp(2.1rem, 4vw, 2.9rem);
}
.sec__intro--centered .sec__body{
  max-width:52ch;
  margin-inline:auto;
}

.service-list{
  position:relative;
  z-index:1;
  margin-top:clamp(3rem, 6vw, 4.5rem);
}
.service-list__item{
  display:grid;
  grid-template-columns:minmax(180px, 27%) 1fr;
  gap:clamp(1rem, 4vw, 3rem);
  padding-block:clamp(1.75rem, 4vw, 2.35rem);
  border-top:1px solid var(--hairline);
}
.service-list__item:last-child{border-bottom:1px solid var(--hairline);}
.service-list__name{
  font-family:"Cormorant Garamond",serif;
  font-weight:500;
  font-size:clamp(1.3rem, 2.1vw, 1.6rem);
  line-height:1.3;
}
.service-list__desc{
  color:var(--ink-soft);
  font-size:1.0625rem;
  line-height:1.75;
  max-width:56ch;
}
.service-list__desc p + p{margin-top:1em;}
@media (max-width:700px){
  .service-list__item{grid-template-columns:1fr;}
}

.sec__outro{
  position:relative;
  z-index:1;
  max-width:46ch;
  margin-top:clamp(3rem, 6vw, 5rem);
  padding-top:clamp(2.5rem, 5vw, 3.5rem);
  border-top:1px solid var(--hairline);
}
.sec__outro-title{
  font-size:clamp(1.5rem, 2.6vw, 1.9rem);
  margin-bottom:.9rem;
}
.sec__outro-body{
  color:var(--ink-soft);
  line-height:1.75;
  margin-bottom:2rem;
  max-width:44ch;
}

.sec__outro--wide{
  max-width:none;
  width:100%;
  text-align:center;
  margin-top:clamp(4rem, 8vw, 6rem);
  padding-top:clamp(3rem, 6vw, 4.5rem);
}
.sec__outro--wide .sec__outro-title{
  font-size:clamp(2.1rem, 4.5vw, 3.1rem);
  max-width:22ch;
  margin-inline:auto;
}
.sec__outro--wide .sec__outro-body{
  max-width:48ch;
  margin-inline:auto;
  font-size:1.0625rem;
}

/* ---------- manifiesto (cambio de ritmo, solo tipografía) ---------- */
.sec--manifesto{
  padding-block:clamp(6rem, 13vw, 10rem);
  text-align:center;
}
.manifesto__title{
  font-family:"Cormorant Garamond",serif;
  font-weight:500;
  font-size:clamp(2.75rem, 6vw, 4.5rem);
  line-height:1.15;
  max-width:16ch;
  margin-inline:auto;
  margin-bottom:clamp(3rem, 6vw, 4.5rem);
  text-wrap:balance;
}
.manifesto__body{
  font-family:"Cormorant Garamond",serif;
  color:var(--ink-soft);
  font-size:clamp(1.15rem, 1.8vw, 1.35rem);
  line-height:1.65;
}
.manifesto__body > *{
  max-width:40ch;
  margin-inline:auto;
}
.manifesto__body > * + *{
  margin-top:1.85em;
}
.manifesto__lead{
  color:var(--ink);
  font-style:italic;
  font-size:clamp(1.5rem, 2.6vw, 1.85rem);
  max-width:22ch;
}
.manifesto__body > p.manifesto__mark{
  color:var(--ink);
  font-style:italic;
  font-size:clamp(1.75rem, 3vw, 2.25rem);
  line-height:1.4;
  max-width:20ch;
  margin-top:2.4em;
  margin-bottom:.4em;
}

/* ---------- sobre mí ---------- */
.sec__title--bio{
  font-size:clamp(2.25rem, 4vw, 3rem);
}
.sec__body--bio{
  max-width:58ch;
}

.signature{
  margin-top:2.5rem;
  padding-top:1.5rem;
  border-top:1px solid var(--hairline);
}
.signature__name{
  font-family:"Cormorant Garamond",serif;
  font-size:1.25rem;
  margin-bottom:.35rem;
}
.signature__role{
  font-family:"Inter",sans-serif;
  font-size:.85rem;
  color:var(--muted);
  line-height:1.6;
}

.portrait{
  position:relative;
  width:100%;
  max-width:340px;
  aspect-ratio:4/5;
  background:var(--hairline);
  border:1px solid rgba(43,43,40,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.portrait__label{
  font-family:"Inter",sans-serif;
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  line-height:1.7;
}
.portrait__corner{
  position:absolute;
  width:14px;
  height:14px;
  border-color:rgba(43,43,40,.4);
}
.portrait__corner--tl{top:14px;left:14px;border-top:1px solid;border-left:1px solid;}
.portrait__corner--tr{top:14px;right:14px;border-top:1px solid;border-right:1px solid;}
.portrait__corner--bl{bottom:14px;left:14px;border-bottom:1px solid;border-left:1px solid;}
.portrait__corner--br{bottom:14px;right:14px;border-bottom:1px solid;border-right:1px solid;}
.portrait--photo{
  background:none;
  border:none;
  overflow:hidden;
}
.portrait--photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:60% 22%;
  display:block;
  filter:grayscale(.08) contrast(1.02);
}

/* ---------- testimonios ---------- */
.testimonials{
  position:relative;
  z-index:1;
  margin-top:clamp(3rem, 6vw, 4.5rem);
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:clamp(2rem, 4vw, 3rem);
}
.testimonials__item{
  padding-inline-start:clamp(1.5rem, 3vw, 2.25rem);
  border-left:1px solid var(--hairline);
}
.testimonials__item:first-child{
  padding-inline-start:0;
  border-left:none;
}
.testimonials__mark{
  display:block;
  font-family:"Cormorant Garamond",serif;
  font-size:3rem;
  line-height:1;
  color:var(--whisper);
  margin-bottom:.4rem;
}
.testimonials__quote{
  font-family:"Cormorant Garamond",serif;
  font-style:italic;
  font-size:clamp(1.25rem, 2vw, 1.6rem);
  line-height:1.5;
  color:var(--ink-soft);
}
.testimonials__by{
  margin-top:1.25rem;
  font-family:"Inter",sans-serif;
  font-size:.78rem;
  letter-spacing:.06em;
  color:var(--muted);
}
@media (max-width:820px){
  .testimonials{grid-template-columns:1fr; gap:2.5rem;}
  .testimonials__item{
    border-left:none;
    padding-inline-start:0;
    border-top:1px solid var(--hairline);
    padding-top:2rem;
  }
  .testimonials__item:first-child{border-top:none; padding-top:0;}
}

/* ---------- hero (home) ---------- */
.sec--hero{
  padding-block:clamp(3.25rem, 7vw, 4.75rem);
  text-align:center;
}
.hero__title{
  font-family:"Cormorant Garamond",serif;
  font-weight:500;
  font-size:clamp(2.5rem, 6vw, 4.25rem);
  line-height:1.12;
  max-width:14ch;
  margin-inline:auto;
  text-wrap:balance;
}
.hero__lede{
  margin-top:clamp(1rem, 2vw, 1.35rem);
  font-size:1.0625rem;
  color:var(--ink-soft);
  max-width:34ch;
  margin-inline:auto;
}
.hero__cta{
  margin-top:clamp(1.75rem, 3vw, 2.25rem);
}

/* ---------- fotografía editorial (placeholders / sistema visual) ---------- */
.editorial-photo{
  position:relative;
  width:100%;
  overflow:hidden;
  background:var(--hairline);
  border:1px solid rgba(43,43,40,.16);
  display:flex;
  align-items:flex-end;
  justify-content:center;
  text-align:center;
}
.editorial-photo img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.editorial-photo__label{
  position:relative;
  z-index:1;
  padding:1.1rem 1rem;
  font-family:"Inter",sans-serif;
  font-size:.68rem;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:var(--muted);
  line-height:1.7;
}
.editorial-photo--tall{aspect-ratio:4/5;}
.editorial-photo--wide{
  aspect-ratio:3/2;
  align-items:center;
}

.sec__art .editorial-photo{max-width:320px;}

.section-breather{
  margin-block:clamp(1rem, 3vw, 1.5rem) clamp(3rem, 6vw, 4.5rem);
}

/* ---------- cierre de marca (entre testimonios y contacto) ---------- */
.brand-band{
  position:relative;
  margin-inline:calc(-1 * clamp(1.25rem, 5vw, 3rem));
  overflow:hidden;
  border-bottom:1px solid var(--hairline);
}
.brand-band img{
  display:block;
  width:100%;
  height:clamp(130px, 18vw, 240px);
  object-fit:cover;
  object-position:center 45%;
}

/* ---------- contacto / cierre de home ---------- */
.contact{
  text-align:center;
}
.contact__title{
  font-size:clamp(2.75rem, 5.5vw, 4rem);
  margin-bottom:clamp(2rem, 4vw, 2.75rem);
  margin-inline:auto;
}
.contact__body{
  font-size:1.0625rem;
  line-height:1.8;
  color:var(--ink-soft);
  max-width:40ch;
  margin-inline:auto;
}
.contact__body > * + *{margin-top:1.35em;}

.contact__channels{
  margin-top:clamp(3rem, 6vw, 4.5rem);
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:clamp(2.5rem, 6vw, 5rem);
}
.contact__channel{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.6rem;
}
.contact__channel-label{
  font-family:"Inter",sans-serif;
  font-size:.75rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}
.contact__channel-value{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(1.3rem, 2.2vw, 1.6rem);
  color:var(--ink);
  text-decoration:none;
  border-bottom:1px solid var(--hairline);
  padding-bottom:.15em;
  transition:border-color .2s ease;
}
.contact__channel-value:hover{border-color:var(--ink);}

.contact__location{
  margin-top:clamp(3rem, 6vw, 4rem);
  font-family:"Inter",sans-serif;
  font-size:.85rem;
  color:var(--muted);
}

/* ---------- página interna: experiencia by flor ---------- */
.xp-hero{
  padding-block:clamp(5rem, 11vw, 8rem) clamp(3rem, 6vw, 4rem);
}
.xp-hero .sec__title{
  font-size:clamp(2.5rem, 5.5vw, 4.25rem);
  max-width:16ch;
}
.xp-hero .sec__body{max-width:52ch;}
.xp-hero .sec__body em.lift{margin-top:1.6em;}

.xp-section{
  padding-block:clamp(3.5rem, 8vw, 6rem);
  border-top:1px solid var(--hairline);
}
.xp-section .sec__title{max-width:20ch;}
.xp-section .sec__body{max-width:52ch;}
.xp-section .sec__body em.lift{margin-top:1.6em;}

.xp-final{
  text-align:center;
  padding-block:clamp(4.5rem, 10vw, 7rem);
}
.xp-final .sec__title{
  margin-inline:auto;
  max-width:18ch;
}
.xp-final .sec__body{
  margin-inline:auto;
  max-width:44ch;
}
.xp-final .btn{margin-top:2.5rem;}

/* =========================================================
   HOME V2 — propuesta editorial aprobada 2026-09-12
   ========================================================= */
.home-v2{padding-inline:0; background:#fff;}
.home-v2 .wrap{max-width:1320px; padding-inline:clamp(1.4rem,4vw,4rem);}
.home-v2 .nav{margin:0;}
.nav--v2{background:rgba(255,255,255,.96);}
.nav__inner-v2{min-height:76px;}
.brandlock{display:flex;flex-direction:column;color:var(--ink);text-decoration:none;line-height:1;gap:.18rem;min-width:130px;}
.brandlock__main{font-family:"Cormorant Garamond",serif;font-size:1.55rem;letter-spacing:.13em;}
.brandlock__sub{font-size:.58rem;letter-spacing:.38em;margin-left:.15rem;}
.nav__links--v2{gap:clamp(1rem,2.3vw,2rem);}
.nav-talk{font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--ink);text-decoration:none;border-bottom:1px solid var(--ink);padding-bottom:.25rem;white-space:nowrap;}

.kicker{font-size:.67rem;letter-spacing:.17em;text-transform:uppercase;color:#77756d;margin:0 0 1rem;}
.kicker--light{color:rgba(255,255,255,.58);}
.text-link{display:inline-flex;align-items:center;gap:1rem;color:var(--ink);font-size:.72rem;letter-spacing:.11em;text-transform:uppercase;text-decoration:none;border-bottom:1px solid rgba(43,43,40,.45);padding-bottom:.35rem;}
.text-link--light{color:#fff;border-color:rgba(255,255,255,.45);}

.hero2{border-bottom:1px solid var(--hairline);}
.hero2__grid{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(340px,.95fr) 150px;min-height:470px;padding-right:0!important;}
.hero2__copy{display:flex;flex-direction:column;justify-content:center;padding:clamp(2.5rem,4.5vw,4.2rem) clamp(2rem,5vw,5rem) clamp(2.5rem,4.5vw,4.2rem) 0;}
.hero2 h1{font-size:clamp(4rem,7vw,6.8rem);line-height:.86;letter-spacing:-.035em;max-width:8.5ch;}
.hero2__lede{font-size:1rem;line-height:1.55;color:var(--ink-soft);max-width:32ch;margin:1.5rem 0 2rem;}
.hero2__image{margin:0;min-height:100%;overflow:hidden;}
.hero2__image img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;}
.hero2__rail{border-left:1px solid var(--hairline);display:flex;flex-direction:column;justify-content:space-around;padding:2.25rem 1.5rem 2.25rem 2rem;color:#6c6a63;}
.hero2__rail p{font-family:"Cormorant Garamond",serif;font-size:.86rem;letter-spacing:.08em;line-height:1.25;}
.rail-line{display:block;width:28px;height:1px;background:#827f77;}

.editorial-section{padding:clamp(4.5rem,8vw,7.5rem) 0;border-bottom:1px solid var(--hairline);}
.editorial-grid{display:grid;grid-template-columns:repeat(12,1fr);column-gap:clamp(1.2rem,2.5vw,2.5rem);row-gap:2rem;align-items:start;}
.editorial-heading{grid-column:1 / 6;}
.editorial-heading h2,.bridge-grid h2,.testimonials2 h2{font-size:clamp(2.7rem,4.8vw,4.7rem);line-height:.98;letter-spacing:-.02em;max-width:9ch;}
.editorial-copy{grid-column:6 / 10;font-size:1rem;line-height:1.72;color:var(--ink-soft);}
.editorial-copy p + p{margin-top:1.1rem;}
.editorial-quote{grid-column:10 / 13;margin:0;border-left:1px solid #c9c5bc;padding-left:1.5rem;font-family:"Cormorant Garamond",serif;font-size:clamp(1.5rem,2.2vw,2rem);font-style:italic;line-height:1.2;color:#4b4944;}
.editorial-quote strong{font-weight:500;color:var(--ink);}

.editorial-section--bridge{padding-block:clamp(4rem,7vw,6.5rem);}
.bridge-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:clamp(1.2rem,2.5vw,2.5rem);align-items:start;}
.bridge-grid__headline{grid-column:1 / 5;padding-top:.75rem;}
.bridge-grid__headline h2{max-width:8ch;}
.bridge-grid__sub{font-family:"Cormorant Garamond",serif;font-size:1.35rem;line-height:1.35;margin-top:1.2rem;max-width:20ch;}
.bridge-grid__copy{grid-column:5 / 8;font-size:.98rem;line-height:1.72;color:var(--ink-soft);padding-top:2.5rem;}
.bridge-grid__copy p + p{margin-top:1rem;}
.bridge-grid__image{grid-column:8 / 13;margin:0;aspect-ratio:1.35/1;overflow:hidden;align-self:stretch;}
.bridge-grid__image img{width:100%;height:100%;object-fit:cover;object-position:center 20%;display:block;}
.bridge-grid__closing{grid-column:5 / 13;border-top:1px solid var(--hairline);padding-top:1.5rem;font-family:"Cormorant Garamond",serif;font-size:clamp(1.35rem,2vw,1.85rem);line-height:1.35;}
.bridge-grid__closing strong{font-weight:500;}

.services2{background:#242421;color:#fff;padding:clamp(3.6rem,6vw,5.4rem) 0;}
.services2__feature{display:grid;grid-template-columns:repeat(12,1fr);column-gap:clamp(1.2rem,2.5vw,2.5rem);border-bottom:1px solid rgba(255,255,255,.18);padding-bottom:clamp(2.6rem,4vw,3.8rem);}
.services2__feature-title{grid-column:1 / 5;}
.mini-label{font-size:.65rem;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.58);margin-bottom:1rem;}
.services2__feature-title h2{font-size:clamp(3rem,5vw,5.3rem);line-height:.9;letter-spacing:-.03em;}
.services2__feature-copy{grid-column:6 / 13;display:grid;grid-template-columns:1fr 1fr;gap:1rem 2rem;color:rgba(255,255,255,.78);font-size:.96rem;line-height:1.65;}
.services2__feature-copy h3{grid-column:1/-1;font-size:clamp(1.7rem,2.5vw,2.45rem);line-height:1.1;color:#fff;max-width:20ch;margin-bottom:.6rem;}
.services2__feature-copy strong{color:#fff;}
.outline-link{grid-column:1/-1;justify-self:start;margin-top:1rem;display:inline-flex;gap:1rem;color:#fff;border:1px solid rgba(255,255,255,.55);padding:.8rem 1.1rem;text-decoration:none;font-size:.68rem;letter-spacing:.11em;text-transform:uppercase;}
.services2__intro{display:grid;grid-template-columns:1fr 1.6fr;gap:2rem;padding:clamp(2rem,3vw,3rem) 0 1.2rem;border-bottom:1px solid rgba(255,255,255,.18);align-items:end;}
.services2__intro h3{font-size:clamp(2rem,3.2vw,3.1rem);line-height:1.05;color:#fff;}
.services2__intro p{color:rgba(255,255,255,.7);font-size:.96rem;line-height:1.65;max-width:58ch;justify-self:end;}
.services2__grid{display:grid;grid-template-columns:repeat(3,1fr);}
.service2,.services2__start{min-height:205px;padding:1.45rem 1.6rem 1.7rem 0;border-bottom:1px solid rgba(255,255,255,.18);border-right:1px solid rgba(255,255,255,.14);position:relative;}
.service2:nth-child(3),.services2__start{border-right:none;padding-left:1.8rem;}
.service2:nth-child(2),.service2:nth-child(5){padding-left:1.8rem;}
.service2 span{font-family:"Cormorant Garamond",serif;font-size:1.1rem;color:rgba(255,255,255,.52);}
.service2 h4{font-family:"Cormorant Garamond",serif;font-size:clamp(1.7rem,2.2vw,2.25rem);font-weight:500;line-height:1.05;color:#fff;margin:.75rem 0 1.05rem;}
.service2 p{font-size:.88rem;line-height:1.55;color:rgba(255,255,255,.74);max-width:36ch;}
.service2 p + p{margin-top:.6rem;}
.service2--wide{grid-column:1 / 3;}
.services2__start{display:flex;flex-direction:column;justify-content:center;}
.services2__start h3{font-size:clamp(1.9rem,2.8vw,2.8rem);line-height:1.02;color:#fff;margin-bottom:1rem;}
.services2__start p{font-size:.9rem;line-height:1.55;color:rgba(255,255,255,.72);max-width:37ch;margin-bottom:1.4rem;}

.testimonials2{padding:clamp(3.6rem,6vw,5.4rem) 0;border-bottom:1px solid var(--hairline);}
.testimonials2__grid{display:grid;grid-template-columns:repeat(12,1fr);gap:clamp(1.2rem,2.5vw,2.5rem);}
.testimonials2__intro{grid-column:1 / 5;}
.testimonials2__intro h2{max-width:11ch;font-size:clamp(2.6rem,4vw,4rem);}
.testimonials2__intro>p:not(.kicker){font-size:.95rem;line-height:1.6;color:var(--ink-soft);max-width:40ch;margin-top:.85rem;}
.testimonials2__quotes{grid-column:5 / 13;display:grid;grid-template-columns:repeat(3,1fr);align-self:end;}
.testimonials2 blockquote{margin:0;padding:0 1.5rem;border-left:1px solid var(--hairline);min-height:150px;display:flex;flex-direction:column;justify-content:center;}
.testimonials2 blockquote p{font-family:"Cormorant Garamond",serif;font-style:italic;font-size:clamp(1.35rem,1.7vw,1.75rem);line-height:1.25;color:#4e4b46;}
.testimonials2 cite{font-style:normal;font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;color:#88857e;margin-top:1.4rem;}

.brand-strip{height:160px;overflow:hidden;}
.brand-strip img{display:block;width:100%;height:100%;object-fit:cover;object-position:center 50%;}

.contact2{padding:2.3rem 0 2rem;border-top:1px solid var(--hairline);}
.contact2__grid{display:grid;grid-template-columns:1.15fr 1.55fr 1fr 1.6fr .9fr;gap:clamp(1rem,2.4vw,2.2rem);align-items:center;}
.contact2__title h2{font-size:clamp(3rem,4.5vw,4.8rem);line-height:.9;}
.contact2__copy{font-size:.86rem;line-height:1.55;color:var(--ink-soft);}
.contact2__copy p + p{margin-top:.45rem;}
.contact2__copy strong{display:block;margin-top:.6rem;color:var(--ink);font-weight:500;}
.contact2__channel{border-left:1px solid var(--hairline);padding-left:1.4rem;min-width:0;}
.contact2__channel span{display:block;font-size:.62rem;letter-spacing:.15em;text-transform:uppercase;color:#86837b;margin-bottom:.55rem;}
.contact2__channel a{font-family:"Cormorant Garamond",serif;font-size:clamp(1rem,1.4vw,1.3rem);color:var(--ink);text-decoration:none;overflow-wrap:anywhere;}
.contact2__location{font-size:.72rem;color:#6e6b64;border-left:1px solid var(--hairline);padding-left:1.4rem;}
.footer2{padding:1rem 0 1.5rem;font-size:.58rem;letter-spacing:.08em;text-transform:uppercase;color:#99958c;}
.footer2 .wrap{display:flex;justify-content:space-between;gap:1rem;}

@media (max-width:1050px){
  .nav__links--v2{display:none;}
  .hero2__grid{grid-template-columns:1.1fr .9fr;min-height:440px;padding-right:clamp(1.4rem,4vw,4rem)!important;}
  .hero2__rail{display:none;}
  .services2__grid{grid-template-columns:1fr 1fr;}
  .service2--wide{grid-column:auto;}
  .service2:nth-child(n){padding-left:1.4rem;padding-right:1.4rem;border-right:1px solid rgba(255,255,255,.14);}
  .service2:nth-child(2n),.services2__start{border-right:none;}
  .services2__start{padding-left:1.4rem;}
  .contact2__grid{grid-template-columns:1.1fr 1.5fr 1fr 1.5fr;}
  .contact2__location{grid-column:4;}
}
@media (max-width:760px){
  .nav__inner-v2{min-height:66px;}
  .brandlock__main{font-size:1.3rem;}
  .hero2__grid{grid-template-columns:1fr;padding-inline:0!important;min-height:auto;}
  .hero2__copy{padding:2.6rem clamp(1.4rem,4vw,4rem);}
  .hero2 h1{font-size:clamp(3.7rem,16vw,5rem);}
  .hero2__image{height:50vw;min-height:240px;}
  .editorial-heading,.editorial-copy,.editorial-quote{grid-column:1/-1;}
  .editorial-heading h2{max-width:12ch;}
  .editorial-quote{margin-top:1rem;}
  .bridge-grid__headline,.bridge-grid__copy,.bridge-grid__image,.bridge-grid__closing{grid-column:1/-1;}
  .bridge-grid__copy{padding-top:0;}
  .bridge-grid__image{aspect-ratio:1.2/1;margin-top:1rem;}
  .services2__feature{grid-template-columns:1fr;gap:2rem;}
  .services2__feature-title,.services2__feature-copy{grid-column:1;}
  .services2__feature-copy{grid-template-columns:1fr;}
  .services2__feature-copy h3,.outline-link{grid-column:1;}
  .services2__intro{grid-template-columns:1fr;}
  .services2__intro p{justify-self:start;}
  .services2__grid{grid-template-columns:1fr;}
  .service2:nth-child(n),.services2__start{padding:1.4rem 0;border-right:none;min-height:auto;}
  .testimonials2__intro,.testimonials2__quotes{grid-column:1/-1;}
  .testimonials2__quotes{grid-template-columns:1fr;margin-top:2rem;}
  .testimonials2 blockquote{min-height:auto;padding:1.4rem 0;border-left:none;border-top:1px solid var(--hairline);}
  .brand-strip{height:130px;}
  .contact2__grid{grid-template-columns:1fr;}
  .contact2__channel,.contact2__location{border-left:none;padding-left:0;border-top:1px solid var(--hairline);padding-top:1rem;grid-column:auto;}
  .footer2 .wrap{flex-direction:column;}
}

/* =========================================================
   PÁGINAS INTERNAS — dirección editorial HOME v4
   Selectores scoped para no alterar la Home aprobada.
   ========================================================= */
.page-philosophy,
.page-about,
.page-experience{padding-inline:clamp(1.25rem,5vw,3rem);}

.page-philosophy main,
.page-about main,
.page-experience main{overflow:hidden;}

.inner-hero{
  border-bottom:1px solid var(--hairline);
  padding-block:clamp(2.8rem,5.2vw,4.7rem);
}
.inner-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
  gap:clamp(2.5rem,6vw,6rem);
  align-items:center;
}
.inner-hero__copy{max-width:650px;}
.inner-hero__title{
  font-family:"Cormorant Garamond",serif;
  font-weight:500;
  font-size:clamp(3rem,6.2vw,5.5rem);
  line-height:.94;
  letter-spacing:-.035em;
  margin:0 0 2rem;
  max-width:11ch;
}
.inner-hero__lead,
.inner-hero__accent{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(1.65rem,2.7vw,2.35rem);
  line-height:1.12;
  color:var(--ink);
}
.inner-hero__intro{
  max-width:52ch;
  color:var(--ink-soft);
  font-size:1rem;
  line-height:1.75;
}
.inner-hero__intro p+p{margin-top:1rem;}
.inner-hero__intro .inner-hero__accent{margin-top:1.5rem;color:var(--ink);}
.inner-hero__media{
  margin:0;
  min-height:380px;
  overflow:hidden;
  background:#f6f6f3;
}
.inner-hero__media img{
  width:100%;height:100%;display:block;object-fit:cover;
}
.inner-hero__media--close img{object-position:center center;}
.inner-hero__media--portrait{min-height:520px;}
.inner-hero__media--portrait img{object-position:center 20%;}
.inner-hero__media--rack{min-height:470px;}

/* Filosofía */
.editorial-manifesto{padding-block:clamp(3.25rem,6vw,5.25rem);border-bottom:1px solid var(--hairline);}
.editorial-manifesto__grid{
  display:grid;
  grid-template-columns:minmax(260px,.75fr) minmax(0,1.25fr);
  gap:clamp(3rem,8vw,8rem);
  align-items:start;
}
.editorial-manifesto__quote{
  position:sticky;top:110px;
  font-family:"Cormorant Garamond",serif;
  font-style:italic;
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1.08;
  border-top:1px solid var(--ink);
  padding-top:1.5rem;
}
.editorial-manifesto__body{
  font-size:clamp(1.05rem,1.35vw,1.2rem);
  line-height:1.8;
  color:var(--ink-soft);
  max-width:58ch;
}
.editorial-manifesto__body p+p{margin-top:1.25rem;}
.editorial-statement--dark{
  background:var(--ink);color:var(--paper);
  margin-inline:calc(-1 * clamp(1.25rem,5vw,3rem));
  padding:clamp(3.25rem,6vw,5.25rem) clamp(1.25rem,5vw,3rem);
}
.editorial-statement__grid{
  display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(3rem,8vw,8rem);align-items:end;
}
.editorial-statement__big{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(2.4rem,4.8vw,4.6rem);line-height:1.02;
  max-width:15ch;
}
.editorial-statement__accent{color:rgba(255,255,255,.68);margin-top:1rem;}
.editorial-statement__small{font-size:1.05rem;line-height:1.8;color:rgba(255,255,255,.76);max-width:36ch;}
.editorial-statement__small p+p{margin-top:1rem;}

/* Sobre mí */
.inner-hero__grid--about{grid-template-columns:minmax(0,.95fr) minmax(360px,1.05fr);}
.about-story{padding-block:clamp(3.25rem,6vw,5.25rem);}
.about-story__grid{
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(3rem,9vw,9rem);align-items:start;
}
.about-story__column{font-size:1.05rem;line-height:1.8;color:var(--ink-soft);}
.about-story__column p+p{margin-top:1.3rem;}
.about-story__pull{
  font-family:"Cormorant Garamond",serif;
  color:var(--ink);
  font-size:clamp(1.8rem,3vw,2.7rem);
  line-height:1.08;
  margin-block:2.2rem!important;
}
.about-story__column--right{padding-top:clamp(1.5rem,5vw,4.25rem);}
.signature--editorial{margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid var(--hairline);}
.signature--editorial .signature__name{font-family:"Cormorant Garamond",serif;font-size:1.65rem;color:var(--ink);}
.signature--editorial .signature__role{margin-top:.45rem;font-size:.82rem;letter-spacing:.04em;line-height:1.6;color:var(--muted);}

/* Experiencia */
.xp-editorial{padding-block:clamp(3.25rem,6vw,5.25rem);border-bottom:1px solid var(--hairline);}
.xp-editorial__grid{
  display:grid;grid-template-columns:minmax(280px,.8fr) minmax(0,1.2fr);gap:clamp(3rem,8vw,8rem);align-items:start;
}
.xp-editorial__heading h2,
.xp-notebook__copy h2,
.xp-final-editorial h2{
  font-family:"Cormorant Garamond",serif;font-weight:500;
  font-size:clamp(2.4rem,4.5vw,4rem);line-height:1.02;margin:0;letter-spacing:-.025em;
}
.xp-editorial__body{font-size:1.04rem;line-height:1.78;color:var(--ink-soft);max-width:58ch;}
.xp-editorial__body p+p{margin-top:1.05rem;}
.xp-editorial__body--list p{padding-block:.85rem;border-bottom:1px solid var(--hairline);}
.xp-editorial__accent{
  font-family:"Cormorant Garamond",serif!important;
  font-size:clamp(1.65rem,2.7vw,2.3rem)!important;
  line-height:1.15!important;color:var(--ink)!important;
  border-bottom:none!important;padding-top:1.25rem!important;
}
.xp-editorial--dark{
  background:var(--ink);color:var(--paper);
  margin-inline:calc(-1 * clamp(1.25rem,5vw,3rem));
  padding-inline:clamp(1.25rem,5vw,3rem);
  border-bottom:none;
}
.xp-editorial--dark .sec__eyebrow{color:rgba(255,255,255,.6);}
.xp-editorial--dark .xp-editorial__body{color:rgba(255,255,255,.76);}
.xp-editorial--dark .xp-editorial__accent{color:var(--paper)!important;}
.xp-notebook{padding-block:clamp(3.25rem,6vw,5.25rem);border-bottom:1px solid var(--hairline);}
.xp-notebook__grid{display:grid;grid-template-columns:minmax(320px,.95fr) minmax(0,1.05fr);gap:clamp(3rem,7vw,7rem);align-items:center;}
.xp-notebook__media{margin:0;min-height:360px;overflow:hidden;}
.xp-notebook__media img{width:100%;height:100%;display:block;object-fit:cover;}
.xp-notebook__copy{font-size:1.04rem;line-height:1.78;color:var(--ink-soft);}
.xp-notebook__copy h2{color:var(--ink);margin-bottom:2rem;}
.xp-notebook__copy p+p{margin-top:1rem;}
.xp-final-editorial{padding-block:clamp(3.5rem,6.5vw,5.8rem);}
.xp-final-editorial__grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(3rem,9vw,9rem);align-items:start;}
.xp-final-editorial__body{font-size:1.04rem;line-height:1.8;color:var(--ink-soft);max-width:50ch;}
.xp-final-editorial__body p+p{margin-top:1.15rem;}
.xp-final-editorial__body .btn{margin-top:2.2rem;}

@media (max-width:860px){
  .inner-hero__grid,.inner-hero__grid--about,.editorial-manifesto__grid,.editorial-statement__grid,
  .about-story__grid,.xp-editorial__grid,.xp-notebook__grid,.xp-final-editorial__grid{grid-template-columns:1fr;}
  .inner-hero__media,.inner-hero__media--portrait,.inner-hero__media--rack{min-height:320px;}
  .inner-hero__media{order:-1;}
  .editorial-manifesto__quote{position:static;}
  .about-story__column--right{padding-top:0;}
  .xp-notebook__media{min-height:300px;}
}

/* =========================================================
   V7 — ajustes de escala solicitados (sin cambios de contenido)
   ========================================================= */

/* Mi Filosofía: módulos más compactos verticalmente */
.page-philosophy .inner-hero{
  padding-block:clamp(2.1rem,3.8vw,3.2rem);
}
.page-philosophy .inner-hero__media{
  min-height:300px;
  height:clamp(300px,32vw,390px);
}
.page-philosophy .editorial-manifesto{
  padding-block:clamp(2.35rem,4vw,3.5rem);
}
.page-philosophy .editorial-manifesto__grid{
  gap:clamp(2.4rem,6vw,6rem);
}
.page-philosophy .editorial-manifesto__quote{
  font-size:clamp(1.8rem,3.2vw,2.8rem);
  padding-top:1.1rem;
}
.page-philosophy .editorial-manifesto__body{
  line-height:1.66;
}
.page-philosophy .editorial-manifesto__body p+p{
  margin-top:.9rem;
}
.page-philosophy .editorial-statement--dark{
  padding-top:clamp(2.4rem,4.3vw,3.7rem);
  padding-bottom:clamp(2.4rem,4.3vw,3.7rem);
}
.page-philosophy .editorial-statement__big{
  font-size:clamp(2.15rem,4vw,3.7rem);
}
.page-philosophy .editorial-statement__small{
  line-height:1.65;
}

/* Sobre mí: retrato con menor escala y mejor balance con el texto */
.page-about .inner-hero{
  padding-block:clamp(2.35rem,4.2vw,3.6rem);
}
.page-about .inner-hero__grid--about{
  grid-template-columns:minmax(0,1.12fr) minmax(280px,.72fr);
  gap:clamp(2.5rem,6vw,5.5rem);
}
.page-about .inner-hero__media--portrait{
  min-height:0;
  width:min(100%,410px);
  aspect-ratio:4/5;
  justify-self:end;
}
.page-about .about-story{
  padding-block:clamp(2.75rem,4.8vw,4rem);
}

@media (max-width:860px){
  .page-philosophy .inner-hero__media{
    height:auto;
    min-height:260px;
  }
  .page-about .inner-hero__grid--about{
    grid-template-columns:1fr;
  }
  .page-about .inner-hero__media--portrait{
    width:min(100%,380px);
    justify-self:center;
    min-height:0;
  }
}

/* v8 — ajuste puntual Mi Filosofía: franja oscura más compacta */
.page-philosophy .editorial-statement--dark{
  padding-top:clamp(1.75rem,3vw,2.5rem);
  padding-bottom:clamp(1.75rem,3vw,2.5rem);
}
.page-philosophy .editorial-statement__grid{
  gap:clamp(2rem,5vw,5rem);
  align-items:center;
}
.page-philosophy .editorial-statement__big{
  font-size:clamp(1.9rem,3.3vw,3.05rem);
  line-height:1.03;
  max-width:17ch;
}
.page-philosophy .editorial-statement__accent{
  margin-top:.65rem;
}
.page-philosophy .editorial-statement__small{
  font-size:clamp(.95rem,1.15vw,1.02rem);
  line-height:1.55;
  max-width:34ch;
}
.page-philosophy .editorial-statement__small p+p{
  margin-top:.7rem;
}
@media (max-width:820px){
  .page-philosophy .editorial-statement--dark{
    padding-top:1.8rem;
    padding-bottom:1.8rem;
  }
  .page-philosophy .editorial-statement__grid{
    gap:1.6rem;
  }
  .page-philosophy .editorial-statement__big{
    font-size:clamp(1.9rem,9vw,2.65rem);
  }
}

/* V11 — Mi Filosofía: imagen limpia, sin texto y encuadre específico */
.page-philosophy .inner-hero__media--close{background:#f3f1ed}
.page-philosophy .inner-hero__media--close img{object-fit:cover;object-position:center 42%}
@media(max-width:860px){
  .page-philosophy .inner-hero__media--close img{object-position:center 38%}
}

/* V14 — Mi Filosofía: imagen abstracta editorial aprobada */
.page-philosophy .inner-hero__media--close img{
  object-fit:cover;
  object-position:center 54%;
}

/* V19 — navegación móvil accesible */
.mobile-menu-toggle{display:none;background:transparent;border:0;padding:8px;cursor:pointer;color:var(--ink)}
.mobile-menu-toggle span{display:block;width:24px;height:1px;background:currentColor;margin:5px 0}
.mobile-menu{display:none}
@media(max-width:760px){
 .nav__cta{display:none}
 .mobile-menu-toggle{display:block}
 .mobile-menu.is-open{display:flex;position:absolute;top:100%;left:0;right:0;background:#fff;border-bottom:1px solid #e8e4dc;padding:24px 22px 28px;flex-direction:column;gap:18px;box-shadow:0 10px 20px rgba(0,0,0,.04)}
 .mobile-menu a{font-size:12px;letter-spacing:.09em;text-transform:uppercase;text-decoration:none}
 .mobile-menu .mobile-contact{margin-top:4px;border-top:1px solid #ddd;padding-top:18px;font-weight:600}
}
