*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --ink:#1a1a16;
  --ink-soft:#3d3d33;
  --ink-muted:#7a7a6a;
  --olive:#3e4f1e;
  --olive-mid:#5a7228;
  --olive-light:#7d9e42;
  --olive-pale:#f2f5ec;
  --olive-wash:#e8edda;
  --gold:#9b7d2e;
  --gold-light:#c9a84c;
  --gold-pale:#faf5e8;
  --cream:#faf8f3;
  --paper:#f5f2ea;
  --white:#ffffff;
  --rule:rgba(30,30,20,0.12);
  --serif:'Playfair Display',Georgia,serif;
  --baskerville:'Libre Baskerville',Georgia,serif;
  --sans:'Jost',sans-serif;
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--sans);background:var(--cream);color:var(--ink);overflow-x:hidden;font-weight:300}

/* ── SCROLLBAR ── */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:var(--paper)}
::-webkit-scrollbar-thumb{background:var(--olive-light);border-radius:3px}

/* ── UTILITY ── */
.rule{display:block;height:1px;background:var(--rule);width:100%}
.gold-rule{display:block;height:1px;background:var(--gold-light);width:40px}

/* ── NAV ── */
header{
  position:fixed;top:0;left:0;right:0;z-index:200;
  background:rgba(250,248,243,0.96);backdrop-filter:blur(16px);
  border-bottom:1px solid var(--rule);
}
.nav-inner{
  max-width:1320px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 3rem;height:72px;
}
.nav-brand{
  font-family:var(--serif);font-size:1.15rem;font-weight:500;
  color:var(--olive);letter-spacing:0.04em;text-decoration:none;
  display:flex;flex-direction:column;line-height:1.1;
}
.nav-brand-sub{
  font-family:var(--sans);font-size:0.6rem;letter-spacing:0.3em;
  text-transform:uppercase;color:var(--gold);font-weight:400;margin-top:2px;
  display:block;
}
nav ul{display:flex;gap:2.5rem;list-style:none;align-items:center}
nav a{
  font-family:var(--sans);font-size:0.72rem;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--ink-muted);text-decoration:none;font-weight:400;transition:color .2s;
}
nav a:hover{color:var(--olive)}
.nav-book{
  background:var(--olive)!important;color:var(--white)!important;
  padding:0.6rem 1.5rem;letter-spacing:0.15em!important;
  transition:background .2s!important;
}
.nav-book:hover{background:var(--olive-mid)!important}
.hamburguer{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px}
.hamburguer span{display:block;width:22px;height:1.5px;background:var(--olive);transition:.3s}

/* ── HERO ── */
.hero{
  min-height:100vh;display:grid;grid-template-columns:1fr 1fr;
  padding-top:72px;
}
.hero-left{
  display:flex;flex-direction:column;justify-content:center;
  padding:6rem 5rem 6rem 6rem;
  background:var(--cream);
  position:relative;
}
.hero-left::after{
  content:'';position:absolute;right:0;top:15%;bottom:15%;
  width:1px;background:var(--rule);
}
.hero-eyebrow{
  font-family:var(--sans);font-size:0.65rem;letter-spacing:0.3em;
  text-transform:uppercase;color:var(--gold);font-weight:400;
  display:flex;align-items:center;gap:1rem;margin-bottom:2rem;
}
.hero-eyebrow::before{content:'';display:block;width:28px;height:1px;background:var(--gold-light)}
.hero-h1{
  font-family:var(--serif);font-size:clamp(3.2rem,5vw,5rem);
  font-weight:400;line-height:1.07;color:var(--ink);
  margin-bottom:1.75rem;letter-spacing:-0.01em;
}
.hero-h1 em{font-style:italic;color:var(--olive)}
.hero-h1 strong{font-weight:700;display:block}
.hero-body{
  font-size:0.92rem;color:var(--ink-muted);line-height:1.9;
  max-width:400px;margin-bottom:2.5rem;font-weight:300;
  font-family:var(--baskerville);font-style:italic;
}
.hero-ctas{display:flex;gap:1rem;flex-wrap:wrap}
.btn{
  font-family:var(--sans);font-size:0.7rem;letter-spacing:0.18em;
  text-transform:uppercase;font-weight:400;padding:0.9rem 2.2rem;
  border-radius:0;cursor:pointer;transition:all .25s;text-decoration:none;
  display:inline-block;
}
.btn-dark{background:var(--ink);color:var(--white);border:1px solid var(--ink)}
.btn-dark:hover{background:var(--olive);border-color:var(--olive);transform:translateY(-2px)}
.btn-ghost{background:transparent;color:var(--ink);border:1px solid var(--rule)}
.btn-ghost:hover{border-color:var(--olive);color:var(--olive);transform:translateY(-2px)}

