
:root{
  --ink:#111111;
  --black:#111111;
  --yellow:#FFD400;
  --yellow-dark:#E6BE00;
  --white:#FFFFFF;
  --offwhite:#F7F7F5;
  --line:rgba(17,17,17,.16);
  --serif:"Playfair Display", Georgia, serif;
  --sans:"DM Sans", Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--white);
  color:var(--ink);
  font-family:var(--sans);
  overflow-x:hidden;
}

img{display:block;width:100%;height:100%;object-fit:cover}
a{color:inherit;text-decoration:none}
button{font:inherit}
.section-pad{padding:120px clamp(24px,6vw,96px)}
.eyebrow{
  margin:0 0 22px;
  font-size:12px;
  line-height:1;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.eyebrow p {
  color:#FFD400;
  
}

.eyebrow.light{color:rgba(255,255,255,.78)}
h1,h2,h3,p{margin-top:0}
h1,h2{
  font-family:var(--serif);
  font-weight:600;
  letter-spacing:-.045em;
}
h1 em,h2 em{font-weight:600}
h2{
  margin-bottom:0;
  font-size:clamp(48px,6vw,86px);
  line-height:.93;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border:1px solid transparent;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  transition:.25s ease;
}
.button-light{background:var(--white);color:var(--ink)}
.button-light:hover{background:var(--offwhite);transform:translateY(-2px)}
.button-dark{background:var(--black);color:#fff}
.button-dark:hover{background:var(--black);transform:translateY(-2px)}
.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding-bottom:4px;
  border-bottom:1px solid currentColor;
  font-size:13px;
  font-weight:700;
}
.light-link{color:#fff}

/* HEADER */
.site-header{
  position:absolute;
  z-index:20;
  top:0;
  left:0;
  width:100%;
  height:90px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:40px;
  padding:0 clamp(24px,4vw,72px);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.22);
}
.brand{display:flex;align-items:center;gap:12px}
.brand-mark{
  width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;
  border:1px solid var(--yellow);
  color:var(--yellow);
  font-family:var(--serif);font-size:24px;
}
.brand-text{display:flex;flex-direction:column;gap:2px}
.brand-text strong{font-size:14px;letter-spacing:.16em}
.brand-text small{font-size:10px;letter-spacing:.08em;opacity:.75}
.nav{display:flex;justify-content:center;gap:30px}
.nav a{font-size:12px;font-weight:600;opacity:.86}
.nav a:hover{opacity:1}
.header-cta{
  padding:12px 19px;
  border:1px solid var(--yellow);
  border-radius:999px;
  font-size:12px;font-weight:700;
}
.menu-toggle{display:none}

/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  color:#fff;
  overflow:hidden;
}
.hero-media,.hero-overlay{position:absolute;inset:0}
.hero-media{z-index:-2}
.hero-overlay{
  z-index:-1;
  background:
    linear-gradient(90deg,rgba(20,29,18,.73) 0%,rgba(20,29,18,.34) 58%,rgba(20,29,18,.16) 100%),
    linear-gradient(0deg,rgba(20,29,18,.4),transparent 45%);
}
.hero-content{
  width:min(900px,88vw);
  padding:clamp(170px,22vh,250px) 0 120px clamp(24px,8vw,130px);
}
.hero h1{
  margin-bottom:28px;
  font-size:clamp(64px,9vw,132px);
  line-height:.82;
}
.hero-copy{
  max-width:570px;
  margin-bottom:34px;
  font-size:16px;
  line-height:1.65;
  color:rgba(255,255,255,.83);
}
.hero-actions{display:flex;align-items:center;gap:25px;flex-wrap:wrap}
.hero-note{
  position:absolute;
  right:clamp(24px,5vw,80px);
  bottom:52px;
  max-width:310px;
  display:grid;grid-template-columns:36px 1fr;gap:18px;
  align-items:start;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.45);
}
.hero-note span{font-size:11px;opacity:.62}
.hero-note p{margin:0;font-size:11px;line-height:1.5;letter-spacing:.04em;text-transform:uppercase}
.scroll-cue{
  position:absolute;
  left:clamp(24px,4vw,72px);
  bottom:46px;
  display:flex;gap:14px;align-items:center;
  font-size:10px;text-transform:uppercase;letter-spacing:.15em;
}
.scroll-cue i{font-style:normal;font-size:17px}

