:root{
  --hm:#303829;         /* Heavy Metal */
  --vg:#5D5B38;         /* Verdigris */
  --dng:#B1AD88;        /* Dark Neutral Green */
  --w:#ffffff;
  --b:#000000;

  --radius:22px;
  --shadow: 0 10px 30px rgba(0,0,0,.18);

  --font-title: "Baskervville", serif;
  --font-body: "Source Serif 4", serif;
  --font-script: "Baskervville", serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--w);
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(177,173,136,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(93,91,56,.18), transparent 60%),
    var(--hm);
}

/* Layout */
.wrap{max-width:1100px;margin:0 auto;padding:0 18px}
.section{padding:70px 0}
.section--soft{background: rgba(255,255,255,.04)}
.grid2{display:grid;grid-template-columns:1.2fr .8fr;gap:26px}
@media (max-width:900px){.grid2{grid-template-columns:1fr}}

/* Header */
.header{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(10px);
  background: rgba(48,56,41,.72);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header__inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;color:var(--w)}
.brand__logo{height:80px;width:auto;display:block;filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));}

.nav{display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.nav a{
  color:rgba(255,255,255,.9);
  text-decoration:none;
  padding:10px 10px;
  border-radius:999px;
  transition: transform .25s ease, background .25s ease;
}
.nav a:hover{background: rgba(255,255,255,.08); transform: translateY(-1px);}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:999px;
  background: linear-gradient(135deg, rgba(177,173,136,.95), rgba(93,91,56,.9));
  color: var(--hm);
  text-decoration:none;
  font-weight:650;
  border:1px solid rgba(255,255,255,.12);
  transition: transform .25s ease, filter .25s ease;
}
.btn:hover{transform: translateY(-1px); filter:brightness(1.05)}
.btn--ghost{
  background: transparent;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.16);
}
.btn[aria-disabled="true"]{opacity:.6; pointer-events:none}

/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:90px 0 40px;
  overflow:hidden;
}
.hero__watermark{
  position:absolute;
  right:-10%;
  bottom:-20%;
  width:min(900px, 90vw);
  opacity:.06;
  pointer-events:none;
  user-select:none;
  filter: blur(.2px);
  transform: rotate(-6deg);
  z-index:0;
}

/* texto hero (izquierda) */
.hero__inner{
  position:relative;
  z-index:5;
  display:grid;
  grid-template-columns: 1fr;
  align-items:start;
  padding-top: 8px;
}
.hero__text{
  max-width: 620px;
  transform: translate(-100px, -50px); /* sube bloque completo */
}

/* “Estructuras…” MÁS GRANDE y ARRIBA de MONARCA */
.kicker{
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(255,255,255,.88);
  margin:0 0 8px 0;
  font-size: 1.45rem;   /* <-- aquí el tamaño */
}

/* MONARCA ocupa el espacio central */
.title{
  font-family: var(--font-title);
  font-size: clamp(54px, 6.2vw, 86px);
  margin: 0 0 14px 0;
  line-height: 1;
}

/* descripción */
.subtitle{
  margin:0;
  color:rgba(255,255,255,.86);
  max-width: 44ch;
  line-height: 1.55;
  font-size: 1.05rem;
}

/* COLLAGE flotante (derecha) */
.hero__collage--float{
  position:absolute;
  z-index:20;
  right: 40px;          /* <-- MOVER COLLAGE izquierda/derecha */
  top: 50%;
  transform: translateY(-52%);
  width: min(560px, 46vw);
  height: min(560px, 62vh);
}

/* tarjetas collage */
.hero__shot{
  position:absolute;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  background: rgba(255,255,255,.06);
  opacity:0;
  transform: translateY(22px) scale(.96);
  animation: heroIn .75s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero__shot img{width:100%;height:100%;object-fit:cover;display:block}

/* posiciones */
.hero__shot--1{
  width: 58%;
  height: 78%;
  left: 0%;
  top: 6%;
  transform: rotate(-2deg);
  animation-delay: .35s;
}
.hero__shot--2{
  width: 62%;
  height: 82%;
  left: 22%;
  top: 0%;
  transform: rotate(1.5deg);
  z-index:2;
  animation-delay: 1.15s;
}
.hero__shot--3{
  width: 52%;
  height: 72%;
  right: 0%;
  top: 18%;
  transform: rotate(3deg);
  z-index:3;
  animation-delay: 1.95s;
}
@keyframes heroIn{
  to{opacity:1; transform: translateY(0) scale(1);}
}

/* Scroll indicator */
.hero__scroll{
  position:absolute;
  left:50%;
  bottom:16px;
  transform: translateX(-50%);
  width:34px;
  height:54px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:10px;
  text-decoration:none;
  backdrop-filter: blur(6px);
  z-index:25;
}
.hero__scrollDot{
  width:6px;height:6px;border-radius:99px;
  background: rgba(255,255,255,.9);
  animation: dot 1.4s ease-in-out infinite;
}
@keyframes dot{
  0%{ transform: translateY(0); opacity:.9; }
  60%{ transform: translateY(16px); opacity:.35; }
  100%{ transform: translateY(0); opacity:.9; }
}

/* Responsivo */
@media (max-width: 900px){
  .hero{padding:84px 0 36px;}
  .hero__text{transform:none; max-width: 100%;}
  .hero__collage--float{
    position:relative;
    right:auto; top:auto;
    transform:none;
    width:100%;
    height:420px;
    margin:14px auto 0;
  }
}

/* Section headings */
.section__head{margin-bottom:18px}
.h2{font-family: var(--font-title); font-size:34px; margin:0 0 8px}
.h3{font-family: var(--font-title); font-size:24px; margin:0 0 8px}
.p{margin:0;color:rgba(255,255,255,.84);line-height:1.6}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width:900px){.gallery{grid-template-columns: repeat(2, 1fr)}}
@media (max-width:520px){.gallery{grid-template-columns: 1fr}}

