
:root {
  --cream: #EDE5D8;
  --ink:   #7A4A38;
  --clay:  #5B84B1;
  --stone: #9C8E80;
  --light: #EDE5D8;
  --white: #EDE5D8;
  --sans:  'Josefin Sans', sans-serif;
  --serif: 'Josefin Sans', sans-serif;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --max: 1160px;
  --radius: 2px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--sans); font-size: clamp(14px,1.5vw,16px); line-height: 1.65; -webkit-font-smoothing: antialiased; padding-top: 172px; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* BAR */
.bar { position: fixed; top: 0; left: 0; right: 0; z-index: 101; background: var(--light); color: var(--ink); font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.08em; text-align: center; padding: 0.55rem 1rem; }
.bar strong { color: var(--clay); }

/* HEADER */
header { position: fixed; top: 32px; left: 0; right: 0; z-index: 100; background: transparent; border-bottom: none; transition: background .4s, box-shadow .4s, top .4s; }
header.scrolled { top: 0; padding-top: 32px; background: var(--cream); border-bottom: 1px solid var(--clay); }

nav { width: calc(var(--max) + 300px); max-width: calc(100% - 2 * var(--gap)); margin: 0 auto; height: 140px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 1.5rem clamp(2rem,5vw,4rem); }

.nav-left { display: flex; gap: 2rem; align-items: center; justify-content: flex-start; }
.nav-center { display: flex; justify-content: center; }
.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 1rem; }
.nav-right-stack { display: flex; flex-direction: column; align-items: stretch; gap: 0.3rem; }

.logo { font-family: var(--sans); font-size: 1.35rem; font-weight: 400; letter-spacing: 0.02em; white-space: nowrap; cursor: pointer; }
.logo img { height: 108px; width: auto; object-fit: contain; filter: brightness(0) invert(1); transition: filter .4s; }
header.scrolled .logo img { filter: none; }

.nav-links { display: flex; gap: 1.1rem; align-items: center; flex-wrap: nowrap; }
.nav-links a { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.85); transition: color .2s; white-space: nowrap; }
  .nav-links { white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
header.scrolled .nav-links a { color: var(--clay); }
header.scrolled .nav-links a:hover, header.scrolled .nav-links a.active { color: var(--ink); }

.nav-tagline { font-size: 0.6rem; letter-spacing: 0.08em; color: #fff; text-transform: uppercase; white-space: nowrap; width: 100%; text-align: left; }
  header.scrolled .nav-tagline { color: var(--clay); }

.nav-cta { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.55rem 0 !important; border: 1px solid rgba(255,255,255,.7) !important; border-radius: var(--radius); transition: background .2s, color .2s, border-color .2s; color: #fff !important; background: transparent !important; display: block !important; width: 100% !important; text-align: center; box-sizing: border-box; }
.nav-cta:hover { background: rgba(255,255,255,.15) !important; border-color: #fff !important; }
header.scrolled .nav-cta { border-color: var(--clay) !important; color: var(--clay) !important; background: transparent !important; }
header.scrolled .nav-cta:hover { background: var(--clay) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; transition: .3s; }
header.scrolled .hamburger span { background: var(--clay); }

/* PAGES */
.page { display: none; }
.page.active { display: block; }

/* WRAP */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gap); }
section { padding: clamp(3rem,7vw,6rem) 0; }

/* TYPE */
.eyebrow { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); margin-bottom: 1rem; }
h1, .h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.6rem,6vw,5rem); line-height: 1.12; letter-spacing: -0.01em; }
h2, .h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem,3.5vw,2.8rem); line-height: 1.2; }
h3, .h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.25rem,2vw,1.6rem); line-height: 1.25; }
.lead { font-size: clamp(1rem,1.5vw,1.15rem); color: var(--stone); max-width: 56ch; line-height: 1.7; }

/* BUTTONS */
.btn { display: inline-block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.75rem 1.75rem; border-radius: var(--radius); transition: .2s; cursor: pointer; border: none; }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #663d2d; }
.btn-outline { background: transparent; border: 1px solid var(--clay); color: var(--clay); }
.btn-outline:hover { background: var(--clay); color: var(--white); }
.btn-clay { background: var(--clay); color: var(--white); }
.btn-clay:hover { background: #4a6f9a; }

/* HERO */
  .hero-carousel { position: relative; width: calc(var(--max) + 300px); max-width: calc(100% - 2 * var(--gap)); margin: 0 auto; aspect-ratio: 5/3; overflow: hidden; }
  .hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); z-index: 1; }
  .hero-points { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); }