/* INTRO */
.intro{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:clamp(50px,9vw,150px);
  align-items:end;
}
.intro-copy{
  max-width:570px;
  border-left:1px solid var(--line);
  padding-left:36px;
}
.intro-copy p{
  font-size:16px;line-height:1.75;color:rgba(39,49,38,.74)
}

/* EXPERIENCES */
.experience-grid{
  padding-top:0;
  display:grid;
  grid-template-columns:1.35fr 1fr;
  grid-template-rows:360px 360px;
  gap:16px;
}
.experience-card{position:relative;overflow:hidden;min-height:360px}
.experience-card.large{grid-row:1/3}
.experience-card img{transition:transform .7s cubic-bezier(.2,.7,.2,1)}
.experience-card:hover img{transform:scale(1.04)}
.card-shade{
  position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(20,28,18,.78),rgba(20,28,18,.06) 65%)
}
.card-copy{
  position:absolute;left:30px;right:30px;bottom:28px;color:#fff
}
.card-copy span{
  display:block;margin-bottom:14px;font-size:10px;font-weight:700;letter-spacing:.15em;text-transform:uppercase;opacity:.72
}
.card-copy h3{
  margin-bottom:8px;
  font-family:var(--serif);
  font-size:clamp(30px,4vw,52px);
  font-weight:600;
}
.card-copy p{margin-bottom:16px;font-size:13px;opacity:.76}
.card-copy a{font-size:12px;font-weight:700}

/* FEATURE SPLIT */
.feature-split{
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(50px,8vw,120px);align-items:center;
  background:var(--offwhite);
}
.feature-image{position:relative;min-height:690px}
.floating-label{
  position:absolute;right:-25px;bottom:35px;
  background:var(--white);
  padding:18px 22px;
  font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
}
.feature-copy>p:not(.eyebrow){
  max-width:560px;margin:30px 0;
  font-size:16px;line-height:1.7;color:rgba(39,49,38,.72);
}
.feature-list{margin:36px 0}
.feature-list div{
  display:grid;grid-template-columns:50px 1fr;gap:10px;
  padding:18px 0;border-top:1px solid var(--line);
}
.feature-list div:last-child{border-bottom:1px solid var(--line)}
.feature-list span{font-size:10px;opacity:.55}
.feature-list p{margin:0;font-size:13px}

/* SERVICES */
.services{display:grid;grid-template-columns:1fr 1fr;column-gap:6vw}
.services-head{
  grid-column:1/-1;
  display:grid;grid-template-columns:1.1fr .9fr;gap:60px;align-items:end;
  margin-bottom:70px;
}
.services-head>p{
  max-width:500px;
  font-size:15px;line-height:1.65;color:rgba(39,49,38,.7)
}
.service-list{border-top:1px solid var(--line)}
.service-row{
  width:100%;
  display:grid;
  grid-template-columns:45px 1fr 1.1fr 30px;
  align-items:center;gap:12px;
  padding:24px 0;
  color:var(--ink);
  background:none;border:0;border-bottom:1px solid var(--line);
  text-align:left;cursor:pointer;
}
.service-row span{font-size:10px;opacity:.45}
.service-row strong{font-family:var(--serif);font-size:29px;font-weight:600}
.service-row small{font-size:12px;color:rgba(39,49,38,.58)}
.service-row i{font-style:normal;opacity:.3;transition:.2s}
.service-row:hover i,.service-row.is-active i{opacity:1;transform:translate(4px,-4px)}
.service-row.is-active strong{color:var(--yellow-dark)}
.service-preview{height:520px}

/* EVENTS */
.events{
  background:var(--black);
  color:#fff;
}
.events-top{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  column-gap:70px;
  align-items:end;
}
.events-top .eyebrow{grid-column:1/-1}
.events-top p:last-child{
  max-width:500px;
  font-size:15px;line-height:1.7;color:rgba(255,255,255,.7)
}
.event-types{
  display:grid;grid-template-columns:repeat(3,1fr);
  margin-top:75px;border-top:1px solid rgba(255,255,255,.22)
}
.event-types article{
  min-height:270px;
  padding:30px 28px;
  border-right:1px solid rgba(255,255,255,.22)
}
.event-types article:last-child{border-right:0}
.event-types span{font-size:10px;opacity:.55}
.event-types h3{
  margin:80px 0 14px;
  font-family:var(--serif);font-size:32px;font-weight:600
}
.event-types p{font-size:13px;line-height:1.6;color:rgba(255,255,255,.65)}
.event-cta{
  margin-top:30px;padding:26px 0 0;
  border-top:1px solid rgba(255,255,255,.22);
  display:flex;justify-content:space-between;gap:30px;align-items:center
}
.event-cta div{display:flex;flex-direction:column;gap:6px}
.event-cta small{font-size:10px;text-transform:uppercase;letter-spacing:.13em;opacity:.58}
.event-cta strong{font-size:18px}