.cardImg{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  cursor:pointer;
  transform: translateZ(0);
}
.cardImg img{
  width:100%; height:320px; object-fit:cover; display:block;
  transition: transform .55s ease, filter .55s ease;
  filter: saturate(1.03) contrast(1.02);
}
.cardImg:hover img{transform: scale(1.06); filter: saturate(1.06) contrast(1.05)}
.cardImg::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.28));
  opacity:.85;
  transition: opacity .35s ease;
}
.cardImg:hover::after{opacity:.65}

/* Esencia */
.list{margin:14px 0 0; padding-left:18px}
.list li{margin:10px 0;color:rgba(255,255,255,.86)}
.ctaRow{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding:22px;
  box-shadow: var(--shadow);
}
.mini{display:grid;gap:10px;margin-top:14px}
.mini__item{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.86)}
.dot{width:10px;height:10px;border-radius:99px;background: var(--dng); box-shadow: 0 0 0 6px rgba(177,173,136,.18)}

/* Footer */
.footer{padding:26px 0;border-top:1px solid rgba(255,255,255,.08)}
.footer__inner{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap}
.footer p{margin:0;color:rgba(255,255,255,.72)}
.footer__links{display:flex;gap:14px}
.footer__links a{color:rgba(255,255,255,.82);text-decoration:none}
.footer__links a:hover{text-decoration:underline}

/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center;justify-content:center;
  padding:22px;
  z-index:60;
}
.lightbox.is-open{display:flex}
.lightbox img{
  max-width:min(980px, 96vw);
  max-height:82vh;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  animation: pop .22s ease-out;
}
@keyframes pop{from{transform:scale(.98);opacity:.6}to{transform:scale(1);opacity:1}}
.lightbox__close{
  position:absolute; top:16px; right:16px;
  width:44px;height:44px;border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--w);
  cursor:pointer;
  transition: transform .2s ease;
}
.lightbox__close:hover{transform: scale(1.04)}
.lightbox__hint{
  position:absolute; bottom:14px; left:0; right:0;
  text-align:center;
  color: rgba(255,255,255,.70);
  font-size: 13px;
}

/* Scroll reveal */
.reveal{opacity:0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease}
.reveal.in{opacity:1; transform: translateY(0)}


/* FIX FINAL: mover texto a la izquierda (sin transform) */
.hero__text{
  margin-left: -350px !important;   /* mueve a la izquierda */
  max-width: 560px !important;
}

/* en pantallas pequeñas no mover */
@media (max-width: 900px){
  .hero__collage--float{
    transform: none;
    right: auto;
  }
}



/* ===== HERO: ARREGLO MÓVIL (solo primera pantalla) ===== */
@media (max-width: 900px){

  .hero{
    min-height: auto;
    padding: 78px 0 26px; /* menos alto en móvil */
  }

  /* marca de agua más sutil y contenida */
  .hero__watermark{
    width: 140vw;
    right: -30vw;
    bottom: -18vh;
    opacity: .045;
    transform: rotate(-4deg);
  }

  /* el texto vuelve a su lugar */
  .hero__text{
    margin-left: 0 !important;
    transform: none !important;
    max-width: 100%;
    text-align: left;
  }

  /* collage deja de ser flotante y pasa abajo */
  .hero__collage--float{
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    height: 380px !important;
    margin: 18px auto 0 !important;
  }

  /* separa bien entre texto y collage */
  .hero__inner{
    padding-right: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* tipografías para que no se rompa */
  .kicker{ font-size: 14px; letter-spacing: .14em; }
  .title{ font-size: clamp(42px, 12vw, 62px); line-height: 1; }
  .subtitle{ font-size: 16px; line-height: 1.55; max-width: 42ch; }
}






