
:root{
  --bg:#f5efe6;
  --surface:#fffdf9;
  --surface-2:#efe4d3;
  --surface-3:#faf5ed;
  --text:#1d1b19;
  --muted:#655f59;
  --muted-2:#7c766f;
  --line:rgba(29,27,25,.10);
  --gold:#bf8b3d;
  --gold-2:#e2c28c;
  --green:#10382d;
  --green-2:#1f5a4b;
  --green-3:#23493d;
  --white:#fff;
  --shadow:0 18px 48px rgba(21, 18, 14, .12);
  --shadow-lg:0 30px 90px rgba(13, 20, 17, .35);
  --radius:28px;
  --radius-sm:18px;
  --container:min(1180px, calc(100vw - 32px));
  --header-h:104px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#f7f2ea 0%,#f4eee5 100%);
  line-height:1.65;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
.container{width:var(--container);margin:0 auto}
.section{padding:96px 0}
.section-alt{padding:96px 0;background:linear-gradient(180deg,rgba(255,255,255,.6),rgba(239,228,211,.7))}
.section-tight{padding:72px 0}
h1,h2,h3,h4{
  font-family:"Playfair Display", Georgia, "Times New Roman", serif;
  line-height:1.05;
  letter-spacing:-.03em;
  margin:0 0 16px;
}
h1{font-size:clamp(2.8rem,6vw,5.75rem)}
h2{font-size:clamp(2rem,4vw,3.4rem)}
h3{font-size:clamp(1.35rem,2.5vw,1.9rem)}
p{margin:0 0 16px;color:var(--muted)}
.lead{font-size:1.12rem;max-width:760px}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 14px;
  border-radius:999px;
  font-size:.8rem;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:800;
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:8px;height:8px;border-radius:999px;
  background:currentColor;
  opacity:.95;
}
.eyebrow.dark{background:rgba(16,56,45,.08);color:var(--green)}
.eyebrow.light{background:rgba(255,255,255,.14);color:#fff;border:1px solid rgba(255,255,255,.18)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  border:none;border-radius:999px;padding:15px 22px;font-weight:700;cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:linear-gradient(135deg,var(--gold),#d7a95a);color:#16120f;box-shadow:0 18px 40px rgba(191,139,61,.25)}
.btn-primary:hover{box-shadow:0 22px 48px rgba(191,139,61,.32)}
.btn-secondary{background:rgba(255,255,255,.12);color:#fff;border:1px solid rgba(255,255,255,.18);backdrop-filter:blur(10px)}
.btn-secondary:hover{background:rgba(255,255,255,.18)}
.btn-ghost{background:transparent;color:var(--green);border:1px solid rgba(16,56,45,.18)}
.btn-sm{padding:12px 18px;font-size:.94rem}
.tag{
  display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;
  font-size:.85rem;font-weight:700;background:rgba(16,56,45,.07);color:var(--green);
}
.list-clean{list-style:none;padding:0;margin:0}
.grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px}
.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.grid-4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.card{
  background:rgba(255,255,255,.86);
  border:1px solid rgba(255,255,255,.6);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
}
.card.soft{background:rgba(250,245,237,.95)}
.card.dark{
  background:linear-gradient(180deg,#173a31,#102a24);
  color:#fff;
}
.card.dark p,.card.dark li{color:rgba(255,255,255,.82)}
.site-header{
  position:sticky;top:0;z-index:60;
  backdrop-filter:blur(18px);
  background:rgba(250,245,237,.72);
  border-bottom:1px solid rgba(16,56,45,.08);
  transition:background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header--overlay{position:fixed;left:0;right:0;top:0;background:rgba(13,18,16,.16);border-color:rgba(255,255,255,.08)}
.site-header.is-scrolled{background:rgba(248,242,233,.92);box-shadow:0 10px 30px rgba(16,18,17,.12)}
.site-header--overlay.is-scrolled{background:rgba(12,18,16,.74)}
.nav-shell{min-height:var(--header-h);display:flex;align-items:center;justify-content:space-between;gap:20px}
.brand{display:flex;align-items:center;gap:10px;min-width:0}
.brand-logo{
  display:block;
  width:56px;
  max-width:56px;
  max-height:56px;
  height:auto;
  object-fit:contain;
  flex:0 0 56px;
}
.site-header--overlay .brand-logo{
  display:block;
  width:56px;
  max-width:56px;
  max-height:56px;
  height:auto;
  object-fit:contain;
  flex:0 0 56px;
}
.footer-logo{
  display:block;
  width:72px;
  max-width:72px;
  max-height:72px;
  height:auto;
  object-fit:contain;
  margin-bottom:14px;
}
.footer-grid{display:grid;grid-template-columns:1.1fr .7fr .8fr;gap:28px}
.footer-list{list-style:none;padding:0;margin:0;display:grid;gap:12px}
.footer-list a{color:rgba(255,255,255,.86)}
.footer-bar{
  margin-top:36px;padding-top:18px;border-top:1px solid rgba(255,255,255,.08);
  display:flex;justify-content:space-between;gap:18px;color:rgba(255,255,255,.68);font-size:.92rem
}
.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease, transform .6s ease}
.reveal.is-visible{opacity:1;transform:none}
@keyframes heroPan{from{transform:scale(1.02) translateY(0)}to{transform:scale(1.08) translateY(-14px)}}
@keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@media (max-width: 1100px){
  .metric-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .grid-4,.review-grid,.highlight-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-grid{grid-template-columns:1fr 1fr}
  .gallery-grid{grid-template-columns:1fr 1fr}
  .gallery-grid > *:first-child{grid-column:span 2;grid-row:span 1;min-height:420px}
}
@media (max-width: 960px){
  .hero-grid,.grid-2,.split-media,.contact-layout,.rooms-grid,.review-grid,.highlight-grid,.grid-3,.footer-grid{grid-template-columns:1fr}
  .hero-inner{padding-top:calc(var(--header-h) + 42px)}
  .hero-visual{min-height:540px}
  .visual-frame{inset:44px 0 0 0}
  .floating-card--a{left:12px;top:0}
  .floating-card--b{right:12px;bottom:28px}
  .floating-card--c{left:28px;bottom:8px}
  .metric-grid{grid-template-columns:repeat(2,minmax(0,1fr));margin-top:-30px}
  .nav-toggle{display:flex}
  .nav-links{
    position:absolute;left:16px;right:16px;top:calc(100% + 10px);
    padding:14px;background:rgba(255,255,255,.98);border-radius:22px;box-shadow:var(--shadow);
    border:1px solid rgba(16,56,45,.08);
    display:none;flex-direction:column;align-items:flex-start
  }
  .nav-links.open{display:flex}
  .site-header--overlay .nav-links a{color:var(--green)}
  .form-grid{grid-template-columns:1fr}
}
@media (max-width: 680px){
  .section,.section-alt{padding:72px 0}
  h1{font-size:clamp(2.45rem,11vw,4rem)}
  h2{font-size:clamp(1.8rem,8vw,2.8rem)}
  .hero-points,.metric-grid,.grid-4,.gallery-grid{grid-template-columns:1fr}
  .gallery-grid > *:first-child{grid-column:auto;min-height:280px}
  .hero-visual{min-height:420px}
  .visual-frame{border-radius:28px}
  .floating-card{max-width:210px;padding:14px}
  .sticky-cta{left:14px;right:14px;justify-content:center}
  .footer-bar{flex-direction:column}
}


/* v12 fixes: logo balance, correct Caraíva background, shorter header/hero */
:root{
  --header-h:92px;
}

.site-header--overlay{
  background:rgba(10, 23, 21, .18) !important;
  border-color:rgba(255,255,255,.10) !important;
}

.site-header--overlay.is-scrolled{
  background:rgba(10, 20, 18, .78) !important;
}

.nav-shell{
  min-height:var(--header-h) !important;
  gap:28px;
}

.brand-logo,
.site-header--overlay .brand-logo{
  width:124px !important;
  max-width:124px !important;
  max-height:84px !important;
  flex:0 0 124px !important;
  height:auto !important;
}

.footer-logo{
  width:110px !important;
  max-width:110px !important;
  max-height:74px !important;
  height:auto !important;
}

.hero{
  position:relative;
  min-height:690px;
  background:
    linear-gradient(90deg, rgba(7,18,17,.70) 0%, rgba(7,18,17,.58) 36%, rgba(7,18,17,.28) 100%),
    url("../img/caraiva-rio.jpg") center center / cover no-repeat;
  overflow:hidden;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(9,20,18,.10) 0%, rgba(9,20,18,.26) 100%);
  pointer-events:none;
}

.hero-inner{
  position:relative;
  z-index:1;
  padding-top:calc(var(--header-h) + 28px) !important;
  padding-bottom:36px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.04fr) minmax(340px, .96fr);
  align-items:end;
  gap:42px;
  min-height:560px;
}