.hero-point { padding: 1.5rem 2rem; border-right: 1px solid rgba(255,255,255,.2); background: transparent; transition: background .2s; cursor: pointer; }
.hero-point:hover { background: rgba(255,255,255,.05); }
.hero-point-title { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; margin-bottom: 0.4rem; }
.hero-point-desc { font-size: 0.8rem; color: rgba(255,255,255,.7); line-height: 1.5; }

@media (max-width: 900px) {
  /* hero-carousel mobile: video on top, tiles stacked below as their own column */
  .hero-carousel { position: relative; overflow: visible; aspect-ratio: auto; display: flex; flex-direction: column; }
  .hero-video { position: static; width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; filter: brightness(.55); }
  .hero-overlay { display: none; }
  .hero-points { position: static; grid-template-columns: 1fr; background: transparent; gap: 12px; padding: 1.5rem clamp(1rem,4vw,2rem); }
  .hero-point { border: 1px solid var(--clay); border-radius: var(--radius); background: transparent; padding: 1.25rem 1.5rem; }
  .hero-point-title { color: var(--clay); }
  .hero-point-desc { color: var(--clay); }
  nav .nav-links { display: none; }
  nav .nav-cta { display: none; }
  nav .nav-right-stack { display: none; }
  .hamburger { display: flex; transform: translateY(-15px); }
  .nav-right { grid-column: 1; justify-content: flex-start; }
  .nav-left { grid-column: 3; }
  .nav-center { grid-column: 2; }
}

/* INTRO STRIP */
.intro-strip { background: var(--light); padding: clamp(2rem,4vw,3.5rem) 0; }
.intro-strip .wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.intro-item { padding: 1.5rem 2rem; border-right: 1px solid #D6C9B8; }
.intro-item:last-child { border-right: none; }
.intro-item .num { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--clay); line-height: 1; margin-bottom: 0.5rem; }
.intro-item p { font-size: 0.82rem; color: var(--stone); letter-spacing: 0.04em; }
@media (max-width: 900px) { .intro-strip .wrap { grid-template-columns: 1fr; } .intro-item { border-right: none; border-bottom: 1px solid var(--light); } }

/* INSTAGRAM */
  .instagram-row { padding: clamp(3rem,6vw,5rem) 0; display: flex; flex-direction: column; align-items: center; overflow: hidden; width: 100%; }