.hero-stats{
  display:flex;gap:2.5rem;margin-top:3.5rem;
  padding-top:2rem;border-top:1px solid var(--rule);
}
.stat-num{font-family:var(--serif);font-size:1.8rem;font-weight:500;color:var(--olive);line-height:1}
.stat-label{font-size:0.65rem;letter-spacing:0.15em;text-transform:uppercase;color:var(--ink-muted);margin-top:4px}

/* ── HERO IMAGES — tamaño estandarizado ── */
.hero-right{
  position:relative;overflow:hidden;
  display:grid;grid-template-rows:1fr 1fr;   /* dos filas iguales */
}
.hero-img-top,
.hero-img-bottom{
  overflow:hidden;
  position:relative;
  /* altura fija igual para las dos mitades */
  height:100%;
  min-height:260px;
}
.hero-img-top img,
.hero-img-bottom img{
  /* object-fit:cover garantiza que cualquier imagen llene
     exactamente el contenedor sin distorsionarse */
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  transition:transform 6s ease;
}
.hero-img-top:hover img,
.hero-img-bottom:hover img{transform:scale(1.04)}
.hero-img-top::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to bottom,rgba(62,79,30,0.1),transparent);
  pointer-events:none;
}
.hero-label{
  position:absolute;bottom:1.25rem;left:1.25rem;z-index:2;
  background:rgba(250,248,243,0.92);backdrop-filter:blur(8px);
  padding:0.5rem 0.85rem;
  font-size:0.65rem;letter-spacing:0.15em;text-transform:uppercase;
  color:var(--olive);font-weight:500;
  border-left:2px solid var(--gold-light);
}

/* ── MARQUEE STRIP ── */
.marquee-strip{
  background:var(--olive);padding:0.9rem 0;overflow:hidden;
  white-space:nowrap;
}
.marquee-track{
  display:inline-block;animation:marquee 28s linear infinite;
}
.marquee-track span{
  font-family:var(--sans);font-size:0.65rem;letter-spacing:0.2em;
  text-transform:uppercase;color:rgba(255,255,255,0.75);font-weight:300;
  padding:0 2.5rem;
}
.marquee-track span.dot{
  color:var(--gold-light);padding:0;font-size:0.5rem;vertical-align:middle;
}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ── SECTION WRAPPER ── */
.wrap{max-width:1320px;margin:0 auto;padding:0 3rem}

/* ── INTRO / STATEMENT ── */
.statement{padding:8rem 0;background:var(--cream)}
.statement-inner{
  max-width:1320px;margin:0 auto;padding:0 3rem;
  display:grid;grid-template-columns:1fr 2px 1fr;gap:5rem;align-items:center;
}
.statement-inner .vr{background:var(--rule);height:200px;align-self:center}
.statement-quote{
  font-family:var(--serif);font-size:clamp(1.6rem,3vw,2.5rem);
  font-weight:400;font-style:italic;line-height:1.35;color:var(--ink);
}
.statement-quote em{font-style:normal;color:var(--olive-light)}
.statement-body p{
  font-family:var(--baskerville);font-size:0.9rem;line-height:1.95;
  color:var(--ink-muted);font-style:italic;margin-bottom:1rem;
}
.statement-body p:last-child{margin-bottom:0}