.hero-copy{
  max-width:720px;
}

.hero-visual{
  position:relative;
  min-height:430px !important;
}

.visual-frame{
  position:relative;
  inset:auto !important;
  min-height:430px;
  border-radius:36px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  background:rgba(255,255,255,.10);
}

.visual-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.floating-card{
  position:absolute;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-radius:24px;
  box-shadow:var(--shadow);
}

.page-hero{
  position:relative;
  min-height:420px;
  padding:calc(var(--header-h) + 48px) 0 56px;
  color:var(--white);
  background:
    linear-gradient(90deg, rgba(8,18,16,.72) 0%, rgba(8,18,16,.50) 50%, rgba(8,18,16,.30) 100%),
    var(--page-bg) center center / cover no-repeat;
}

.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(10,18,16,.08), rgba(10,18,16,.22));
  pointer-events:none;
}

.page-hero > .container{
  position:relative;
  z-index:1;
}

.page-hero .lead,
.page-hero p,
.page-hero .breadcrumbs,
.page-hero .breadcrumbs a{
  color:rgba(255,255,255,.88);
}

@media (max-width: 1100px){
  .hero-grid{
    grid-template-columns:1fr;
    min-height:auto;
    gap:28px;
  }

  .hero{
    min-height:unset;
  }
}