/* GALLERY */
.gallery{
  position:relative;
  overflow:hidden;
}
.gallery-head{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:60px;
  align-items:end;
  margin-bottom:60px;
}
.gallery-head>p{
  max-width:460px;
  font-size:14px;
  line-height:1.7;
  color:rgba(39,49,38,.65);
}
.gallery-grid.gallery-editorial{
  display:grid;
  grid-template-columns:1.35fr .72fr .72fr;
  grid-template-rows:250px 250px;
  gap:18px;
}
.gallery-item{
  margin:0;
  overflow:hidden;
  background:var(--offwhite);
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .65s cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img{transform:scale(1.035)}
.gallery-item-main{
  grid-column:1;
  grid-row:1 / 3;
  min-height:518px;
}
.gallery-item-top{
  grid-column:2 / 4;
  grid-row:1;
}
.gallery-item-bottom-left{
  grid-column:2;
  grid-row:2;
}
.gallery-item-bottom-right{
  grid-column:3;
  grid-row:2;
}

/* LOCATION */
.location{
  display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center;
  background:var(--offwhite);
}
.location-copy p{
  max-width:440px;margin:28px 0;font-size:15px;line-height:1.6;color:rgba(39,49,38,.7)
}
.location-card{
  min-height:380px;
  padding:38px;
  background:var(--yellow);
  color:#fff;
  display:flex;flex-direction:column;justify-content:space-between;
}
.location-number{
  font-family:var(--serif);font-size:96px;line-height:1;opacity:.25
}
.location-card small{font-size:10px;letter-spacing:.15em;opacity:.7}
.location-card strong{
  display:block;margin:10px 0;
  font-family:var(--serif);font-size:58px;font-weight:600
}
.location-card p{max-width:390px;font-size:13px;line-height:1.6;opacity:.72}

/* FINAL CTA */
.final-cta{position:relative;min-height:680px;color:#fff;display:grid;place-items:center;text-align:center}
.final-cta>img,.final-overlay{position:absolute;inset:0}
.final-cta>img{z-index:-2}
.final-overlay{z-index:-1;background:rgba(21,30,19,.52)}
.final-content h2{font-size:clamp(70px,9vw,130px);margin-bottom:38px}

/* FOOTER */
.footer{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:30px;
  padding:60px clamp(24px,6vw,96px) 100px;
  background:var(--black);color:#fff;
}
.footer-brand{display:flex;flex-direction:column;gap:5px}
.footer-brand strong{letter-spacing:.18em}
.footer-brand small{font-size:11px;opacity:.55}
.footer-links,.footer-contact{display:flex;flex-direction:column;gap:11px}
.footer a{font-size:12px;opacity:.72}
.footer a:hover{opacity:1}
.copyright{
  position:absolute;left:clamp(24px,6vw,96px);bottom:34px;
  margin:0;font-size:10px;opacity:.4
}
.floating-whatsapp{
  position:fixed;right:22px;bottom:22px;z-index:30;
  width:58px;height:58px;border-radius:50%;
  display:grid;place-items:center;
  background:var(--white);color:var(--ink);
  box-shadow:0 8px 30px rgba(0,0,0,.18);
  font-size:11px;font-weight:800;letter-spacing:.05em
}

/* Reveal */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease,transform .7s ease;
}
.reveal.is-visible{opacity:1;transform:none}

/* RESPONSIVE */
@media (max-width: 900px){
  .section-pad{padding:85px 24px}
  .site-header{height:74px;padding:0 20px;grid-template-columns:1fr auto}
  .nav,.header-cta{display:none}
  .menu-toggle{
    display:block;width:42px;height:42px;border:0;background:transparent;padding:11px;cursor:pointer
  }
  .menu-toggle span{display:block;height:1px;background:#fff;margin:7px 0}
  .site-header.menu-open .nav{
    position:absolute;display:flex;flex-direction:column;gap:0;
    top:74px;left:0;right:0;
    padding:14px 20px 25px;
    background:var(--black);
  }
  .site-header.menu-open .nav a{
    padding:16px 0;border-bottom:1px solid rgba(255,255,255,.13)
  }
  .hero-content{padding:170px 24px 160px;width:100%}
  .hero h1{font-size:clamp(60px,17vw,92px)}
  .hero-note{display:none}
  .scroll-cue{left:24px;bottom:32px}
  .intro,.feature-split,.services,.services-head,.events-top,.gallery-head,.location{
    grid-template-columns:1fr
  }
  .intro-copy{border-left:0;border-top:1px solid var(--line);padding:28px 0 0}
  .experience-grid{grid-template-columns:1fr;grid-template-rows:none;padding-top:0}
  .experience-card.large{grid-row:auto}
  .experience-card{min-height:460px}
  .feature-image{min-height:520px}
  .floating-label{right:12px}
  .services-head{gap:28px}
  .service-preview{grid-row:2;height:420px;margin-bottom:25px}
  .service-list{grid-row:3}
  .service-row{grid-template-columns:34px 1fr 30px}
  .service-row small{display:none}
  .event-types{grid-template-columns:1fr}
  .event-types article{min-height:auto;border-right:0;border-bottom:1px solid rgba(255,255,255,.22)}
  .event-types h3{margin:45px 0 12px}
  .event-cta{align-items:flex-start;flex-direction:column}
  .gallery-grid.gallery-editorial{
    grid-template-columns:1fr 1fr;
    grid-template-rows:360px 220px 220px;
    gap:12px;
  }
  .gallery-item-main{
    grid-column:1 / -1;
    grid-row:1;
    min-height:0;
  }
  .gallery-item-top{grid-column:1 / -1;grid-row:2}
  .gallery-item-bottom-left{grid-column:1;grid-row:3}
  .gallery-item-bottom-right{grid-column:2;grid-row:3}
  .gallery{padding-bottom:85px}
  .footer{grid-template-columns:1fr;padding-bottom:90px}
}


/* ===== PALETA RAIGÜEN ORIGINAL ===== */
.button-light{
  background:var(--yellow);
  color:var(--black);
  border-color:var(--yellow);
}
.button-light:hover{
  background:var(--white);
  color:var(--black);
}
.button-dark{
  background:var(--black);
  color:var(--yellow);
  border-color:var(--black);
}
.button-dark:hover{
  background:var(--yellow);
  color:var(--black);
}
.header-cta:hover{
  background:var(--yellow);
  color:var(--black);
}
.eyebrow{
  color:var(--yellow-dark);
}
.eyebrow.light{
  color:var(--yellow);
}
.events{
  background:var(--black);
}
.location-card{
  background:var(--yellow);
  color:var(--black);
}
.location-card small,
.location-card p{
  color:rgba(17,16,13,.72);
}
.location-number{
  color:rgba(17,16,13,.30);
}
.footer{
  background:var(--black);
}
.floating-whatsapp{
  background:var(--yellow);
  color:var(--black);
}
.card-copy span,
.event-types span{
  color:var(--yellow);
}
.text-link:hover{
  color:var(--yellow-dark);
}


/* ===== IDENTIDAD RAIGÜEN: AMARILLO / NEGRO / BLANCO ===== */
body{
  background:var(--white);
  color:var(--black);
}

.site-header{
  color:var(--white);
}

.brand-mark{
  border-color:var(--yellow);
  color:var(--yellow);
}

.header-cta{
  border-color:var(--yellow);
  color:var(--white);
}
.header-cta:hover{
  background:var(--yellow);
  color:var(--black);
}

.eyebrow{
  color:var(--black);
}
.eyebrow.light{
  color:var(--yellow);
}

.button-light{
  background:var(--yellow);
  color:var(--black);
  border-color:var(--yellow);
}
.button-light:hover{
  background:var(--white);
  color:var(--black);
}

.button-dark{
  background:var(--black);
  color:var(--white);
  border-color:var(--black);
}
.button-dark:hover{
  background:var(--yellow);
  color:var(--black);
}

.intro,
.services,
.gallery{
  background:var(--white);
}

.feature-split,
.location{
  background:var(--offwhite);
}

.events,
.footer{
  background:var(--black);
  color:var(--white);
}

.location-card{
  background:var(--yellow);
  color:var(--black);
}

.service-row.is-active strong{
  color:var(--yellow-dark);
}

.card-copy span,
.event-types span{
  color:var(--yellow);
}

.floating-whatsapp{
  background:var(--yellow);
  color:var(--black);
}

.text-link:hover{
  color:var(--yellow-dark);
}

/* El amarillo aparece como acento gráfico fuerte */
.feature-list div,
.service-list,
.service-row,
.gallery-head,
.intro-copy{
  border-color:rgba(17,17,17,.18);
}

::selection{
  background:var(--yellow);
  color:var(--black);
}


/* ===== AJUSTES SOLICITADOS ===== */
/* Espacio de logo en el header */
.brand-logo-slot{
  width:230px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  border:none;
  padding:0;
}

.brand-logo-slot img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:left center;
}
/* Alojamiento: capacidad más visible y alineada con el CTA */
.stay-actions{
  display:flex;
  align-items:stretch;
  gap:14px;
  flex-wrap:wrap;
}
.stay-capacity{
  min-height:52px;
  padding:0 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--black);
  border-radius:999px;
  background:var(--white);
  color:var(--black);
  font-size:16px;
  font-weight:700;
  white-space:nowrap;
}