/* ── SERVICES ── */
.services-section{background:var(--paper);padding:7rem 0}
.section-header{text-align:center;margin-bottom:4rem}
.section-tag{
  font-family:var(--sans);font-size:0.65rem;letter-spacing:0.3em;
  text-transform:uppercase;color:var(--gold);font-weight:400;
  display:flex;align-items:center;justify-content:center;gap:1rem;margin-bottom:1rem;
}
.section-tag::before,.section-tag::after{content:'';display:block;width:24px;height:1px;background:var(--gold-light)}
.section-h2{
  font-family:var(--serif);font-size:clamp(2rem,3.5vw,3.2rem);
  font-weight:400;color:var(--ink);letter-spacing:-0.01em;
}
.section-h2 em{font-style:italic;color:var(--olive)}

.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5px;
  background:var(--rule);border:1px solid var(--rule);
}

/* Cada tile tiene altura total fija */
.services-tile{
  background:var(--cream);overflow:hidden;
  position:relative;transition:background .3s;
  display:flex;flex-direction:column;   /* para que la imagen no se encoja */
}
.services-tile:hover{background:var(--white)}

/* Contenedor de imagen con ratio fijo 4:3 — siempre el mismo molde */
.services-tile-img{
  width:100%;
  aspect-ratio:4/3;          /* relación fija */
  overflow:hidden;
  position:relative;
  flex-shrink:0;             /* nunca se aplasta */
}
.services-tile-img img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;          /* recorta, no deforma */
  object-position:center;
  transition:transform .6s ease;
}
.services-tile:hover .services-tile-img img{transform:scale(1.06)}

.services-tile-body{padding:1.75rem 2rem 2rem;flex:1}
.service-num{
  font-family:var(--sans);font-size:0.6rem;letter-spacing:0.25em;
  color:var(--gold);font-weight:400;margin-bottom:0.6rem;
}
.service-title{
  font-family:var(--serif);font-size:1.3rem;font-weight:500;
  color:var(--ink);margin-bottom:0.6rem;
}
.service-desc{font-size:0.82rem;color:var(--ink-muted);line-height:1.8;font-weight:300}

/* ── PRICES ── */
.prices-section{background:var(--cream);padding:7rem 0}
.prices-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
  margin-top:1rem;
}

/* ── PROCESS ── */
.process{padding:7rem 0;background:var(--olive);color:var(--white)}
.process .section-tag{color:rgba(255,255,255,0.5)}
.process .section-tag::before,.process .section-tag::after{background:rgba(255,255,255,0.3)}
.process .section-h2{color:var(--white)}
.process .section-h2 em{color:var(--gold-light)}
.process-steps{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;margin-top:4rem;
  border:1px solid rgba(255,255,255,0.12);
}
.step{
  padding:2.5rem;border-right:1px solid rgba(255,255,255,0.12);
}
.step:last-child{border-right:none}
.step-num{
  font-family:var(--serif);font-size:3.5rem;font-weight:400;
  color:rgba(255,255,255,0.1);line-height:1;margin-bottom:1.5rem;
}
.step-line{width:24px;height:1px;background:var(--gold-light);margin-bottom:1.25rem}
.step-title{
  font-family:var(--serif);font-size:1.1rem;font-weight:500;
  color:var(--white);margin-bottom:0.6rem;
}
.step-text{font-size:0.8rem;color:rgba(255,255,255,0.55);line-height:1.8;font-weight:300}

/* ── WHY US ── */
.why{padding:7rem 0;background:var(--cream)}
.why-inner{
  max-width:1320px;margin:0 auto;padding:0 3rem;
  display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:center;
}
.why-image{position:relative}