@media (max-width: 780px){
  .nav-shell{
    min-height:84px !important;
  }

  .brand-logo,
  .site-header--overlay .brand-logo{
    width:102px !important;
    max-width:102px !important;
    max-height:70px !important;
    flex:0 0 102px !important;
  }

  .footer-logo{
    width:96px !important;
    max-width:96px !important;
    max-height:66px !important;
  }

  .hero{
    min-height:auto;
  }

  .hero-inner{
    padding-top:calc(var(--header-h) + 20px) !important;
  }

  .hero-visual,
  .visual-frame{
    min-height:320px !important;
  }

  .page-hero{
    min-height:360px;
    padding:calc(var(--header-h) + 36px) 0 44px;
  }
}


/* v13 fixes: Search Console verification + real mobile responsiveness */
html,
body{
  max-width:100%;
  overflow-x:hidden;
}

body{
  overflow-wrap:break-word;
}

main,
section,
.container,
.card,
.hero-grid,
.hero-copy,
.hero-visual,
.visual-frame,
.grid-2,
.grid-3,
.grid-4,
.metric-grid,
.review-grid,
.highlight-grid,
.rooms-grid,
.contact-layout,
.split-media,
.footer-grid,
.nav-shell,
.nav-links{
  min-width:0;
}

.hero,
.page-hero{
  background-position:center center !important;
}

.hero{
  min-height:560px !important;
}

.hero-inner{
  padding-top:calc(var(--header-h) + 20px) !important;
  padding-bottom:24px !important;
}

.hero-grid{
  grid-template-columns:minmax(0, 1.08fr) minmax(300px, .92fr) !important;
  gap:28px !important;
  min-height:460px !important;
}

.hero-copy{
  max-width:640px !important;
}

.hero-visual{
  min-height:360px !important;
}

.visual-frame{
  min-height:360px !important;
  border-radius:30px !important;
}

