/* ═══════════════════════════════════════════════════════════
   RENKO ROYAL VILLA — SHARED DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root{
  --bg:          #faf9f6;
  --bg-alt:      #eae9e0;
  --bg-dark:     #3a3d35;
  --ink:         #1a1a1a;
  --ink-body:    #4a4a4a;
  --eyebrow-c:   #8c877f;
  --gold:        #b08a4a;
  --gold-strong: #9a7535;
  --gold-soft:   #c9a973;
  --stone:       #8a8170;
  --line:        rgba(26,26,26,.14);

  --heading: "Cormorant Garamond", "Cardo", Georgia, serif;
  --cardo:   "Cardo", "Cormorant Garamond", Georgia, serif;
  --script:  "Pinyon Script", "Brittany", "Cardo", cursive;
  --body:    "Montserrat", "Helvetica Neue", system-ui, sans-serif;

  --pad: clamp(1.25rem, 4vw, 4rem);
  --max: 1500px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden;max-width:100%}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--body);
  font-size:17px;
  line-height:1.7;
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body::before{
  content:"";position:fixed;inset:0;
  pointer-events:none;z-index:1;opacity:.03;mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}

/* ─── TYPOGRAPHY UTILS ─── */
.eyebrow{
  font-family:var(--body);
  text-transform:uppercase;font-size:11px;letter-spacing:.30em;
  font-weight:400;color:var(--eyebrow-c);
}
.eyebrow .dot{display:inline-block;width:5px;height:5px;background:var(--gold);border-radius:50%;vertical-align:middle;margin:0 .9em;transform:translateY(-2px)}
.eyebrow-pipe{
  font-family:var(--body);text-transform:uppercase;
  font-size:11px;letter-spacing:.30em;font-weight:400;color:var(--eyebrow-c);
}
.eyebrow-pipe .sep{color:var(--gold);margin:0 .8em}

h2.section-title{
  font-family:var(--heading);font-weight:400;
  font-size:clamp(2.4rem, 5.5vw, 5.2rem);
  line-height:.98;letter-spacing:.005em;color:var(--ink);
}
.script{font-family:var(--script);font-weight:400;color:var(--gold);font-style:normal}

/* ─── BUTTONS ─── */
.btn{
  display:inline-flex;align-items:center;gap:1rem;
  font-family:var(--body);font-size:11px;font-weight:400;
  letter-spacing:.28em;text-transform:uppercase;
  padding:1.1rem 1.9rem;
  border:1px solid currentColor;
  position:relative;
  transition:color .5s ease, background .5s ease, border-color .5s ease;
}
.btn .arrow{
  width:22px;height:1px;background:currentColor;position:relative;
  transition:width .5s ease;
}
.btn .arrow::after{
  content:"";position:absolute;right:0;top:-3px;
  width:7px;height:7px;border-top:1px solid currentColor;border-right:1px solid currentColor;
  transform:rotate(45deg);
}
.btn:hover .arrow{width:34px}