/* Imagen why — ratio fijo 3:4 ── */
.why-image img{
  width:100%;
  aspect-ratio:3/4;
  display:block;
  object-fit:cover;
  object-position:center;
}
.why-image-accent{
  position:absolute;bottom:-2rem;right:-2rem;
  background:var(--gold-pale);border:1px solid rgba(155,125,46,0.2);
  padding:2rem;min-width:180px;
}
.why-accent-num{
  font-family:var(--serif);font-size:2.5rem;font-weight:500;
  color:var(--gold);line-height:1;
}
.why-accent-label{font-size:0.7rem;letter-spacing:0.1em;color:var(--ink-muted);margin-top:4px;font-weight:300;text-transform:uppercase}
.why-list{list-style:none;margin-top:2rem}
.why-item{
  padding:1.25rem 0;border-bottom:1px solid var(--rule);
  display:flex;align-items:flex-start;gap:1.25rem;
}
.why-icon{
  width:32px;height:32px;border:1px solid var(--olive-light);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:2px;
}
.why-icon svg{width:14px;height:14px;stroke:var(--olive-light);stroke-width:1.5;fill:none}
.why-item-title{font-family:var(--serif);font-size:1rem;font-weight:500;color:var(--ink);margin-bottom:0.3rem}
.why-item-text{font-size:0.82rem;color:var(--ink-muted);line-height:1.7;font-weight:300}

/* ── TESTIMONIAL ── */
.testimonial{
  background:var(--gold-pale);border-top:1px solid rgba(155,125,46,0.15);
  border-bottom:1px solid rgba(155,125,46,0.15);padding:5rem 0;
}
.testimonial-inner{max-width:780px;margin:0 auto;text-align:center;padding:0 3rem}
.testimonial-quote-mark{
  font-family:var(--serif);font-size:6rem;line-height:0.6;
  color:var(--gold-light);opacity:0.4;margin-bottom:2rem;display:block;
}
.testimonial-text{
  font-family:var(--serif);font-size:clamp(1.2rem,2.5vw,1.65rem);
  font-style:italic;font-weight:400;color:var(--ink);line-height:1.5;
  margin-bottom:1.5rem;
}
.testimonial-author{
  font-size:0.7rem;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--gold);font-weight:400;
}

/* ── BOOKING ── */
.booking{padding:7rem 0;background:var(--paper)}
.booking-inner{
  max-width:1320px;margin:0 auto;padding:0 3rem;
  display:grid;grid-template-columns:1fr 1.4fr;gap:6rem;
}
.booking-info .section-h2{text-align:left;margin-bottom:1.25rem}
.booking-text{
  font-family:var(--baskerville);font-size:0.9rem;font-style:italic;
  color:var(--ink-muted);line-height:1.9;margin-bottom:2rem;
}
.contact-list{list-style:none}
.contact-item{
  display:flex;align-items:center;gap:0.85rem;
  font-size:0.82rem;color:var(--ink-muted);font-weight:300;
  padding:0.65rem 0;border-bottom:1px solid var(--rule);
}
.contact-item svg{
  width:16px;height:16px;stroke:var(--gold);stroke-width:1.5;fill:none;flex-shrink:0;
}
.social-links{display:flex;gap:1.25rem;margin-top:1.75rem}
.social-link{
  font-size:0.65rem;letter-spacing:0.18em;text-transform:uppercase;
  color:var(--ink-muted);text-decoration:none;
  padding-bottom:2px;border-bottom:1px solid var(--rule);
  transition:color .2s,border-color .2s;
}
.social-link:hover{color:var(--olive);border-color:var(--olive)}