.floating-card{
  max-width:220px;
}

.page-hero{
  min-height:320px !important;
  padding:calc(var(--header-h) + 26px) 0 34px !important;
}

.nav-shell{
  gap:18px !important;
}

.brand-logo,
.site-header--overlay .brand-logo{
  width:112px !important;
  max-width:112px !important;
  max-height:76px !important;
  flex:0 0 112px !important;
}

.footer-logo{
  width:98px !important;
  max-width:98px !important;
  max-height:68px !important;
}

@media (max-width: 980px){
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .metric-grid,
  .review-grid,
  .highlight-grid,
  .rooms-grid,
  .contact-layout,
  .split-media,
  .footer-grid{
    grid-template-columns:1fr !important;
  }

  .hero{
    min-height:auto !important;
  }

  .hero-grid{
    min-height:auto !important;
  }

  .hero-copy{
    max-width:none !important;
  }

  .hero-visual,
  .visual-frame{
    min-height:320px !important;
  }

  .nav-shell{
    min-height:82px !important;
  }

  .nav-links{
    left:12px !important;
    right:12px !important;
    width:auto !important;
    max-width:none !important;
    overflow-x:hidden;
  }
}

@media (max-width: 780px){
  :root{
    --header-h:78px;
  }

  .site-header,
  .site-header--overlay{
    backdrop-filter:blur(12px);
  }

  .nav-shell{
    min-height:78px !important;
    gap:12px !important;
  }

  .brand-logo,
  .site-header--overlay .brand-logo{
    width:92px !important;
    max-width:92px !important;
    max-height:64px !important;
    flex:0 0 92px !important;
  }

  .footer-logo{
    width:92px !important;
    max-width:92px !important;
    max-height:64px !important;
  }

  .nav-links{
    top:calc(100% + 8px) !important;
    padding:12px !important;
    border-radius:18px !important;
    gap:6px !important;
  }

  .nav-links .btn{
    width:100%;
  }

  .hero{
    min-height:auto !important;
    background:
      linear-gradient(180deg, rgba(7,18,17,.78) 0%, rgba(7,18,17,.48) 46%, rgba(7,18,17,.34) 100%),
      url("../img/caraiva-rio.jpg") center center / cover no-repeat !important;
  }

  .hero-inner{
    padding-top:calc(var(--header-h) + 12px) !important;
    padding-bottom:16px !important;
  }

  .hero-grid{
    gap:20px !important;
  }

  .hero-visual{
    display:grid !important;
    gap:12px !important;
    min-height:auto !important;
  }

  .visual-frame{
    min-height:260px !important;
    border-radius:24px !important;
  }

  .floating-card{
    position:static !important;
    left:auto !important;
    right:auto !important;
    top:auto !important;
    bottom:auto !important;
    width:100% !important;
    max-width:none !important;
    padding:16px !important;
    border-radius:20px !important;
  }

  .metric-grid{
    margin-top:0 !important;
  }

  .page-hero{
    min-height:260px !important;
    padding:calc(var(--header-h) + 18px) 0 26px !important;
  }

  .section,
  .section-alt{
    padding:56px 0 !important;
  }

  h1{
    font-size:clamp(2.2rem, 10vw, 3.6rem) !important;
  }

  h2{
    font-size:clamp(1.7rem, 8vw, 2.6rem) !important;
  }

  .lead{
    font-size:1rem !important;
  }
}

@media (max-width: 560px){
  :root{
    --container:min(100vw - 24px, 100%);
    --header-h:74px;
  }

  .container{
    width:min(calc(100vw - 24px), 100%) !important;
  }

  .nav-shell{
    min-height:74px !important;
  }

  .brand-logo,
  .site-header--overlay .brand-logo{
    width:86px !important;
    max-width:86px !important;
    max-height:60px !important;
    flex:0 0 86px !important;
  }

  .footer-logo{
    width:84px !important;
    max-width:84px !important;
    max-height:58px !important;
  }

  .hero-inner{
    padding-top:calc(var(--header-h) + 10px) !important;
  }

  .visual-frame{
    min-height:220px !important;
  }

  .btn{
    width:100%;
  }

  .hero-actions{
    display:grid;
    gap:10px;
  }

  .card{
    padding:20px !important;
  }

  .footer-bar{
    gap:10px !important;
  }
}