.btn--ghost-light{color:#fff;border-color:rgba(255,255,255,.7)}
.btn--ghost-light:hover{background:#fff;color:var(--ink)}
.btn--ghost-dark{color:var(--ink);border-color:var(--ink)}
.btn--ghost-dark:hover{background:var(--ink);color:var(--bg)}
.btn--gold{color:var(--gold);border-color:var(--gold)}
.btn--gold:hover{background:var(--gold);color:#fff}

.link-arrow{
  font-family:var(--body);font-size:11px;letter-spacing:.28em;text-transform:uppercase;font-weight:400;
  display:inline-flex;align-items:center;gap:.9rem;
  padding-bottom:.4rem;border-bottom:1px solid var(--line);
  transition:gap .4s ease, border-color .4s ease;
}
.link-arrow:hover{gap:1.4rem;border-bottom-color:var(--gold)}

.link-underline{
  font-family:var(--body);font-size:11px;letter-spacing:.28em;text-transform:uppercase;font-weight:400;
  padding-bottom:.45rem;
  border-bottom:1px solid var(--ink);
  transition:color .4s ease, border-color .4s ease, opacity .4s ease;
}
.link-underline:hover{color:var(--gold);border-bottom-color:var(--gold)}
.link-underline--light{color:#fff;border-bottom-color:rgba(255,255,255,.6)}
.link-underline--light:hover{color:var(--gold-soft);border-bottom-color:var(--gold-soft)}

/* ─── NAV ─── */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;justify-content:space-between;
  padding:1rem var(--pad);
  color:#fff;font-family:var(--body);
  background:linear-gradient(180deg, rgba(15,15,12,.50) 0%, rgba(15,15,12,.2) 60%, transparent 100%);
  backdrop-filter:blur(2px);
  transition:background .5s ease, backdrop-filter .5s ease, color .5s ease, padding .5s ease;
}
.nav.scrolled{
  background:rgba(250,249,246,.97);
  color:var(--ink);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  padding:.8rem var(--pad);
}
.nav .logo{display:flex;align-items:center;height:78px}
.nav .logo img{height:78px;width:auto;transition:opacity .4s ease, height .35s ease}
.nav.scrolled .logo img{height:62px}
.nav .logo .logo-light{filter:none}
.nav .logo .logo-dark{display:none}
.nav.scrolled .logo .logo-light{display:none}
.nav.scrolled .logo .logo-dark{display:block}

.nav ul{display:flex;gap:2.6rem;list-style:none}
.nav ul a{
  font-size:11px;letter-spacing:.26em;text-transform:uppercase;font-weight:400;
  position:relative;padding-bottom:4px;
}
.nav ul a::after{
  content:"";position:absolute;left:0;right:100%;bottom:0;height:1px;
  background:currentColor;transition:right .5s ease;
}
.nav ul a:hover::after,.nav ul a.active::after{right:0}
.nav .reserve{
  font-size:11px;letter-spacing:.26em;text-transform:uppercase;font-weight:500;
  padding:.75rem 1.4rem;
  border:1px solid var(--gold);color:var(--gold-soft);
  transition:background .4s, color .4s, border-color .4s;
}
.nav .reserve:hover{background:var(--gold);color:#fff;border-color:var(--gold)}
.nav.scrolled .reserve{color:var(--gold);border-color:var(--gold)}

.nav-burger{display:none;width:32px;height:20px;position:relative;cursor:pointer;background:none;border:0;padding:0;color:inherit;z-index:200}
.nav-burger span{position:absolute;left:0;right:0;height:1px;background:currentColor;transition:transform .4s}
.nav-burger span:nth-child(1){top:3px}
.nav-burger span:nth-child(2){top:50%}
.nav-burger span:nth-child(3){bottom:3px}

@media(max-width:980px){
  .nav ul{
    position:fixed !important;top:0 !important;right:0 !important;bottom:0 !important;left:auto !important;
    width:min(360px,85vw) !important;height:100vh !important;
    background:var(--bg) !important;color:var(--ink) !important;
    display:flex !important;flex-direction:column !important;justify-content:center !important;align-items:flex-start !important;
    gap:1.8rem !important;
    padding:var(--pad) !important;margin:0 !important;
    transform:translateX(100%) !important;transition:transform .6s cubic-bezier(.2,.7,.2,1) !important;
    box-shadow:-20px 0 60px -20px rgba(0,0,0,.2);
    z-index:150 !important;list-style:none !important;
    overflow-y:auto !important;
  }
  .nav ul.open{transform:translateX(0) !important}
  .nav ul li{width:100% !important}
  .nav ul a{font-size:14px !important;color:var(--ink) !important;display:block !important;padding:.4rem 0 !important}
  .nav ul a::after{display:none !important}
  .nav-burger{display:block !important}
  .nav .reserve{display:none !important}
}

/* ─── MOBILE: very light overlay tint so text reads (just a touch) ─── */
@media(max-width:880px){
  .hero::after,
  .villa-hero::after,
  .fac-hero::after,
  .exp-hero::after,
  .contact-hero::after,
  .gal-hero::after{
    content:"" !important;
    position:absolute !important;inset:0 !important;
    background:linear-gradient(180deg,rgba(10,10,8,.10) 0%,rgba(10,10,8,.15) 60%,rgba(10,10,8,.30) 100%) !important;
    z-index:2 !important;pointer-events:none !important;
  }
  /* For pages that use an HTML overlay div, darken it slightly too */
  .hero .overlay,.villa-hero .overlay,.exp-hero .overlay,.fac-hero .overlay{
    background:linear-gradient(180deg,rgba(10,10,8,.10) 0%,rgba(10,10,8,.15) 60%,rgba(10,10,8,.30) 100%) !important;
  }
  .hero .content,.villa-hero .content,.fac-hero .content,
  .exp-hero .content,.contact-hero .content,.gal-hero .content{z-index:3 !important;position:relative}
}

/* ─── HERO (slider) ─── */
.hero{
  position:relative;
  height:100vh;min-height:720px;
  overflow:hidden;
  color:#fff;
}
.hero.hero--short{height:80vh;min-height:620px}
.hero .stage{position:absolute;inset:0}
.hero .slide{
  position:absolute;inset:0;opacity:0;
  transition:opacity 1.2s ease;overflow:hidden;pointer-events:none;
}
.hero .slide.active{opacity:1;pointer-events:auto}
.hero .slide img{
  width:100%;height:100%;object-fit:cover;
  transform:scale(1.18);transition:transform 8s ease-out;
}
.hero .slide.active img{transform:scale(1.02)}

.hero .overlay{
  position:absolute;top:0;left:0;right:0;bottom:0;z-index:1;
  pointer-events:none;
  background-color:rgba(10,10,8,.35);
}
.hero .overlay::after{
  content:"";position:absolute;top:0;left:0;right:0;bottom:0;
  background:
    linear-gradient(180deg, rgba(10,10,8,.3) 0%, transparent 30%, transparent 50%, rgba(10,10,8,.5) 100%),
    linear-gradient(95deg, rgba(10,10,8,.4) 0%, transparent 55%);
}

.hero .content{
  position:absolute;inset:0;z-index:3;
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:calc(var(--pad) + 1rem) calc(var(--pad) + 2rem) calc(var(--pad) + 3rem);
}
.hero.hero--center .content{justify-content:center;align-items:center;text-align:center}

.hero .eyebrow-h{
  display:flex;align-items:center;gap:1.2rem;
  font-family:var(--body);font-size:11px;letter-spacing:.32em;text-transform:uppercase;font-weight:400;
  color:rgba(255,255,255,.85);margin-bottom:1.6rem;
}
.hero .eyebrow-h::before{content:"";width:46px;height:1px;background:var(--gold-soft)}
.hero.hero--center .eyebrow-h{justify-content:center}
.hero.hero--center .eyebrow-h::before{display:none}

.hero h1{
  font-family:var(--heading);font-weight:300;
  font-size:clamp(3rem, 9vw, 8.5rem);
  line-height:.88;letter-spacing:.02em;
  margin-bottom:1.6rem;
}
.hero h1.hero-title-compact{font-size:clamp(2.6rem, 7vw, 6rem);letter-spacing:.18em;text-transform:uppercase}
.hero h1 .it{font-style:italic;color:var(--gold-soft);font-family:var(--cardo);font-size:.78em;letter-spacing:.02em}

.hero .sub{
  font-family:var(--body);font-weight:300;
  font-size:clamp(.95rem, 1.2vw, 1.15rem);
  color:rgba(255,255,255,.88);
  max-width:48ch;line-height:1.7;margin-bottom:.6rem;
}
.hero .loc{
  font-family:var(--body);font-size:11px;letter-spacing:.32em;text-transform:uppercase;font-weight:400;
  color:rgba(255,255,255,.65);margin-bottom:2.6rem;
}
.hero .ctas{display:flex;gap:1.2rem;flex-wrap:wrap}
.hero.hero--center .ctas{justify-content:center}

.hero .slider-nav{
  position:absolute;bottom:calc(var(--pad) + 1.2rem);right:calc(var(--pad) + 2rem);
  z-index:4;display:flex;gap:.6rem;align-items:center;
}
.hero .slider-nav button{
  width:44px;height:44px;
  border:1px solid rgba(255,255,255,.5);color:#fff;background:rgba(10,10,8,.2);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;backdrop-filter:blur(4px);
  transition:background .4s, border-color .4s, color .4s;
}
.hero .slider-nav button:hover{background:#fff;color:var(--ink);border-color:#fff}
.hero .slider-nav button svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.5}

.hero .side-meta{
  position:absolute;right:calc(var(--pad) + 1.2rem);top:50%;
  transform-origin:right center;transform:rotate(-90deg) translateY(-50%);
  font-family:var(--body);font-size:10px;letter-spacing:.4em;text-transform:uppercase;font-weight:400;
  color:rgba(255,255,255,.55);z-index:3;
}
.hero .ticker{
  position:absolute;bottom:2.4rem;left:calc(var(--pad) + 2rem);
  font-family:var(--body);font-size:10px;letter-spacing:.36em;text-transform:uppercase;font-weight:400;
  color:rgba(255,255,255,.55);z-index:3;
  display:flex;align-items:center;gap:.9rem;
}
.hero .ticker::before{content:"";width:36px;height:1px;background:var(--gold-soft)}

/* ─── SECTION CONTAINER ─── */
.section{padding:clamp(4rem,9vw,8rem) var(--pad)}
.section .inner{max-width:var(--max);margin:0 auto}
.section--bg-alt{background:var(--bg-alt);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.section--dark{background:var(--bg-dark);color:var(--bg)}

/* ─── INTRO TEXT BLOCK (centered) ─── */
.intro{text-align:center;padding:clamp(5rem,10vw,9rem) var(--pad)}
.intro .inner{max-width:760px;margin:0 auto}
.intro .eyebrow-pipe{margin-bottom:2rem;display:block}
.intro h2{
  font-family:var(--heading);font-weight:400;
  font-size:clamp(2.4rem,5vw,4.4rem);
  line-height:1.05;letter-spacing:.005em;
  margin-bottom:2rem;color:var(--ink);
}
.intro h2 .script{font-size:1.15em;line-height:.8;display:inline-block;transform:translateY(.12em)}
.intro p{
  font-family:var(--body);font-weight:300;
  font-size:1.1rem;line-height:1.9;color:var(--ink-body);
  max-width:62ch;margin:0 auto 1.3rem;
}

/* ─── SUB-NAV (page sections) ─── */
.subnav{
  position:sticky;top:72px;z-index:50;
  background:rgba(250,249,246,.92);backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.subnav ul{
  max-width:var(--max);margin:0 auto;padding:1rem var(--pad);
  display:flex;gap:clamp(1rem,3vw,2.6rem);list-style:none;justify-content:center;flex-wrap:wrap;
}
.subnav a{
  font-family:var(--body);font-size:10px;letter-spacing:.3em;text-transform:uppercase;font-weight:400;
  color:var(--eyebrow-c);padding:.3rem 0;
  position:relative;transition:color .4s;
}
.subnav a.active,.subnav a:hover{color:var(--ink)}
.subnav a.active::after{
  content:"";position:absolute;left:0;right:0;bottom:-5px;height:1px;background:var(--gold);
}

/* ─── Z-PATTERN ROWS ─── */
.zrows .row{
  max-width:var(--max);margin:0 auto;
  display:grid;grid-template-columns:1.3fr 1fr;
  gap:clamp(2rem,5vw,5rem);
  align-items:center;
  padding:clamp(3rem,6vw,5rem) 0;
}
.zrows .row + .row{border-top:1px solid var(--line)}
.zrows .row.reverse{grid-template-columns:1fr 1.3fr}
.zrows .row.reverse .image{order:2}
.zrows .row.reverse .text{order:1}

.zrows .image{position:relative;aspect-ratio:5/4;overflow:hidden}
.zrows .image img{width:100%;height:100%;object-fit:cover;transition:transform 1.6s ease}
.zrows .image:hover img{transform:scale(1.04)}

.zrows .text .eyebrow-pipe{display:block;margin-bottom:1.4rem}
.zrows .text h3{
  font-family:var(--heading);font-weight:400;color:var(--ink);
  font-size:clamp(1.8rem,3.2vw,2.8rem);line-height:1.05;letter-spacing:.005em;
  margin-bottom:.5rem;
}
.zrows .text .view-meta{
  font-family:var(--body);font-size:11px;letter-spacing:.24em;text-transform:uppercase;font-weight:400;
  color:var(--eyebrow-c);margin-bottom:1.5rem;
}
.zrows .text .key-icons{
  display:flex;gap:1.6rem;margin-bottom:1.5rem;
  font-family:var(--body);font-size:.82rem;color:var(--ink-body);
}
.zrows .text .key-icons span{display:inline-flex;align-items:center;gap:.5rem}
.zrows .text .key-icons svg{width:18px;height:18px;stroke:var(--gold);fill:none;stroke-width:1.3}
.zrows .text p{
  font-family:var(--body);font-weight:300;
  font-size:1.05rem;line-height:1.85;color:var(--ink-body);
  margin-bottom:1.8rem;max-width:46ch;
}
@media(max-width:880px){
  .zrows .row,.zrows .row.reverse{grid-template-columns:1fr}
  .zrows .row.reverse .image,.zrows .row.reverse .text{order:0}
}

/* ─── SPLIT (65/35 image-text) ─── */
.split{
  display:grid;grid-template-columns:65fr 35fr;gap:0;
  min-height:85vh;align-items:stretch;
}
.split.reverse{grid-template-columns:35fr 65fr}
.split.reverse .image{order:2}
.split.reverse .text{order:1}
.split .image{position:relative;overflow:hidden;min-height:70vh}
.split .image img{width:100%;height:100%;object-fit:cover;transition:transform 2s ease}
.split .image:hover img{transform:scale(1.04)}
.split .image .title-over{
  position:absolute;top:2.5rem;left:2.5rem;z-index:2;
  font-family:var(--heading);font-weight:400;color:#fff;
  font-size:clamp(1.8rem,3.5vw,3.2rem);line-height:1;letter-spacing:.16em;text-transform:uppercase;
  text-shadow:0 4px 30px rgba(0,0,0,.4);
}
.split .text{
  display:flex;flex-direction:column;justify-content:center;
  padding:clamp(3rem,6vw,5rem);text-align:center;background:var(--bg);
}
.split .text h3{
  font-family:var(--heading);font-style:italic;font-weight:400;
  font-size:clamp(1.6rem,2.6vw,2.2rem);line-height:1.25;color:var(--ink);
  margin-bottom:1.8rem;
}
.split .text p{
  font-family:var(--body);font-weight:300;
  font-size:1.05rem;line-height:1.85;color:var(--ink-body);
  margin:0 auto 2rem;max-width:38ch;
}
@media(max-width:980px){
  .split,.split.reverse{grid-template-columns:1fr}
  .split .image{min-height:55vh}
  .split.reverse .image,.split.reverse .text{order:0}
}

/* ─── CAROUSEL ─── */
.carousel{
  padding:clamp(3rem,5vw,4rem) 0;
  position:relative;
}
.carousel-track{
  display:flex;gap:5px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:0 var(--pad);
  scrollbar-width:none;-ms-overflow-style:none;
  cursor:grab;
}
.carousel-track:active{cursor:grabbing}
.carousel-track::-webkit-scrollbar{display:none}
.carousel-track .slide{
  flex:0 0 auto;
  width:min(72vw, 900px);
  height:60vh;
  scroll-snap-align:center;
  overflow:hidden;
  position:relative;
  cursor:zoom-in;
}
.carousel-track .slide img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 1.2s ease, filter .4s ease;
  user-select:none;-webkit-user-drag:none;pointer-events:none;
}
.carousel-track .slide:hover img{transform:scale(1.03);filter:brightness(.9)}
.carousel-track .slide .zoom-ico{
  position:absolute;top:1rem;right:1rem;
  width:38px;height:38px;
  border:1px solid rgba(255,255,255,.8);
  background:rgba(10,10,8,.35);color:#fff;
  display:flex;align-items:center;justify-content:center;
  opacity:0;transform:scale(.9);
  transition:opacity .4s ease, transform .4s ease, background .3s, color .3s;
  backdrop-filter:blur(4px);
  pointer-events:none;
  z-index:2;
}
.carousel-track .slide:hover .zoom-ico{opacity:1;transform:scale(1)}
.carousel-track .slide .zoom-ico svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.5}
.carousel--tall .slide{height:78vh}

/* Carousel nav arrows */
.carousel-controls{
  position:absolute;top:50%;left:0;right:0;
  transform:translateY(-50%);
  display:flex;justify-content:space-between;
  padding:0 clamp(.8rem,2vw,1.8rem);
  pointer-events:none;
  z-index:3;
}
.carousel-controls button{
  pointer-events:auto;
  width:48px;height:48px;
  border:1px solid rgba(255,255,255,.7);
  color:#fff;background:rgba(10,10,8,.35);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;backdrop-filter:blur(6px);
  transition:background .3s, color .3s, border-color .3s, transform .3s;
}
.carousel-controls button:hover{background:#fff;color:var(--ink);border-color:#fff;transform:scale(1.05)}
.carousel-controls button svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.5}

/* Dots indicator */
.carousel-dots{
  display:flex;justify-content:center;gap:.6rem;
  margin-top:1.6rem;
}
.carousel-dots button{
  width:28px;height:2px;background:var(--line);
  border:0;cursor:pointer;padding:0;
  transition:background .4s, width .4s;
}
.carousel-dots button.active{background:var(--gold);width:48px}

@media(max-width:880px){
  .carousel-track .slide{width:88vw;height:48vh}
  .carousel--tall .slide{height:60vh}
  .carousel-controls button{width:40px;height:40px}
}

/* ─── CTA BAND ─── */
.cta-band{
  padding:clamp(6rem,12vw,10rem) var(--pad);
  text-align:center;background:var(--bg);
}
.cta-band h2{
  font-family:var(--heading);font-weight:400;
  font-size:clamp(2.4rem,6vw,5rem);line-height:1.05;letter-spacing:.005em;
  margin-bottom:2rem;color:var(--ink);
  max-width:16ch;margin-left:auto;margin-right:auto;
}
.cta-band h2 .script{font-size:1.15em;display:inline-block;transform:translateY(.12em);line-height:.8}

/* ─── CTA BAND · CARD VARIANT (boxed with gold corners) ─── */
.cta-band--card{
  padding:clamp(3.5rem,7vw,5.5rem) var(--pad) clamp(3.5rem,7vw,5.5rem);
  background:var(--bg);
}
.cta-band--card > div{
  max-width:980px;margin:0 auto;
  background:var(--bg-alt);
  border:1px solid var(--gold);
  padding:clamp(3rem,6vw,5rem) clamp(2rem,5vw,4rem) clamp(3rem,6vw,4.5rem);
  position:relative;text-align:center;
}
.cta-band--card > div::before,
.cta-band--card > div::after{
  content:"";position:absolute;width:28px;height:28px;pointer-events:none;
}
.cta-band--card > div::before{
  top:14px;left:14px;
  border-top:1px solid var(--gold);border-left:1px solid var(--gold);
}
.cta-band--card > div::after{
  bottom:14px;right:14px;
  border-bottom:1px solid var(--gold);border-right:1px solid var(--gold);
}
.cta-band--card h2{
  font-size:clamp(2rem,4vw,3.4rem);line-height:1.1;margin-bottom:1rem;color:var(--ink);max-width:18ch;
}
.cta-band--card p{
  font-family:var(--body);font-weight:300;font-size:1rem;line-height:1.75;
  color:var(--ink-body);max-width:48ch;margin:0 auto 2rem;
}
.cta-band--card .btn,.cta-band--card .link-arrow,.cta-band--card .link-underline{margin-top:0}

/* ─── FEATURE IMAGE (full-bleed with title) ─── */
.feature-image{
  position:relative;height:75vh;min-height:560px;
  overflow:hidden;color:#fff;
}
.feature-image img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
}
.feature-image::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(10,10,8,.25) 0%, rgba(10,10,8,.1) 50%, rgba(10,10,8,.6) 100%);
}
.feature-image .caption{
  position:absolute;bottom:var(--pad);left:calc(var(--pad) + 1rem);
  z-index:2;max-width:600px;
}
.feature-image .caption h2{
  font-family:var(--heading);font-weight:300;
  font-size:clamp(2.4rem,6vw,5rem);line-height:.95;letter-spacing:.005em;
  margin-bottom:1.2rem;
}
.feature-image .caption h2 .script{color:var(--gold-soft);font-size:1.2em;line-height:.8;display:inline-block;transform:translateY(.1em)}

/* ─── FOOTER (dark olive) ─── */
footer.site-footer{
  background:var(--bg-dark);
  color:var(--bg);
  padding:clamp(4rem,7vw,5.5rem) var(--pad) 0;
  position:relative;
}
/* decorative gold divider at the top of the footer */
footer.site-footer::before{
  content:"";
  position:absolute;
  top:0;left:50%;
  width:clamp(60px, 10vw, 120px);
  height:1px;
  background:var(--gold-soft);
  transform:translateX(-50%);
}
footer.site-footer::after{
  content:"";
  position:absolute;
  top:-3px;left:50%;
  width:7px;height:7px;
  background:var(--bg-dark);
  border:1px solid var(--gold-soft);
  transform:translateX(-50%) rotate(45deg);
}
footer.site-footer .inner{max-width:var(--max);margin:0 auto}
footer.site-footer .top{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 1fr;
  gap:0;
  padding-bottom:3rem;
}
footer.site-footer .brand{
  padding-right:3rem;
  border-right:1px solid rgba(201,169,115,.4);
  display:flex;flex-direction:column;
  justify-content:space-between;
}
footer.site-footer .brand .logo-footer{
  width:200px;
  height:auto;
  margin-bottom:1.4rem;
  display:block;
}
footer.site-footer .brand .tagline{
  font-family:var(--cardo);font-style:italic;
  color:rgba(250,249,246,.8);
  line-height:1.5;
  font-size:1.05rem;
  margin-top:auto;
}
footer.site-footer .brand .address{
  display:block;
  font-family:var(--body);font-size:.78rem;font-weight:300;
  color:rgba(250,249,246,.7);
  margin-top:.5rem;letter-spacing:.06em;line-height:1.65;
}
footer.site-footer .brand .location{
  font-family:var(--body);font-size:.78rem;font-weight:300;
  color:rgba(250,249,246,.55);
  margin-top:.35rem;letter-spacing:.06em;
}
footer.site-footer .brand .prn{
  font-family:var(--body);font-size:.7rem;font-weight:300;
  color:rgba(250,249,246,.5);margin-top:.8rem;letter-spacing:.14em;text-transform:uppercase;
}
footer.site-footer .col{padding-left:2.5rem}
footer.site-footer h4{
  font-family:var(--cardo);
  font-size:1rem;letter-spacing:.18em;text-transform:uppercase;
  color:var(--gold-soft);
  margin-bottom:1.4rem;
  font-weight:400;
}
footer.site-footer ul{list-style:none;display:flex;flex-direction:column;gap:.65rem}
footer.site-footer ul a,footer.site-footer .contact-item{
  font-family:var(--body);font-size:.78rem;font-weight:400;
  letter-spacing:.10em;text-transform:uppercase;
  color:rgba(250,249,246,.88);
  position:relative;padding-bottom:2px;
  display:inline-block;
  white-space:nowrap;
}
footer.site-footer .contact-item{display:block;margin-bottom:.65rem}
footer.site-footer .contact-item .label{color:rgba(250,249,246,.5);font-weight:300;margin-right:.3em}
footer.site-footer ul a::after{
  content:"";position:absolute;left:0;right:100%;bottom:0;height:1px;
  background:var(--gold-soft);transition:right .5s ease;
}
footer.site-footer ul a:hover::after{right:0}
footer.site-footer ul a:hover,
footer.site-footer .contact-item:hover{color:#fff}
footer.site-footer .social{display:flex;gap:1rem;margin-top:.3rem}
footer.site-footer .social a{
  width:36px;height:36px;border:1px solid rgba(201,169,115,.35);
  display:flex;align-items:center;justify-content:center;
  transition:background .3s, border-color .3s, color .3s;
}
footer.site-footer .social a:hover{background:var(--gold);border-color:var(--gold);color:#fff}
footer.site-footer .social svg{width:14px;height:14px;fill:currentColor}
footer.site-footer .newsletter{
  display:flex;border-bottom:1px solid rgba(201,169,115,.35);
  padding:.5rem 0;margin-top:.8rem;
}
footer.site-footer .newsletter input{
  flex:1;background:transparent;border:0;color:#fff;
  font-family:var(--body);font-size:.85rem;font-weight:300;
  padding:.4rem 0;outline:none;
}
footer.site-footer .newsletter input::placeholder{color:rgba(250,249,246,.4)}
footer.site-footer .newsletter button{
  font-family:var(--body);font-size:10px;letter-spacing:.22em;text-transform:uppercase;font-weight:400;
  color:var(--gold-soft);padding:.4rem .2rem;
  display:flex;align-items:center;gap:.5rem;
  transition:color .3s;
}
footer.site-footer .newsletter button:hover{color:#fff}

footer.site-footer .bottom{
  display:flex;justify-content:space-between;align-items:center;
  padding:1.8rem 0;
  margin-top:1rem;
  border-top:1px solid rgba(201,169,115,.25);
  font-family:var(--body);font-size:10px;letter-spacing:.22em;text-transform:uppercase;font-weight:400;
  color:rgba(250,249,246,.5);
  flex-wrap:wrap;gap:1rem;
}
footer.site-footer .bottom a{color:rgba(250,249,246,.5);transition:color .3s}
footer.site-footer .bottom a:hover{color:#fff}

@media(max-width:980px){
  footer.site-footer{padding-left:var(--pad);padding-right:var(--pad);overflow:hidden}
  footer.site-footer .top{grid-template-columns:1fr 1fr;gap:2.5rem}
  footer.site-footer .brand{
    grid-column:1/3;border-right:0;padding-right:0;
    border-bottom:1px solid rgba(201,169,115,.4);padding-bottom:2rem;margin-bottom:1rem;
  }
  footer.site-footer .brand .address,
  footer.site-footer .brand .location,
  footer.site-footer .brand .tagline{
    overflow-wrap:break-word;word-wrap:break-word;
  }
  footer.site-footer .col{padding-left:0;min-width:0}
  footer.site-footer ul a,
  footer.site-footer .contact-item{
    white-space:normal;word-break:break-word;display:block;
  }
  footer.site-footer .bottom{flex-direction:column;align-items:flex-start;gap:.6rem;text-align:left}
}
@media(max-width:560px){
  footer.site-footer .top{grid-template-columns:1fr;gap:2rem}
  footer.site-footer .brand{grid-column:1}
}

/* ─── WHATSAPP FLOATING ─── */
.wa{
  position:fixed;bottom:2rem;right:2rem;z-index:90;
  width:56px;height:56px;border-radius:50%;
  background:var(--gold);color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 30px -8px rgba(176,138,74,.55);
  opacity:0;transform:scale(.7) translateY(20px);
  transition:transform .5s cubic-bezier(.2,.9,.3,1.3), opacity .5s ease, background .3s;
  pointer-events:none;
}
.wa.show{opacity:1;transform:scale(1) translateY(0);pointer-events:auto}
.wa:hover{background:var(--gold-strong)}
.wa svg{width:26px;height:26px;fill:currentColor}

/* ─── COOKIE BANNER ─── */
.cookie{
  position:fixed;bottom:2rem;left:50%;transform:translateX(-50%) translateY(160%);
  width:calc(100% - 3rem);max-width:640px;
  background:rgba(250,249,246,.97);backdrop-filter:blur(14px);
  border:1px solid var(--line);border-top:2px solid var(--gold);
  padding:2rem 2.2rem;z-index:150;
  display:flex;align-items:center;gap:1.6rem;
  font-family:var(--body);font-size:.9rem;font-weight:300;color:var(--ink-body);
  box-shadow:0 40px 100px -20px rgba(26,26,26,.35);
  transition:transform .8s cubic-bezier(.2,.7,.2,1);
}
.cookie.show{transform:translateX(-50%) translateY(0)}
.cookie .ico{font-size:1.6rem;color:var(--gold);flex-shrink:0}
.cookie b{font-family:var(--body);font-size:11px;letter-spacing:.24em;text-transform:uppercase;
  color:var(--ink);display:block;margin-bottom:.4rem;font-weight:500}
.cookie button{
  font-family:var(--body);font-size:10px;letter-spacing:.24em;text-transform:uppercase;font-weight:400;
  padding:.85rem 1.6rem;border:1px solid var(--ink);margin-left:.4rem;flex-shrink:0;cursor:pointer;
  background:transparent;color:var(--ink);
  transition:background .4s, color .4s;
}
.cookie button:hover{background:var(--ink);color:var(--bg)}
@media(max-width:640px){
  .cookie{flex-direction:column;text-align:center;padding:1.6rem 1.6rem;gap:1rem;width:calc(100% - 2rem);bottom:1rem}
  .cookie button{margin-left:0;width:100%}
}

/* ─── REVEAL ─── */
.reveal{opacity:0;transform:translateY(28px);transition:opacity 1.1s ease, transform 1.1s ease}
.reveal.in{opacity:1;transform:none}
.reveal.delay-1{transition-delay:.12s}
.reveal.delay-2{transition-delay:.24s}
.reveal.delay-3{transition-delay:.36s}

/* ─── LIGHTBOX ─── */
.lightbox{
  position:fixed;inset:0;z-index:200;
  background:rgba(15,15,12,.92);backdrop-filter:blur(8px);
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;
  transition:opacity .5s ease;
}
.lightbox.open{opacity:1;pointer-events:auto}
.lightbox .close{
  position:absolute;top:1.5rem;right:1.5rem;
  width:44px;height:44px;border:1px solid rgba(255,255,255,.4);color:#fff;
  display:flex;align-items:center;justify-content:center;cursor:pointer;
  transition:background .3s;
}
.lightbox .close:hover{background:#fff;color:var(--ink)}
.lightbox .content{
  max-width:min(1200px, 92vw);max-height:92vh;
  display:grid;grid-template-columns:1.2fr 1fr;gap:0;
  background:var(--bg);color:var(--ink);
  overflow:hidden;
}
.lightbox .lb-image{
  background:#000;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.lightbox .lb-image img{width:100%;height:100%;object-fit:cover}
.lightbox .lb-info{
  padding:clamp(2rem,4vw,3rem);overflow-y:auto;
  display:flex;flex-direction:column;
}
.lightbox .lb-info .eyebrow-pipe{margin-bottom:1rem;display:block}
.lightbox .lb-info h3{
  font-family:var(--heading);font-weight:400;font-size:2rem;line-height:1;
  margin-bottom:1.5rem;
}
.lightbox .lb-info h4{
  font-family:var(--body);font-size:11px;letter-spacing:.24em;text-transform:uppercase;
  color:var(--gold);margin:1.5rem 0 .8rem;font-weight:500;
}
.lightbox .lb-info ul{list-style:none;padding:0;margin:0}
.lightbox .lb-info li{
  padding:.5rem 0;border-bottom:1px solid var(--line);
  font-family:var(--body);font-size:.88rem;font-weight:300;color:var(--ink-body);
}
.lightbox .lb-info li:last-child{border-bottom:0}
@media(max-width:880px){
  .lightbox .content{grid-template-columns:1fr;max-height:94vh;overflow-y:auto}
  .lightbox .lb-image{height:40vh}
}