/* ── FORM ── */
.form-wrap{
  background:var(--white);border:1px solid var(--rule);
  padding:3rem;
}
.form-hed{
  font-family:var(--serif);font-size:1.6rem;font-weight:400;
  color:var(--ink);margin-bottom:0.3rem;
}
.form-sub{font-size:0.78rem;color:var(--ink-muted);font-weight:300;letter-spacing:0.05em;margin-bottom:2rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem}
.fg{display:flex;flex-direction:column;gap:0.35rem;margin-bottom:1.25rem}
.fg label{
  font-size:0.62rem;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--gold);font-weight:400;
}
.fg input,.fg select,.fg textarea{
  font-family:var(--sans);font-size:0.88rem;color:var(--ink);
  background:var(--cream);border:none;border-bottom:1px solid var(--rule);
  padding:0.7rem 0;font-weight:300;outline:none;
  transition:border-color .2s;appearance:none;width:100%;
}
.fg select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a7a6a'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 0 center;
  padding-right:1.5rem;cursor:pointer;
}
.fg input:focus,.fg select:focus,.fg textarea:focus{
  border-color:var(--olive-mid);background:transparent;
}
.fg textarea{resize:vertical;min-height:80px;line-height:1.7}
.form-btn{
  width:100%;background:var(--ink);color:var(--white);
  border:1px solid var(--ink);padding:1rem;
  font-family:var(--sans);font-size:0.72rem;letter-spacing:0.2em;
  text-transform:uppercase;font-weight:400;cursor:pointer;
  transition:all .25s;margin-top:0.5rem;
}
.form-btn:hover:not(:disabled){background:var(--olive);border-color:var(--olive)}
.form-btn:disabled{opacity:0.5;cursor:not-allowed}
.form-msg{
  margin-top:1rem;padding:0.8rem 1rem;font-size:0.82rem;
  font-weight:300;text-align:center;display:none;
}
.form-msg.ok{display:block;background:#f0f4e8;color:var(--olive);border:1px solid var(--olive-wash)}
.form-msg.err{display:block;background:#fdf0ee;color:#7a2e22;border:1px solid #f0c4bc}

/* ── FOOTER ── */
footer{
  background:var(--ink);color:var(--white);
  padding:4rem 0 2.5rem;
}
.footer-inner{
  max-width:1320px;margin:0 auto;padding:0 3rem;
}
.footer-top{
  display:grid;grid-template-columns:1fr auto auto;
  gap:4rem;align-items:start;padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,0.1);margin-bottom:2rem;
}
.footer-brand-name{
  font-family:var(--serif);font-size:1.4rem;font-weight:400;
  color:var(--white);letter-spacing:0.04em;margin-bottom:0.3rem;
}
.footer-brand-tag{
  font-size:0.65rem;letter-spacing:0.25em;text-transform:uppercase;
  color:var(--gold-light);font-weight:300;
}
.footer-brand-desc{
  font-size:0.8rem;color:rgba(255,255,255,0.4);line-height:1.8;
  max-width:280px;font-weight:300;margin-top:1rem;
}
.footer-col-title{
  font-size:0.62rem;letter-spacing:0.25em;text-transform:uppercase;
  color:rgba(255,255,255,0.4);margin-bottom:1rem;font-weight:400;
}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:0.6rem}
.footer-links a{
  font-size:0.82rem;color:rgba(255,255,255,0.6);text-decoration:none;
  font-weight:300;transition:color .2s;
}
.footer-links a:hover{color:var(--gold-light)}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;
}
.footer-copy{font-size:0.72rem;color:rgba(255,255,255,0.3);font-weight:300}
.footer-fine{font-size:0.72rem;color:rgba(255,255,255,0.25);font-weight:300}

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media(max-width:1024px){
  .hero{grid-template-columns:1fr}
  /* En tablet el hero-right se convierte en fila horizontal */
  .hero-right{
    grid-template-rows:none;
    grid-template-columns:1fr 1fr;
    height:50vw;
  }
  .hero-img-top,
  .hero-img-bottom{
    height:100%;
    min-height:0;
  }
  .hero-left{padding:5rem 3rem}
  .hero-left::after{display:none}
  .statement-inner{grid-template-columns:1fr;gap:2rem}
  .statement-inner .vr{display:none}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .process-steps{grid-template-columns:repeat(2,1fr)}
  .step:nth-child(2){border-right:none}
  .step:nth-child(1),.step:nth-child(2){border-bottom:1px solid rgba(255,255,255,0.12)}
  .why-inner{grid-template-columns:1fr;gap:3rem}
  .why-image{display:none}
  .booking-inner{grid-template-columns:1fr;gap:3rem}
  .footer-top{grid-template-columns:1fr;gap:2rem}
}
@media(max-width:640px){
  .nav-inner{padding:0 1.5rem}
  .nav-links-wrap{display:none!important}
  .hamburguer{display:flex}
  .hero-left{padding:4rem 1.75rem}
  .hero-right{
    grid-template-columns:1fr;
    grid-template-rows:1fr 1fr;
    height:120vw;
  }
  .wrap,
  .booking-inner,
  .footer-inner,
  .statement-inner,
  .why-inner{padding:0 1.5rem}
  .services-grid{grid-template-columns:1fr}
  .process-steps{grid-template-columns:1fr}
  .step{border-right:none!important;border-bottom:1px solid rgba(255,255,255,0.12)}
  .form-row{grid-template-columns:1fr}
  .form-wrap{padding:2rem 1.5rem}
  .booking{padding:4rem 0}
  .services-section,.process,.why,.booking,.statement{padding:4rem 0}
  .hero-stats{flex-direction:column;gap:1.25rem}
}