/* v14 hard-fix: full component styling + robust mobile responsiveness */
body{
  padding-bottom:0;
}

main{
  display:block;
}

.site-header,
.site-header--overlay{
  width:100%;
}

.nav-toggle{
  display:none;
  width:64px;
  height:64px;
  border:1px solid rgba(16,56,45,.10);
  border-radius:22px;
  background:rgba(255,255,255,.88);
  color:var(--green);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:7px;
  box-shadow:0 12px 26px rgba(16,18,17,.08);
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  width:28px;
  height:3px;
  border-radius:999px;
  background:currentColor;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.nav-links > a:not(.btn){
  font-weight:700;
  color:inherit;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:26px 0 24px;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:0 0 18px;
}

.hero-points li{
  padding:14px 16px;
  border-radius:20px;
  background:rgba(255,255,255,.12);
  color:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(10px);
  font-size:.98rem;
}

.hero-scroll{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.80);
  font-weight:600;
  font-size:.94rem;
}

.hero-scroll::before{
  content:"";
  width:22px;
  height:22px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.08);
}

.metric-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin-top:-52px;
  position:relative;
  z-index:2;
}

.metric{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.70);
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:28px 24px;
}

.metric strong{
  display:block;
  margin-bottom:10px;
  color:var(--green);
  font-family:"Playfair Display", Georgia, "Times New Roman", serif;
  font-size:clamp(1.9rem,4vw,3.2rem);
  line-height:.95;
}

.metric span{
  display:block;
  color:var(--muted);
}

.section-head{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:24px 36px;
  align-items:end;
  margin-bottom:34px;
}

.section-head > *{
  min-width:0;
}

.split-media{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(0,.96fr);
  gap:30px;
  align-items:center;
}

.media-stack{
  display:grid;
  gap:18px;
}

.media-card{
  padding:0;
  overflow:hidden;
}

.media-card img,
.visual-frame img,
.gallery-item img,
.room-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.media-card img{
  min-height:260px;
}

.icon-list{
  display:grid;
  gap:16px;
  margin-top:24px;
}

.icon-list li{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:14px;
  align-items:start;
}

.icon{
  width:48px;
  height:48px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(16,56,45,.10);
  color:var(--green);
  font-weight:800;
  flex:0 0 48px;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.review-card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.65);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:26px;
}

.review-card blockquote{
  margin:0 0 16px;
  font-family:"Playfair Display", Georgia, "Times New Roman", serif;
  font-size:1.32rem;
  line-height:1.22;
  color:var(--text);
}

.review-card cite{
  color:var(--muted);
  font-style:normal;
  font-weight:700;
}

.stats-band{
  background:linear-gradient(180deg,#163a31,#102c24);
  color:#fff;
  border-radius:34px;
  box-shadow:var(--shadow-lg);
  padding:34px;
}

.stats-band .eyebrow.light{
  background:rgba(255,255,255,.14);
}

.stats-band h2,
.stats-band p,
.stats-band strong,
.stats-band span{
  color:#fff;
}

.stats-band .grid-4{
  margin-top:22px;
}

.stats-band .grid-4 > div{
  padding:18px 20px;
  border-radius:22px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.10);
}

.stats-band .grid-4 strong{
  display:block;
  margin-bottom:10px;
}

.rooms-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.room-card{
  overflow:hidden;
  padding:0;
}

.room-card img{
  min-height:240px;
}

.room-body{
  padding:24px;
}

.room-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  min-height:250px;
  box-shadow:var(--shadow);
}

.gallery-grid > *:first-child{
  grid-column:span 2;
  min-height:430px;
}

.gallery-item::after{
  content:attr(data-label);
  position:absolute;
  left:18px;
  bottom:18px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  color:var(--green);
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.03em;
  box-shadow:0 10px 26px rgba(15,16,13,.12);
}