/* Ubicación */
.location-eyebrow{
  color:var(--yellow) !important;
  font-size:18px;
  letter-spacing:.12em;
  margin-bottom:26px;
}
.location-card{
  min-height:300px;
  max-width:520px;
  width:88%;
  justify-self:end;
  padding:30px;
  border-radius:28px;
}
.location-number{font-size:76px}
.location-card strong{font-size:48px}

@media (max-width:900px){
  .brand-logo-slot{
  width:180px;
  height:60px;
}
  .stay-actions{flex-direction:column;align-items:stretch}
  .stay-capacity,.stay-actions .button{width:100%}
  .location-card{width:100%;max-width:none;justify-self:stretch}
  .location-eyebrow{font-size:16px}
}


/* REDES SOCIALES */
.footer-social{
  display:flex;
  gap:10px;
  margin-top:10px;
  flex-wrap:wrap;
}
.social-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  padding:0 12px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  transition:.25s ease;
}
.footer .social-link{opacity:1}
.social-link svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.social-link:nth-child(2) svg{
  fill:currentColor;
  stroke:none;
}
.social-link span{
  font-size:11px;
  font-weight:700;
}
.social-link:hover{
  background:var(--yellow);
  border-color:var(--yellow);
  color:var(--black);
  transform:translateY(-2px);
}