/* ════════════════════════════════════
   ABOUT — Historia, Misión y Visión
   ════════════════════════════════════ */
.about {
  padding: 7rem 0;
  background: var(--white);
}

/* Historia: imagen izquierda + texto derecha */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--rule);
}

.about-story-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 6s ease;
}
.about-story-img:hover img { transform: scale(1.04); }

.about-story-text .about-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.about-story-text .about-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-light);
}

.about-h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.about-h3 em { font-style: italic; color: var(--olive); }

.about-story-text p {
  font-family: var(--baskerville);
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.95;
  font-style: italic;
  margin-bottom: 1rem;
}
.about-story-text p:last-child { margin-bottom: 0; }

/* Cards de Misión y Visión */
.about-mv {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-mv-divider {
  background: var(--rule);
  align-self: stretch;
}

.about-mv-card {
  padding: 0.5rem 0;
}

.about-mv-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--olive-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.about-mv-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--olive-light);
  fill: none;
}

.about-mv-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.about-mv-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.about-mv-text {
  font-family: var(--baskerville);
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 1rem;
}

.about-mv-tagline {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--olive-mid);
  font-style: italic;
}

/* ════════════════════════════════════
   FOOTER — Corrección de columnas
   ════════════════════════════════════ */

/* Sobreescribimos el footer-top para 3 columnas correctas:
   marca (más ancha) | servicios | contacto */
footer .footer-top {
  grid-template-columns: 1.6fr 1fr 1fr;
}

.footer-brand-col {
  padding-right: 2rem;
}

/* Responsive del about */
@media(max-width:1024px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-mv {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-mv-divider { display: none; }
  .about-mv-card {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--rule);
  }
  .about-mv-card:last-child { border-bottom: none; padding-bottom: 0; }
  footer .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:640px) {
  footer .footer-top {
    grid-template-columns: 1fr;
  }
  .about { padding: 4rem 0; }
  .about-story { margin-bottom: 3rem; padding-bottom: 3rem; }
}

/* Mobile nav open state */
@media(max-width:640px) {
  .nav-links-wrap.mobile-open {
    display: flex !important;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(250,248,243,0.98);
    backdrop-filter: blur(16px);
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--rule);
    z-index: 199;
  }
  .nav-links-wrap.mobile-open ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}
/* ════════════════════════════════════════════════════════
   precios.css — Estilos exclusivos de la página de precios
   Depende de style.css para variables y estilos base
   ════════════════════════════════════════════════════════ */

/* ── HERO de la página de precios ── */
.prices-hero {
    padding-top: 72px; /* altura del nav fijo */
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
}
.prices-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 6rem 3rem 5rem;
    text-align: center;
}
.prices-hero-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    margin-top: 1rem;
}
.prices-hero-title em {
    font-style: italic;
    color: var(--olive);
}
.prices-hero-body {
    font-family: var(--baskerville);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--ink-muted);
    line-height: 1.9;
    max-width: 540px;
    margin: 0 auto;
}

/* ── Sección contenedora ── */
.prices-section {
    background: var(--paper);
    padding: 6rem 0 7rem;
}

/* ── Separador entre filas ── */
.prices-divider {
    height: 1px;
    background: var(--rule);
    margin: 4rem 0;
}

/* ── Filas de tarjetas ── */
.prices-row {
    display: grid;
    gap: 1.5px;                       /* gap mínimo que forma la línea de grid */
    background: var(--rule);          /* el fondo del gap da la ilusión de borde */
    border: 1px solid var(--rule);
}
.prices-row-3 { grid-template-columns: repeat(3, 1fr); }
.prices-row-2 { grid-template-columns: repeat(2, 1fr); }