.highlight-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.highlight,
.feature-card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.72);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:26px;
}

.highlight strong,
.feature-card h3{
  display:block;
  color:var(--green);
  margin-bottom:12px;
}

.feature-card .icon{
  margin-bottom:18px;
}

.faq-grid{
  display:grid;
  gap:14px;
  margin-top:18px;
}

.faq-item{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(16,56,45,.10);
  border-radius:22px;
  padding:18px 20px;
  box-shadow:0 10px 24px rgba(16,18,17,.05);
}

.faq-item summary{
  cursor:pointer;
  list-style:none;
  font-weight:800;
  color:var(--text);
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item p{
  margin:14px 0 0;
}

.cta-box{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(249,244,236,.96));
  border:1px solid rgba(16,56,45,.08);
  border-radius:32px;
  box-shadow:var(--shadow);
  padding:32px;
}

.contact-form{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.74);
  border-radius:32px;
  box-shadow:var(--shadow);
  padding:30px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.field{
  display:grid;
  gap:8px;
  margin-bottom:16px;
}

.field label{
  font-weight:700;
  color:var(--green);
}

.field input,
.field select,
.field textarea{
  width:100%;
  min-width:0;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(16,56,45,.14);
  background:#fff;
  color:var(--text);
  outline:none;
}

.field textarea{
  min-height:140px;
  resize:vertical;
}

.contact-card{
  display:grid;
  gap:6px;
  padding:16px 0;
  border-top:1px solid rgba(16,56,45,.08);
}

.contact-card:first-of-type{
  border-top:0;
}

.contact-card strong{
  color:var(--green);
}

.contact-card a{
  color:var(--text);
  font-weight:700;
}

.checklist{
  display:grid;
  gap:10px;
}

.checklist li{
  position:relative;
  padding-left:24px;
}

.checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top:.65em;
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--green);
}

.timeline{
  display:grid;
  gap:16px;
  margin-top:18px;
}

.timeline-item{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:14px;
  align-items:start;
}

.timeline-step{
  width:42px;
  height:42px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(16,56,45,.10);
  color:var(--green);
  font-weight:800;
  flex:0 0 42px;
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  table-layout:fixed;
  overflow:hidden;
  border-radius:26px;
  background:rgba(255,255,255,.96);
  box-shadow:inset 0 0 0 1px rgba(16,56,45,.08);
}

.table tbody tr + tr th,
.table tbody tr + tr td{
  border-top:1px solid rgba(16,56,45,.08);
}

.table th,
.table td{
  padding:18px 20px;
  text-align:left;
  vertical-align:top;
  overflow-wrap:anywhere;
}

