
:root{
  --ink:#1f1e1a;--muted:#5f584f;--cream:#f6f1e9;--sand:#e9e0d3;
  --line:#e3dbd1;--white:#fff;--dark:#23221f;--radius:24px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:Inter,Arial,sans-serif;color:var(--ink);background:#fff;line-height:1.6}
img{max-width:100%}
a{color:inherit}
.wrap{width:min(1240px,92vw);margin:auto}
.site-header{position:sticky;top:0;z-index:50;background:rgba(246,241,233,.96);backdrop-filter:blur(14px);border-bottom:1px solid #dfd5c8}
.header-inner{min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{font-weight:700;font-size:21px;text-decoration:none;color:#3b3028;letter-spacing:.01em}
.nav{display:flex;align-items:center;gap:22px}
.nav a{text-decoration:none;font-size:14px}
.nav .cta{background:var(--dark);color:#fff;padding:12px 18px;border-radius:999px}
.mobile-toggle{display:none}
h1,h2,h3,h4{font-family:Georgia,serif;color:var(--ink)}
h1{font-size:clamp(42px,6vw,76px);line-height:1.03;font-weight:500}
h2{font-size:clamp(32px,4vw,52px);line-height:1.12;font-weight:500}
h3{font-size:26px;line-height:1.2;font-weight:500}
p{line-height:1.7}
.eyebrow,.kicker{text-transform:uppercase;letter-spacing:.14em;font-size:12px;font-weight:700;color:#665f56}
.page-hero{padding:90px 0 70px;background:#fff}
.page-hero h1{margin:12px 0 20px}
.page-hero p{font-size:18px;color:var(--muted);max-width:780px}
.section-head{max-width:820px;margin-bottom:30px}
.section-head h2{margin:8px 0 12px}
.section-head p{color:var(--muted);margin:0}
.btn{display:inline-block;background:var(--dark);color:#fff;border:1px solid var(--dark);padding:14px 22px;border-radius:999px;text-decoration:none;font-weight:600;line-height:1}
.btn:hover{opacity:.9}
.btn-outline{background:transparent;color:var(--dark)}
.band{background:var(--dark);color:#fff;padding:68px 0;text-align:center}
.band h2{color:#fff;margin:0 0 22px}
.site-footer{padding:48px 0;background:#fff;border-top:1px solid #eee}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:34px}
.site-footer h4{font-family:inherit;font-size:14px;text-transform:uppercase;letter-spacing:.08em;margin:0 0 12px}
.site-footer p{color:#746e66;margin:0;max-width:520px}
.site-footer a{display:block;text-decoration:none;color:#5f5a53;margin:6px 0}
.footer-small{margin-top:30px;padding-top:20px;border-top:1px solid #eee;color:#5f5a52;font-size:12px}
@media(max-width:900px){
  .nav{display:none}
  .mobile-toggle{display:block}
  .footer-grid{grid-template-columns:1fr}
}


/* Homepage hero */
.hero{
  position:relative;
  min-height:680px;
  display:flex;
  align-items:flex-end;
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
  color:#fff;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(20,20,17,.08) 18%,rgba(20,20,17,.74) 100%);
}
.hero-inner{
  position:relative;
  z-index:2;
  padding:110px 0 72px;
  max-width:860px;
}
.hero .eyebrow{color:rgba(255,255,255,.82)}
.hero h1{color:#fff;margin:10px 0 18px;max-width:820px}
.hero p{color:rgba(255,255,255,.92);font-size:19px;max-width:720px;margin:0 0 24px}
.hero .btn{background:#fff;color:#23221f;border-color:#fff}
.facts{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}
.facts span{
  padding:9px 13px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:999px;
  background:rgba(0,0,0,.16);
  backdrop-filter:blur(4px);
  color:#fff;
  font-size:13px;
}

/* Shared content sections used on homepage */
.section{padding:82px 0}
.section.alt{background:#f7f3ed}
.split{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:54px;
  align-items:center;
}
.split.reverse{grid-template-columns:.92fr 1.08fr}
.split img{
  width:100%;
  min-height:440px;
  height:100%;
  max-height:620px;
  object-fit:cover;
  border-radius:24px;
}
.copy p{color:#6d675f}
.text-link{font-weight:700;text-decoration:none;border-bottom:1px solid currentColor}
.room-stack{display:grid;gap:30px}
.room{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:30px;
  align-items:stretch;
  background:#fff;
  border:1px solid #e5ddd2;
  border-radius:24px;
  overflow:hidden;
}
.room-media{min-height:390px;background:#ebe5dc}
.room-media img{width:100%;height:100%;object-fit:cover;display:block}
.room-copy{padding:36px;display:flex;flex-direction:column;justify-content:center}
.photo-pending{
  min-height:390px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:30px;
  color:#7b746a;
  background:#eee9e1;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.card{
  background:#fff;
  border:1px solid #e3dbd1;
  border-radius:22px;
  padding:28px;
}
.card p{color:#6d675f;margin-bottom:0}

@media(max-width:900px){
  .hero{min-height:570px}
  .hero-inner{padding:92px 0 58px}
  .split,.split.reverse,.room{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .room-media{min-height:320px}
}
@media(max-width:620px){
  .hero{min-height:520px}
  .hero-inner{padding:78px 0 46px}
  .hero p{font-size:17px}
}

.site-header .nav a{color:#55483d}
.site-header .nav a:hover{color:#211d19}
.site-header .nav .cta{background:#6f5744;border-color:#6f5744;color:#fff}
.site-header .nav .cta:hover{background:#5e4939}
.click-card{display:block;text-decoration:none;color:inherit}
.click-card:focus-visible{outline:3px solid #8d715a;outline-offset:3px}
.click-card .card-arrow{display:inline-block;margin-top:18px;font-weight:700;color:#5c4a3b}


/* Shared warm photographic header for all subpages */
.subpage-photo-header{
  position:relative;
  min-height:340px;
  background-image:
    linear-gradient(180deg,rgba(28,22,18,.08),rgba(28,22,18,.34)),
    url('https://villacuchita.com/wp-content/uploads/2026/09/cuchita-hoofdpagina-1.jpg');
  background-size:cover;
  background-position:center 52%;
  background-repeat:no-repeat;
  overflow:hidden;
}
.subpage-photo-header::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:44%;
  background:linear-gradient(180deg,transparent,rgba(26,21,18,.32));
}
@media(max-width:800px){
  .subpage-photo-header{
    min-height:240px;
    background-position:center center;
  }
}

/* v11 cleanup */
.site-footer h3{font-family:inherit;font-size:14px;text-transform:uppercase;letter-spacing:.08em;margin:0 0 12px}
.site-footer p,.site-footer a{color:#514b44}
.kicker,.eyebrow{color:#665e55}
.photo-credit{font-size:11px;color:#7a7269;margin-top:8px}
.clean-note{font-size:13px;color:#625b53;line-height:1.6}
.subpage-photo-header{min-height:300px}
@media(max-width:800px){.subpage-photo-header{min-height:220px}}

/* v18 LCP optimization: real responsive hero image instead of CSS background */
.hero{position:relative;overflow:hidden;background:#3d3a34}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;display:block;z-index:0}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(20,18,15,.62),rgba(20,18,15,.24) 58%,rgba(20,18,15,.14));z-index:1;pointer-events:none}
.hero .hero-inner{position:relative;z-index:2}