/* ── Tarjeta individual ── */
.price-card {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background 0.25s;
}
.price-card:hover { background: var(--white); }

/* Card destacada (Most Popular) */
.price-card--featured {
    background: var(--olive-pale);
}
.price-card--featured:hover { background: var(--white); }

/* Badge "Most Popular" */
.price-card-badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--olive);
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.4rem 0.85rem;
}

/* Parte superior con contenido */
.price-card-top {
    padding: 2.25rem 2rem 1.5rem;
    flex: 1;
}

/* Número de orden */
.price-card-num {
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

/* Título del servicio */
.price-card-title {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

/* Tagline del servicio */
.price-card-tagline {
    font-family: var(--baskerville);
    font-size: 0.78rem;
    font-style: italic;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Lista de ítems incluidos */
.price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}
.price-list li {
    font-family: var(--sans);
    font-size: 0.8rem;
    color: var(--ink-muted);
    font-weight: 300;
    line-height: 1.55;
    padding-left: 1.1rem;
    position: relative;
}
/* Bullet dorado personalizado */
.price-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Nota de precio variable */
.price-note {
    font-family: var(--baskerville);
    font-size: 0.75rem;
    font-style: italic;
    color: var(--ink-muted);
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--rule);
}

/* ── Pie de cada tarjeta con el precio ── */
.price-card-footer {
    padding: 1.25rem 2rem 1.75rem;
    border-top: 1px solid var(--rule);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

/* "From" pequeño */
.price-from {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 300;
}

/* Precio numérico */
.price-amount {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--olive);
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Footer para "Ask for prices" */
.price-card-footer--ask {
    background: var(--olive);
    border-top: none;
    padding: 1.35rem 2rem;
    justify-content: center;
    transition: background 0.2s;
}
.price-card:hover .price-card-footer--ask { background: var(--olive-mid); }

.price-ask {
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
}

/* ── CTA final ── */
.prices-cta {
    background: var(--ink);
    padding: 6rem 0;
}
.prices-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}
.prices-cta-inner .section-tag {
    color: rgba(255,255,255,0.4);
}
.prices-cta-inner .section-tag::before,
.prices-cta-inner .section-tag::after {
    background: rgba(255,255,255,0.2);
}
.prices-cta-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.prices-cta-title em {
    font-style: italic;
    color: var(--gold-light);
}
.prices-cta-body {
    font-family: var(--baskerville);
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.prices-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* Ajuste de colores de botones sobre fondo oscuro */
.prices-cta .btn-ghost {
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
}
.prices-cta .btn-ghost:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    background: transparent;
}

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media(max-width: 1024px) {
    .prices-row-3 { grid-template-columns: repeat(2, 1fr); }
    .prices-row-2 { grid-template-columns: repeat(2, 1fr); }
    .prices-hero-inner { padding: 4rem 2rem 3.5rem; }
}

@media(max-width: 640px) {
    .prices-section { padding: 4rem 0 5rem; }
    .prices-row-3,
    .prices-row-2 { grid-template-columns: 1fr; }
    .price-card-top { padding: 1.75rem 1.5rem 1.25rem; }
    .price-card-footer { padding: 1rem 1.5rem 1.5rem; }
    .price-amount { font-size: 1.8rem; }
    .prices-cta-inner { padding: 0 1.5rem; }
    .prices-divider { margin: 2.5rem 0; }
}

/* ── LOGO en header ── */
.nav-brand {
    flex-direction: row;      /* logo + texto en fila */
    align-items: center;
    gap: 0.65rem;
}
.nav-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
    flex-shrink: 0;
}
.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* ── LOGO en footer ── */
.footer-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 1rem;
    opacity: 0.9;
    /*filter: brightness(0) invert(1); /* lo pone en blanco para el fondo oscuro */
}
/* ── Métodos de pago ── */
.payment-methods {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rule);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.payment-label {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 400;
    flex-shrink: 0;
}
.payment-badges {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.payment-badge {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--olive);
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--olive-light);
    background: var(--olive-pale);
}