.ig-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 3px; margin-top: 2rem; }
.ig-cell { aspect-ratio: 1; background: var(--light); overflow: hidden; }
.ig-cell-inner { width: 100%; height: 100%; transition: transform .4s; display: flex; align-items: center; justify-content: center; }
.ig-cell:hover .ig-cell-inner { transform: scale(1.06); }
.ph { width: 100%; height: 100%; }
.ph-1 { background: linear-gradient(150deg,#8FAEC8 0%,#5B84B1 100%); }
.ph-2 { background: linear-gradient(150deg,#C8BFB0 0%,#A89F90 100%); }
.ph-3 { background: linear-gradient(150deg,#7A9DB8 0%,#4E7699 100%); }
.ph-4 { background: linear-gradient(150deg,#D4C8B8 0%,#B4A898 100%); }
.ph-5 { background: linear-gradient(150deg,#9BBAD0 0%,#6A94B8 100%); }
.ph-6 { background: linear-gradient(150deg,#BEB5A8 0%,#9E9588 100%); }
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3,1fr); } }

/* EL ESTUDIO */
.studio-hero { display: grid; grid-template-columns: 1fr 1.2fr; min-height: 70vh; padding-top: 172px; }
.studio-hero-text { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem,6vw,6rem) var(--gap) clamp(3rem,6vw,6rem) clamp(2rem,6vw,5rem); }
.studio-hero-text h1 { margin: 1rem 0 1.5rem; }
.studio-hero-img { background: var(--light); position: relative; overflow: hidden; }
.studio-body { padding: clamp(3rem,6vw,6rem) 0; }
.studio-body .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: start; }
.studio-body-text p { color: var(--stone); line-height: 1.8; margin-bottom: 1.2rem; }
.studio-body-text p strong { color: var(--ink); font-weight: 500; }
.studio-image-stack { display: flex; flex-direction: column; gap: 4px; }
.studio-image-stack .img-box { aspect-ratio: 4/3; background: var(--light); overflow: hidden; }
.studio-image-stack .img-box.portrait { aspect-ratio: 3/4; }
.faq { padding: clamp(3rem,6vw,5rem) 0; background: var(--white); }
.faq h2 { margin-bottom: 2.5rem; }
.faq-item { border-top: 1px solid var(--light); padding: 1.25rem 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--light); }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-family: var(--sans); font-size: 1rem; }
.faq-q .icon { color: var(--clay); font-size: 1.2rem; transition: transform .3s; line-height: 1; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0.75rem 0 0.5rem; color: var(--stone); font-size: 1rem; line-height: 1.8; }
@media (max-width: 900px) { .studio-hero, .studio-body .wrap { grid-template-columns: 1fr; } }

/* TALLERES */
.talleres-hero { padding: clamp(4rem,8vw,7rem) 0 0; padding-top: calc(172px + clamp(4rem,8vw,7rem)); text-align: center; }
.talleres-hero h1 { max-width: 700px; margin: 1rem auto 1.5rem; }
.talleres-list { padding: clamp(2rem,5vw,4rem) 0; }
.taller-item { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--light); min-height: 400px; overflow: hidden; }
.taller-item:nth-child(even) .taller-content { order: 2; }
.taller-item:nth-child(even) .taller-img { order: 1; }
.taller-content { padding: clamp(2.5rem,5vw,4.5rem); display: flex; flex-direction: column; justify-content: center; }
.taller-content h3 { margin: 0.75rem 0 1rem; }
.taller-content p { color: var(--stone); line-height: 1.75; font-size: 0.92rem; margin-bottom: 1.5rem; }
.taller-meta { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; font-size: 0.78rem; letter-spacing: .06em; color: var(--stone); }
.taller-meta span::before { content: '— '; color: var(--clay); }
.taller-img { background: var(--light); }
@media (max-width: 900px) { .taller-item { grid-template-columns: 1fr; } .taller-item:nth-child(even) .taller-content, .taller-item:nth-child(even) .taller-img { order: unset; } }

/* CLASES */
.clases-header { padding: clamp(4rem,8vw,7rem) 0 clamp(2rem,4vw,3rem); padding-top: calc(172px + clamp(4rem,8vw,7rem)); }
.clases-header h1 { max-width: 700px; margin: 1rem 0 1.5rem; }
.programa-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--light); margin: 2rem 0; border: 1px solid var(--light); }
.programa-card { background: var(--cream); padding: 2rem 1.75rem; }
.programa-card .week { font-size: 0.68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--clay); margin-bottom: 1rem; }
.programa-card h3 { margin-bottom: .75rem; font-size: 1.1rem; }
.programa-card p { font-size: 0.84rem; color: var(--stone); line-height: 1.7; }
.clases-membership { background: var(--light); color: var(--ink); padding: clamp(3rem,6vw,5rem) 0; margin: 3rem 0 0; }
.clases-membership .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.membership-text .eyebrow { color: var(--clay); }
.membership-text h2 { color: var(--ink); margin: 1rem 0 1.5rem; }
.membership-text p { color: var(--stone); line-height: 1.8; margin-bottom: 1rem; }
.membership-perks { margin: 1.5rem 0; }
.membership-perks li { padding: .5rem 0; font-size: 0.85rem; color: var(--ink); border-bottom: 1px solid var(--light); display: flex; gap: .75rem; }
.membership-perks li::before { content: '🌀'; flex-shrink: 0; }
.membership-img { background: var(--stone); aspect-ratio: 3/4; overflow: hidden; }
@media (max-width: 900px) { .programa-grid, .clases-membership .wrap { grid-template-columns: 1fr; } }

/* CONTACTO */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; min-height: calc(100vh - 130px); gap: 0; padding-top: 172px; }
.contact-info { background: var(--light); color: var(--ink); padding: clamp(3rem,6vw,6rem) clamp(2rem,5vw,4rem); display: flex; flex-direction: column; justify-content: center; }
.contact-info .eyebrow { color: var(--clay); }
.contact-info h1 { color: var(--ink); margin: 1rem 0 1.5rem; font-size: clamp(2rem,4vw,3.2rem); }
.contact-info p { color: var(--stone); line-height: 1.8; max-width: 42ch; margin-bottom: 2rem; }
.contact-details { margin-top: 2.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-top: 1px solid #D6C9B8; font-size: 0.85rem; color: var(--stone); }
.contact-detail strong { display: block; color: var(--ink); margin-bottom: .2rem; font-size: 0.7rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-detail .icon { color: var(--clay); flex-shrink: 0; margin-top: .1rem; }
.contact-form-wrap { padding: clamp(3rem,6vw,6rem) clamp(2rem,5vw,4.5rem); background: var(--white); display: flex; flex-direction: column; justify-content: center; }
.form-heading { margin-bottom: 2.5rem; }
.form-heading .eyebrow { margin-bottom: .5rem; }
.form-heading h2 { font-size: clamp(1.5rem,2.5vw,2rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.field label { font-size: 0.7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); margin-bottom: .4rem; }
.field input, .field select, .field textarea { font-family: var(--sans); font-size: 0.9rem; color: var(--ink); background: var(--cream); border: 1px solid var(--light); border-radius: var(--radius); padding: .75rem 1rem; transition: border-color .2s, box-shadow .2s; outline: none; -webkit-appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(91,132,177,.1); }
.field textarea { min-height: 120px; resize: vertical; }
.checkbox-group { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
.checkbox-label { display: flex; align-items: center; gap: .75rem; font-size: 0.85rem; color: var(--ink); cursor: pointer; }
.checkbox-label input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--clay); cursor: pointer; }
.form-note { font-size: 0.75rem; color: var(--stone); margin-bottom: 1.5rem; line-height: 1.6; }
.form-submit { width: 100%; font-size: 0.82rem; padding: .9rem 2rem; margin-top: .5rem; }
.success-msg { display: none; background: var(--light); border-left: 3px solid var(--clay); padding: 1.25rem 1.5rem; margin-top: 1rem; font-size: 0.88rem; color: var(--ink); line-height: 1.7; }
.success-msg strong { display: block; font-family: var(--serif); font-size: 1.1rem; margin-bottom: .3rem; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* FOOTER */
footer { background: var(--light); color: var(--ink); padding: clamp(3rem,5vw,4rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid #D6C9B8; margin-bottom: 2rem; justify-content: start; }
.footer-brand .logo { color: var(--ink); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; color: var(--stone); line-height: 1.7; max-width: 26ch; }
.footer-col h4 { font-size: 0.68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--clay); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.82rem; color: var(--stone); margin-bottom: .5rem; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-newsletter { margin-top: 1rem; }
.footer-newsletter input { background: var(--white); border: 1px solid #D6C9B8; color: var(--ink); font-size: 0.82rem; padding: .6rem 1rem; border-radius: var(--radius); width: 100%; outline: none; margin-bottom: .5rem; }
.footer-newsletter input:focus { border-color: var(--clay); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; color: var(--stone); flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: var(--stone); transition: color .2s; }
.footer-bottom a:hover { color: var(--ink); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* MOBILE NAV */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--white); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--ink); }
.mobile-nav .close-btn { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.page.active > * { animation: fadeUp .4s ease both; }

  /* INSTAGRAM */
  .instagram-row { padding: clamp(3rem,6vw,5rem) 0; }
  .ig-wrap { width: calc(var(--max) + 300px); max-width: calc(100% - 2 * var(--gap)); margin: 0 auto; }
  behold-widget { display: block; width: 100%; }

  /* PAGE COVER HERO (Talleres / Clases) */
  .page-cover { position: relative; width: calc(var(--max) + 300px); max-width: calc(100% - 2 * var(--gap)); margin: 0 auto !important; overflow: hidden; display: block; font-size: 0; line-height: 0; padding: 0 !important; }
  .page-cover img, .page-cover video { display: block !important; width: 100% !important; height: auto !important; object-fit: initial !important; }
  .page-cover-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); z-index: 1; }
  .page-cover-text { position: absolute; top: clamp(160px, 22vw, 260px); left: 0; right: 0; z-index: 2; padding: clamp(2rem,5vw,4rem); }
  .page-cover-text .eyebrow { color: #fff; }
  .page-cover-text h1 { color: #fff; margin-top: 0.5rem; font-size: clamp(0.95rem,1.4vw,1.15rem); font-weight: 300; max-width: 480px; line-height: 1.6; }

  @media (max-width: 900px) {
    .page-cover { aspect-ratio: 3/4; }
    .page-cover img, .page-cover video { height: 100% !important; object-fit: cover !important; }
  }

  /* 4 SQUARE IMAGES */
  .wide-wrap { width: calc(var(--max) + 300px); max-width: calc(100% - 2 * var(--gap)); margin: 0 auto; }
  .squares-grid { display: grid; grid-template-columns: repeat(5,1fr); column-gap: 3px; row-gap: clamp(1.5rem,2.5vw,2rem); margin-top: 0; align-items: start; }
  .square-cell { display: flex; flex-direction: column; }
  .square-item { aspect-ratio: 4/5; background: var(--light); position: relative; overflow: hidden; }
  .square-item img { width: 100%; height: 100%; object-fit: cover; }
  .square-caption { text-align: center; padding: 0.75rem 0.5rem 0; font-size: 0.8rem; color: var(--stone); letter-spacing: 0.04em; line-height: 1.4; }
  @media (max-width: 900px) { .squares-grid { grid-template-columns: 1fr; } }
  @media (min-width: 901px) and (max-width: 1200px) { .squares-grid { grid-template-columns: repeat(3,1fr); } }

  /* TWO COLUMN TEXT */
  .two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,8vw,7rem); padding: clamp(3rem,6vw,5rem) 0; }
  .two-col-text .col h3 { margin-bottom: 1rem; }
  .two-col-text .col p:not(.eyebrow), .wrap .col p:not(.eyebrow) { color: var(--stone); line-height: 1.8; margin-bottom: 1rem; }
  .two-col-text .col ul { margin: 1rem 0; }
  .two-col-text .col li { padding: .5rem 0; font-size: 0.92rem; color: var(--ink); border-bottom: 1px solid var(--light); }
  @media (max-width: 900px) { .two-col-text { grid-template-columns: 1fr; } }

  .taller-card { padding: 1.75rem 0; border-bottom: 1px solid var(--light); }
  .taller-card:last-child { border-bottom: none; }
  .taller-card-header { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
  .taller-card-header h3 { margin: 0; }
  .taller-price { font-family: var(--serif); font-size: 1.5rem; color: var(--clay); white-space: nowrap; }
  .taller-card p { color: var(--stone); line-height: 1.8; margin-bottom: 0.75rem; }
  .taller-card p:last-child { margin-bottom: 0; }

  .contacto-embed-wrap { width: 100%; }
  .contacto-embed-wrap iframe { width: 100%; min-height: 1200px; border: none; display: block; }

  /* MOSAIC GALLERY */
  .mosaic-wrap { padding: clamp(1rem,3vw,2rem) 0; }
  .mosaic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2.5vw, 28px);
  }
  .mosaic-item { aspect-ratio: 4/5; overflow: hidden; background: var(--light); position: relative; }
  .mosaic-full { grid-column: 1 / -1; grid-row: auto; width: 100%; align-self: start; }
  .mosaic-full img { width: 100% !important; height: auto !important; display: block !important; object-fit: unset !important; aspect-ratio: auto !important; }
  .mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
  .mosaic-grid + .mosaic-full-row, .mosaic-full-row + .mosaic-grid {
    margin-top: clamp(16px, 2.5vw, 28px);
  }
  .mosaic-full-row { width: 100%; }
  .mosaic-full-row img { width: 100%; height: auto; display: block; }

  /* NEWSLETTER MODAL */
  .newsletter-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 300;
    align-items: center;
    justify-content: center;
  }
  .newsletter-modal-overlay.open { display: flex; }
  .newsletter-modal-content {
    position: relative;
    background: var(--cream);
    width: min(480px, 90vw);
    height: min(600px, 85vh);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
  }
  .newsletter-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  .newsletter-modal-close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    z-index: 301;
    background: var(--cream);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--ink);
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
  }

  /* COOKIE BANNER */
  .cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    background: var(--cream);
    border-top: 1px solid var(--clay);
    padding: 1.25rem clamp(1.5rem,4vw,3rem);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  }
  .cookie-banner.show { display: flex; }
  .cookie-banner p {
    font-size: 0.82rem;
    color: var(--stone);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 240px;
  }
  .cookie-banner-actions {
    display: flex;
    gap: .75rem;
    flex-shrink: 0;
  }
  .btn-outline-cookie {
    background: transparent;
    border: 1px solid var(--stone);
    color: var(--stone);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: .6rem 1.25rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: .2s;
  }
  .btn-outline-cookie:hover { border-color: var(--ink); color: var(--ink); }
  @media (max-width: 600px) {
    .cookie-banner { flex-direction: column; align-items: stretch; }
    .cookie-banner-actions { justify-content: stretch; }
    .cookie-banner-actions .btn, .cookie-banner-actions button { flex: 1; }
  }


/* Separated-pages helpers */
.page-live { display: block; }
.page-enter > * { animation: fadeUp .4s ease both; }