@media (max-width:900px){
  .footer-social{margin-top:14px}
}


/* ===== REDES SOCIALES EN HEADER ===== */
.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
}

.header-social{
  display:flex;
  align-items:center;
  gap:8px;
}

.header-social-link{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border:none;
  border-radius:50%;
  transition:transform .25s ease, background-color .25s ease;
}

.header-social-link:hover{
  background:rgba(255,212,0,.16);
  transform:translateY(-2px);
}

.header-social-logo-slot{
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
}

.header-social-logo-slot img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
}

/* Los logos ya son imágenes reales: sin cuadros ni líneas punteadas */
.instagram-logo-slot,
.facebook-logo-slot{
  border:none;
  border-radius:0;
}

@media (max-width:900px){
  /* En móvil mantenemos las redes visibles y ocultamos solo Cotizar. */
  .site-header{
    grid-template-columns:auto 1fr auto;
    gap:10px;
  }

  .header-actions{
    display:flex;
    grid-column:2;
    grid-row:1;
    justify-self:end;
    margin-right:4px;
  }

  .header-actions .header-cta{
    display:none;
  }

  .header-social{
    gap:4px;
  }

  .header-social-link{
    width:34px;
    height:34px;
  }

  .header-social-logo-slot{
    width:21px;
    height:21px;
  }

  .menu-toggle{
    grid-column:3;
    grid-row:1;
  }
}

@media (max-width:520px){
  .brand-logo-slot{
    width:145px;
    height:54px;
  }

  .header-social-link{
    width:30px;
    height:30px;
  }

  .header-social-logo-slot{
    width:18px;
    height:18px;
  }
}