.table th{
  width:34%;
  color:var(--green);
  background:rgba(16,56,45,.06);
  font-size:.96rem;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.site-footer{
  margin-top:60px;
  padding:70px 0 24px;
  background:linear-gradient(180deg,#11362d,#0c2a22);
  color:#fff;
}

.site-footer h2,
.site-footer h3{
  color:#fff;
}

.site-footer p{
  color:rgba(255,255,255,.82);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:28px;
}

.footer-list{
  display:grid;
  gap:12px;
}

.footer-list li{
  min-width:0;
}

.footer-bar{
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  color:rgba(255,255,255,.72);
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .5s ease, transform .5s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

.sticky-cta{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:max(14px, env(safe-area-inset-bottom));
  z-index:70;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:58px;
  padding:0 28px;
  border-radius:999px;
  background:linear-gradient(135deg,#1f8b66,#177453);
  color:#fff;
  font-weight:800;
  box-shadow:0 18px 44px rgba(15,53,41,.26);
  width:min(calc(100vw - 32px), 420px);
  text-align:center;
}

@media (max-width: 1180px){
  .metric-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .rooms-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .gallery-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .gallery-grid > *:first-child{
    grid-column:span 2;
  }

  .review-grid,
  .highlight-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 980px){
  body{
    padding-bottom:106px;
  }

  .nav-toggle{
    display:inline-flex;
  }

  .nav-shell{
    min-height:80px !important;
  }

  .nav-links{
    position:absolute;
    left:12px;
    right:12px;
    top:calc(100% + 8px);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:14px;
    border-radius:22px;
    background:rgba(255,255,255,.98);
    border:1px solid rgba(16,56,45,.10);
    box-shadow:0 20px 40px rgba(17,18,16,.10);
  }

  .nav-links.open{
    display:flex;
  }

  .nav-links > a:not(.btn){
    width:100%;
    padding:10px 8px;
    border-radius:14px;
  }

  .nav-links .btn{
    width:100%;
  }

  .hero,
  .page-hero{
    background-position:center center !important;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .metric-grid,
  .review-grid,
  .highlight-grid,
  .rooms-grid,
  .footer-grid,
  .split-media,
  .section-head,
  .form-grid,
  .contact-layout{
    grid-template-columns:1fr !important;
  }

  .reverse-mobile > :first-child{
    order:2;
  }

  .reverse-mobile > :last-child{
    order:1;
  }

  .hero{
    min-height:auto !important;
  }

  .hero-inner{
    padding-top:calc(var(--header-h) + 16px) !important;
    padding-bottom:18px !important;
  }

  .hero-grid{
    min-height:auto !important;
    align-items:start !important;
  }

  .hero-copy,
  .hero-visual,
  .section-head > *,
  .grid-2 > *,
  .grid-3 > *,
  .grid-4 > *,
  .split-media > *{
    min-width:0 !important;
    width:100% !important;
    max-width:100% !important;
  }

  .hero-points{
    grid-template-columns:1fr;
  }

  .hero-visual{
    display:grid;
    gap:14px;
    min-height:auto !important;
  }

  .visual-frame{
    min-height:300px !important;
  }

  .floating-card{
    position:static !important;
    width:100% !important;
    max-width:none !important;
    padding:16px !important;
  }

  .metric-grid{
    margin-top:0 !important;
  }

  .metric{
    padding:22px 20px;
  }

  .metric strong{
    font-size:clamp(1.8rem,10vw,2.8rem);
  }

  .section,
  .section-alt{
    padding:58px 0 !important;
  }

  .section-head{
    margin-bottom:24px !important;
  }

  .stats-band{
    padding:26px;
  }

  .gallery-grid > *:first-child{
    grid-column:auto !important;
    min-height:280px !important;
  }

  .gallery-item{
    min-height:260px;
  }

  .media-card img{
    min-height:220px;
  }

  .table{
    display:block;
    width:100%;
    overflow:hidden;
  }

  .table tbody,
  .table tr,
  .table th,
  .table td{
    display:block;
    width:100%;
  }

  .table tr{
    border-bottom:1px solid rgba(16,56,45,.08);
  }

  .table tr:last-child{
    border-bottom:0;
  }

  .table th{
    width:100%;
    border-top:0 !important;
    padding-bottom:10px;
  }

  .table td{
    padding-top:0;
  }

  .sticky-cta{
    left:12px;
    right:12px;
    transform:none;
    width:auto;
    min-height:56px;
    padding:0 20px;
  }

  .footer-bar{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 640px){
  :root{
    --header-h:76px;
  }

  h1{
    font-size:clamp(2.2rem, 11vw, 3.6rem) !important;
  }

  h2{
    font-size:clamp(1.7rem, 9vw, 2.65rem) !important;
  }

  .container{
    width:min(calc(100vw - 24px), 100%) !important;
  }

  .brand-logo,
  .site-header--overlay .brand-logo{
    width:82px !important;
    max-width:82px !important;
    max-height:58px !important;
    flex:0 0 82px !important;
  }

  .footer-logo{
    width:88px !important;
    max-width:88px !important;
    max-height:62px !important;
  }

  .nav-toggle{
    width:58px;
    height:58px;
    border-radius:20px;
  }

  .nav-toggle span{
    width:24px;
  }

  .hero-inner{
    padding-top:calc(var(--header-h) + 12px) !important;
  }

  .hero-actions,
  .hero-actions .btn{
    width:100%;
  }

  .hero-actions{
    display:grid;
    gap:10px;
  }

  .visual-frame{
    min-height:240px !important;
    border-radius:24px !important;
  }

  .stats-band,
  .card,
  .highlight,
  .feature-card,
  .cta-box,
  .contact-form,
  .review-card,
  .metric{
    border-radius:26px !important;
  }

  .card,
  .highlight,
  .feature-card,
  .cta-box,
  .contact-form,
  .review-card{
    padding:22px !important;
  }

  .room-card{
    padding:0 !important;
  }

  .room-card img{
    min-height:220px;
  }

  .room-body{
    padding:20px !important;
  }

  .gallery-item{
    min-height:220px;
  }

  .gallery-item::after{
    left:14px;
    right:14px;
    bottom:14px;
    text-align:center;
  }

  .section-head{
    gap:14px !important;
  }

  .section-head p,
  .lead,
  p{
    max-width:100%;
  }

  .hero-points li,
  .faq-item,
  .contact-card{
    font-size:.96rem;
  }

  .checklist li{
    padding-left:22px;
  }

  .sticky-cta{
    min-height:54px;
    font-size:1rem;
    bottom:max(10px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px){
  body{
    padding-bottom:100px;
  }

  .brand-logo,
  .site-header--overlay .brand-logo{
    width:74px !important;
    max-width:74px !important;
    max-height:52px !important;
    flex:0 0 74px !important;
  }

  .footer-logo{
    width:80px !important;
    max-width:80px !important;
    max-height:56px !important;
  }

  .nav-shell{
    gap:8px !important;
  }

  .hero-points li{
    padding:12px 14px;
  }

  .metric strong{
    font-size:2.3rem;
  }

  .table th,
  .table td{
    padding-left:16px;
    padding-right:16px;
  }
}

/* Dedicated watch page / video indexing */
.watch-page{
  padding:calc(var(--header-h) + 36px) 0 96px;
}
.watch-page__intro,
.watch-page__player,
.watch-page__content,
.watch-page__links{
  margin-bottom:32px;
}
.video-shell{
  background:linear-gradient(180deg, rgba(16,56,45,.08), rgba(31,90,75,.18));
  border:1px solid rgba(16,56,45,.12);
  border-radius:32px;
  padding:18px;
  box-shadow:var(--shadow);
}
.video-frame{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:24px;
  background:#000;
}
.video-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.watch-page__content{
  display:grid;
  grid-template-columns:minmax(0, 1.3fr) minmax(280px, .7fr);
  gap:24px;
  align-items:start;
}
.check-list{
  list-style:none;
  padding:0;
  margin:22px 0 0;
  display:grid;
  gap:12px;
}
.check-list li{
  position:relative;
  padding-left:28px;
  color:var(--muted);
}
.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-weight:800;
  color:var(--green);
}
.watch-page code{
  word-break:break-all;
  font-size:.92rem;
}
.watch-page__links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.home-video-highlight .split-media{
  align-items:center;
}
.video-thumb-card{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:28px;
  box-shadow:var(--shadow);
}
.video-thumb-card img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}
.video-thumb-card__play{
  position:absolute;
  inset:auto auto 18px 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:62px;
  height:62px;
  border-radius:999px;
  background:rgba(16,56,45,.88);
  color:#fff;
  font-size:1.25rem;
  box-shadow:0 16px 40px rgba(0,0,0,.25);
}
@media (max-width: 900px){
  .watch-page__content{
    grid-template-columns:1fr;
  }
}
@media (max-width: 640px){
  .watch-page{
    padding:calc(var(--header-h) + 24px) 0 72px;
  }
  .video-shell{
    padding:10px;
    border-radius:24px;
  }
  .video-frame{
    border-radius:18px;
  }
  .watch-page__links{
    flex-direction:column;
  }
  .watch-page__links .btn,
  .home-video-highlight .btn{
    width:100%;
    justify-content:center;
  }
  .video-thumb-card__play{
    width:54px;
    height:54px;
    inset:auto auto 14px 14px;
  }
}
