/* ===================================================================
   Luxe Premier Getaways — "Luxe Premier" design system
   Palette: midnight navy · antique gold · ivory cream · deep teal
   Type: Cormorant Garamond (display) · Montserrat (text/UI)
   =================================================================== */

:root {
  --navy-900:#0B1B2E; --navy-800:#102841; --navy:#15324F; --navy-700:#1E4068; --navy-600:#28527F;
  --gold:#C8A24C; --gold-300:#E4C77C; --gold-100:#F3E3BC; --gold-deep:#9C7B2E;
  --teal:#2C6E6A; --teal-700:#1F4F4A;
  --ivory:#FBF7EF; --ivory-2:#F4ECDD; --sand:#EBDFC9; --paper:#FFFFFF; --paper-2:#FFFDF8;
  --ink:#1B2433; --ink-soft:#56616F;
  --line: rgba(20,30,45,.12);

  --shadow-sm: 0 2px 10px rgba(14,28,46,.07);
  --shadow:    0 16px 40px -18px rgba(14,28,46,.30);
  --shadow-lg: 0 32px 70px -26px rgba(8,18,32,.55);

  --serif:'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --head-h: 76px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:var(--head-h); -webkit-text-size-adjust:100%; }
body{
  margin:0; background:var(--ivory); color:var(--ink);
  font-family:var(--sans); font-size:16.5px; line-height:1.72; font-weight:400;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:var(--teal-700); text-decoration:none; transition:color .18s; }
a:hover{ color:var(--gold-deep); }
h1,h2,h3,h4{ font-family:var(--serif); font-weight:600; line-height:1.08; color:var(--ink); margin:0; }
/* dual-ring focus: gold reads on dark sections, navy halo reads on light ones (both ≥3:1) */
:focus-visible{ outline:3px solid var(--gold-300); outline-offset:2px; box-shadow:0 0 0 5px rgba(8,18,32,.55); border-radius:5px; }
#main:focus{ outline:none; }

.container{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:clamp(1.1rem,4vw,2.2rem); }
section[id], #top{ scroll-margin-top:var(--head-h); }

.skip-link{
  position:fixed; left:50%; top:-60px; transform:translateX(-50%);
  background:var(--navy); color:var(--ivory); padding:.7rem 1.2rem; border-radius:0 0 10px 10px;
  z-index:300; transition:top .2s;
}
.skip-link:focus{ top:0; color:var(--ivory); }

.ico{ width:1.15em; height:1.15em; fill:currentColor; flex:none; }
.stars{ color:var(--gold-300); letter-spacing:.1em; }

/* ---------- Eyebrows & section titles ---------- */
.eyebrow{
  font-family:var(--sans); font-weight:700; text-transform:uppercase;
  letter-spacing:.22em; font-size:.72rem; color:var(--teal); margin:0 0 1rem;
  display:flex; align-items:center; gap:.7rem;
}
.eyebrow::before{ content:""; width:30px; height:2px; background:var(--gold); }
.eyebrow--ondark{ color:var(--gold-300); }
.eyebrow--ondark::before{ background:var(--gold-300); }

.section{ padding:clamp(3.8rem,8vw,7rem) 0; position:relative; }
.section__title{
  font-size:clamp(2.1rem,4.8vw,3.5rem); letter-spacing:.005em; margin-bottom:.6rem; text-wrap:balance;
}
.section__title--light{ color:var(--ivory); }
.section__intro{ color:var(--ink-soft); max-width:58ch; margin:0 0 2.6rem; font-size:1.05rem; }
.section__title--light + .section__intro,
.eyebrow--ondark ~ .section__intro{ color:rgba(251,247,239,.82); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  font-family:var(--sans); font-weight:600; font-size:.92rem; letter-spacing:.02em;
  padding:.86em 1.6em; border-radius:999px; border:1.5px solid transparent;
  cursor:pointer; transition:transform .15s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn--lg{ font-size:1rem; padding:1em 2em; }
.btn--gold{ background:linear-gradient(180deg,var(--gold-300),var(--gold)); color:#33260A; box-shadow:0 12px 26px -12px rgba(160,124,46,.75); }
.btn--gold:hover{ color:#33260A; box-shadow:0 16px 30px -12px rgba(160,124,46,.9); transform:translateY(-2px); }
.btn--navy{ background:var(--navy); color:var(--ivory); box-shadow:0 14px 28px -14px rgba(11,27,46,.8); }
.btn--navy:hover{ background:var(--navy-800); color:var(--ivory); transform:translateY(-2px); }
.btn--outline-light{ border-color:rgba(251,247,239,.55); color:var(--ivory); background:rgba(251,247,239,.04); }
.btn--outline-light:hover{ border-color:var(--gold-300); color:var(--gold-100); background:rgba(251,247,239,.1); transform:translateY(-2px); }

/* ---------- Header ---------- */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:100;
  transition:background .3s, box-shadow .3s, border-color .3s;
  border-bottom:1px solid transparent;
}
.site-header__inner{ display:flex; align-items:center; gap:1.2rem; min-height:var(--head-h); }
.site-header.is-scrolled{
  background:rgba(11,27,46,.92); backdrop-filter:blur(12px) saturate(1.2);
  border-bottom-color:rgba(200,162,76,.22); box-shadow:0 10px 30px -18px rgba(0,0,0,.6);
}
.brand{ display:flex; align-items:center; gap:.75rem; margin-right:auto; color:var(--ivory); }
.brand:hover{ color:var(--ivory); }
.brand__mark{ width:auto; height:46px; filter:drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.brand__text{ display:flex; flex-direction:column; line-height:1.05; }
.brand__name{ font-family:var(--serif); font-weight:700; font-size:1.32rem; letter-spacing:.01em; color:var(--ivory); text-shadow:0 1px 10px rgba(0,0,0,.3); }
.brand__sub{ font-size:.62rem; font-weight:600; letter-spacing:.24em; text-transform:uppercase; color:var(--gold-300); margin-top:1px; }

.nav{ display:flex; align-items:center; gap:1.6rem; }
.nav a{ font-weight:500; color:rgba(251,247,239,.92); font-size:.92rem; position:relative; padding:.3rem 0; letter-spacing:.02em; }
.nav a::after{ content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .22s; }
.nav a:hover{ color:#fff; }
.nav a:hover::after{ transform:scaleX(1); }
.header-call{ padding:.62em 1.25em; font-size:.85rem; }
.nav-toggle{ display:none; }

/* ---------- Hero ---------- */
.hero{
  position:relative; isolation:isolate; min-height:100svh;
  display:flex; align-items:center; justify-content:center; text-align:center;
  color:var(--ivory); padding:calc(var(--head-h) + 3rem) 0 5rem; overflow:hidden;
}
.hero__bg{ position:absolute; inset:0; z-index:-2; }
.hero__bg img{ width:100%; height:100%; object-fit:cover; object-position:center 60%; }
.hero__scrim{
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(180deg, rgba(8,18,32,.62) 0%, rgba(8,18,32,.18) 26%, rgba(8,18,32,.30) 60%, rgba(8,18,32,.82) 100%),
    radial-gradient(120% 80% at 50% 70%, rgba(8,18,32,0) 35%, rgba(8,18,32,.45) 100%);
}
.hero__inner{ max-width:860px; }
.hero .eyebrow{ justify-content:center; }
.hero__title{
  font-size:clamp(2.7rem,7vw,5.1rem); color:#fff; font-weight:600; letter-spacing:.005em;
  text-wrap:balance; margin-bottom:1.2rem; text-shadow:0 4px 36px rgba(0,0,0,.4);
}
.hero__lead{
  font-size:clamp(1.05rem,1.7vw,1.3rem); color:rgba(255,252,246,.94); line-height:1.6;
  max-width:46ch; margin:0 auto 2rem; text-shadow:0 2px 18px rgba(0,0,0,.35);
}
.hero__cta{ display:flex; gap:.9rem; flex-wrap:wrap; justify-content:center; }
.hero__trust{
  display:inline-flex; align-items:center; gap:.6rem; flex-wrap:wrap; justify-content:center;
  margin:2.2rem auto 0; font-size:.86rem; font-weight:500; letter-spacing:.02em;
  color:rgba(255,252,246,.9); text-shadow:0 2px 12px rgba(0,0,0,.4);
}
.hero__trust .stars{ font-size:1rem; }
.hero__scroll{
  position:absolute; left:50%; bottom:26px; transform:translateX(-50%); z-index:1;
  width:26px; height:42px; border:2px solid rgba(251,247,239,.6); border-radius:14px;
}
.hero__scroll span{
  position:absolute; left:50%; top:8px; width:4px; height:8px; margin-left:-2px; border-radius:2px;
  background:var(--gold-300); animation:scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot{ 0%{opacity:0; transform:translateY(0)} 40%{opacity:1} 80%{opacity:0; transform:translateY(12px)} 100%{opacity:0} }

/* ---------- Intro ---------- */
.intro{ background:var(--ivory); text-align:center; }
.intro__inner{ max-width:780px; margin-inline:auto; }
.intro .eyebrow{ justify-content:center; }
.intro__lead{ margin-inline:auto; max-width:60ch; }
.intro__stats{ display:flex; flex-wrap:wrap; justify-content:center; gap:clamp(1.5rem,5vw,4rem); margin-top:1rem; }
.stat{ display:flex; flex-direction:column; align-items:center; gap:.2rem; }
.stat__num{ font-family:var(--serif); font-size:clamp(2.4rem,5vw,3.2rem); font-weight:600; color:var(--gold-deep); line-height:1; }
.stat__label{ font-size:.78rem; font-weight:600; text-transform:uppercase; letter-spacing:.12em; color:var(--ink-soft); max-width:14ch; }

/* ---------- Services ---------- */
.services{ background:var(--paper-2); }
.svc-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.svc{
  background:var(--paper); border:1px solid var(--line); border-radius:18px; overflow:hidden;
  box-shadow:var(--shadow-sm); display:flex; flex-direction:column;
  transition:transform .25s, box-shadow .3s;
}
.svc:hover{ transform:translateY(-7px); box-shadow:var(--shadow); }
.svc__img{ aspect-ratio:4/3; overflow:hidden; position:relative; }
.svc__img::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(11,27,46,0) 55%,rgba(11,27,46,.28)); }
.svc__img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.svc:hover .svc__img img{ transform:scale(1.07); }
.svc__body{ padding:1.3rem 1.4rem 1.5rem; }
.svc__title{ font-size:1.5rem; color:var(--navy); margin-bottom:.4rem; position:relative; padding-bottom:.5rem; }
.svc__title::after{ content:""; position:absolute; left:0; bottom:0; width:34px; height:2px; background:var(--gold); }
.svc__body p{ margin:0; color:var(--ink-soft); font-size:.95rem; }

/* ---------- Why ---------- */
.why{ background:radial-gradient(130% 120% at 80% -10%, var(--navy-700), var(--navy) 45%, var(--navy-900) 100%); color:var(--ivory); }
.why .section__title{ color:var(--ivory); }
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.3rem; margin-top:1rem; }
.why-card{
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  border:1px solid rgba(200,162,76,.22); border-radius:16px; padding:1.8rem 1.5rem;
  backdrop-filter:blur(2px);
}
.why-card__ico{
  display:inline-flex; align-items:center; justify-content:center; width:52px; height:52px;
  border-radius:50%; background:linear-gradient(180deg,var(--gold-300),var(--gold)); margin-bottom:1rem;
  box-shadow:0 10px 22px -10px rgba(160,124,46,.8);
}
.why-card__ico svg{ width:26px; height:26px; fill:var(--navy-900); }
.why-card h3{ color:var(--gold-100); font-size:1.42rem; margin-bottom:.4rem; }
.why-card p{ margin:0; color:rgba(251,247,239,.78); font-size:.92rem; }

/* ---------- About ---------- */
.about{ background:var(--ivory); }
.about__inner{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(1.8rem,5vw,4rem); align-items:center; }
.about__media{ position:relative; }
.about__media img{
  width:100%; aspect-ratio:4/5; object-fit:cover; border-radius:18px;
  box-shadow:var(--shadow-lg); border:1px solid var(--line);
}
.about__media::before{
  content:""; position:absolute; inset:16px -16px -16px 16px; z-index:-1;
  border:2px solid var(--gold); border-radius:18px;
}
.about__badge{
  position:absolute; left:-12px; bottom:24px; background:var(--navy); color:var(--gold-300);
  font-family:var(--sans); font-weight:600; font-size:.72rem; letter-spacing:.16em; text-transform:uppercase;
  padding:.6rem 1.1rem; border-radius:999px; box-shadow:var(--shadow);
}
.about__copy p{ color:var(--ink-soft); margin:0 0 1.1rem; }
.about__copy em{ color:var(--ink); font-style:italic; }
.about__sign{ font-family:var(--serif); font-size:1.5rem; font-style:italic; color:var(--gold-deep); margin:.2rem 0 1.4rem !important; }

/* ---------- Destinations ---------- */
.destinations{ background:var(--ivory-2); }
.dest-grid{
  display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:clamp(150px,21vw,210px); gap:1rem;
}
.dest{
  position:relative; margin:0; border-radius:16px; overflow:hidden; box-shadow:var(--shadow-sm);
  background-image:linear-gradient(180deg,rgba(11,27,46,0) 30%,rgba(8,18,32,.82)),var(--img);
  background-size:cover; background-position:center; cursor:default;
  transition:transform .3s, box-shadow .3s;
}
.dest::before{ content:""; position:absolute; inset:0; background:var(--img) center/cover; z-index:-1; }
.dest--tall{ grid-row:span 2; }
.dest--wide{ grid-column:span 3; }
.dest:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.dest figcaption{
  position:absolute; left:0; right:0; bottom:0; padding:1.1rem 1.2rem;
  color:var(--ivory); font-family:var(--serif); font-size:1.35rem; line-height:1.15; font-weight:600;
  display:flex; flex-direction:column; gap:.15rem;
}
.dest figcaption span{
  font-family:var(--sans); font-size:.66rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--gold-300);
}

/* ---------- Reviews ---------- */
.reviews{ background:radial-gradient(120% 120% at 50% -20%, var(--navy-700), var(--navy) 45%, var(--navy-900)); color:var(--ivory); text-align:center; }
.reviews .eyebrow{ justify-content:center; }
.review-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; margin-top:2.4rem; text-align:left; }
.review{
  background:var(--ivory); color:var(--ink); border-radius:16px; padding:1.7rem 1.6rem; margin:0;
  box-shadow:var(--shadow); display:flex; flex-direction:column; gap:.8rem; border-top:3px solid var(--gold);
}
.review .stars{ font-size:1.05rem; }
.review blockquote{ margin:0; font-family:var(--serif); font-size:1.32rem; line-height:1.4; color:var(--navy-800); }
.review figcaption{ font-weight:600; color:var(--gold-deep); font-size:.85rem; margin-top:auto; letter-spacing:.02em; }
.review figcaption span{ color:var(--ink-soft); font-weight:500; }
.reviews__note{ margin:2.2rem 0 0; color:rgba(251,247,239,.75); font-size:.95rem; }
.reviews__note a{ color:var(--gold-300); font-weight:600; }
.reviews__note a:hover{ color:var(--gold-100); }

/* ---------- FAQ ---------- */
.faq{ background:var(--ivory); }
.faq__inner{ display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(1.8rem,5vw,4rem); align-items:start; }
.faq__head{ position:sticky; top:calc(var(--head-h) + 1.5rem); }
.faq__list{ display:flex; flex-direction:column; gap:.9rem; }
.qa{ background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:.4rem 1.4rem; box-shadow:var(--shadow-sm); transition:border-color .2s, box-shadow .2s; }
.qa[open]{ border-color:rgba(200,162,76,.5); box-shadow:var(--shadow); }
.qa summary{
  cursor:pointer; list-style:none; font-family:var(--serif); font-size:1.3rem; color:var(--navy);
  padding:1rem 2rem 1rem 0; position:relative; font-weight:600;
}
.qa summary::-webkit-details-marker{ display:none; }
.qa summary::after{
  content:"+"; position:absolute; right:0; top:50%; transform:translateY(-50%);
  font-family:var(--sans); font-weight:400; font-size:1.7rem; color:var(--gold-deep); transition:transform .25s;
}
.qa[open] summary::after{ content:"–"; }
.qa__body{ padding:0 0 1.1rem; }
.qa__body p{ margin:0; color:var(--ink-soft); font-size:.98rem; }

/* ---------- Contact ---------- */
.contact{ position:relative; isolation:isolate; color:var(--ivory); text-align:center; overflow:hidden; padding:clamp(4.5rem,9vw,8rem) 0; }
.contact__bg{ position:absolute; inset:0; z-index:-2; background:url('/assets/band-overwater.webp') center/cover fixed; }
.contact__scrim{ position:absolute; inset:0; z-index:-1; background:linear-gradient(180deg,rgba(8,18,32,.86),rgba(11,27,46,.78)); }
.contact .eyebrow{ justify-content:center; }
.contact__inner{ max-width:760px; margin-inline:auto; }
.contact__lead{ color:rgba(251,247,239,.88); font-size:1.08rem; max-width:52ch; margin:0 auto 2.2rem; }
.contact__actions{ display:flex; gap:.9rem; flex-wrap:wrap; justify-content:center; }
.contact__meta{ margin:2.2rem 0 0; font-size:.86rem; letter-spacing:.04em; color:rgba(251,247,239,.7); }

/* ---------- Footer ---------- */
.site-footer{ background:var(--navy-900); color:rgba(251,247,239,.78); }
.site-footer__inner{ display:flex; flex-wrap:wrap; gap:2.2rem 3rem; padding:3.4rem 0 2.4rem; }
.site-footer__brand{ flex:1 1 260px; min-width:0; }
.site-footer__col{ flex:1 1 150px; min-width:0; }
.site-footer__brand img{ height:64px; width:auto; margin-bottom:1rem; filter:drop-shadow(0 4px 12px rgba(0,0,0,.5)); }
.site-footer__name{ font-family:var(--serif); font-size:1.4rem; color:var(--ivory); font-weight:600; line-height:1.2; margin:0; }
.site-footer__name span{ display:block; font-family:var(--sans); font-size:.66rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-300); margin-top:.35rem; }
.site-footer__tag{ font-family:var(--serif); font-style:italic; font-size:1.05rem; color:rgba(251,247,239,.7); margin:.9rem 0 0; }
.site-footer__col h4{ font-family:var(--sans); font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-300); margin-bottom:.9rem; }
.site-footer__col address{ font-style:normal; line-height:2; display:flex; flex-direction:column; }
.site-footer__col address span{ color:rgba(251,247,239,.6); font-size:.9rem; }
.site-footer__col a{ color:rgba(251,247,239,.78); display:block; padding:.16rem 0; font-size:.95rem; }
.site-footer__col a:hover{ color:var(--gold-300); }
.site-footer__col nav{ display:flex; flex-direction:column; }
.site-footer__bar{ border-top:1px solid rgba(251,247,239,.12); padding:1.2rem 0; font-size:.8rem; }
.site-footer__bar .container{ display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.site-footer__bar p{ margin:0; color:rgba(251,247,239,.55); }

/* ---------- Floating call button (mobile) ---------- */
.call-fab{
  display:none; position:fixed; right:18px; bottom:18px; z-index:90;
  width:60px; height:60px; border-radius:50%;
  background:linear-gradient(180deg,var(--gold-300),var(--gold)); color:#33260A;
  align-items:center; justify-content:center; box-shadow:var(--shadow-lg);
}
.call-fab .ico{ width:27px; height:27px; }

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

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width:1000px){
  .svc-grid{ grid-template-columns:repeat(2,1fr); }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .about__inner{ grid-template-columns:1fr; max-width:560px; margin-inline:auto; }
  .about__media::before{ inset:12px -12px -12px 12px; }
  .faq__inner{ grid-template-columns:1fr; }
  .faq__head{ position:static; }
  .review-cards{ grid-template-columns:1fr; max-width:560px; margin-inline:auto; }
  .dest-grid{ grid-template-columns:repeat(2,1fr); }
  .dest--tall{ grid-row:span 1; }
  .dest--wide{ grid-column:span 2; }
}

@media (max-width:760px){
  body{ font-size:16px; }
  .nav-toggle{
    display:flex; flex-direction:column; justify-content:center; gap:5px;
    width:46px; height:42px; background:rgba(11,27,46,.4); border:1px solid rgba(251,247,239,.3);
    border-radius:10px; cursor:pointer; margin-left:auto;
  }
  .is-scrolled .nav-toggle{ background:transparent; }
  .nav-toggle span{ width:22px; height:2px; background:var(--ivory); margin-inline:auto; transition:.22s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
  .header-call{ display:none; }
  .nav{
    position:fixed; inset:var(--head-h) 0 auto 0; flex-direction:column; align-items:stretch; gap:0;
    background:rgba(11,27,46,.97); backdrop-filter:blur(12px); padding:.4rem 0;
    box-shadow:var(--shadow); transform:translateY(-12px); opacity:0; pointer-events:none;
    transition:.22s; max-height:calc(100svh - var(--head-h)); overflow:auto;
    border-bottom:1px solid rgba(200,162,76,.25);
  }
  .nav.is-open{ transform:none; opacity:1; pointer-events:auto; }
  .nav a{ padding:.95rem clamp(1.1rem,5vw,2.2rem); border-bottom:1px solid rgba(251,247,239,.08); }
  .nav a::after{ display:none; }
  .brand__sub{ display:none; }
  .call-fab{ display:flex; }
}

/* parallax (background-attachment:fixed) janks on touch/tablets — fall back to scroll */
@media (max-width:1024px){
  .contact__bg{ background-attachment:scroll; }
}

@media (max-width:600px){
  .svc-grid{ grid-template-columns:1fr; max-width:420px; margin-inline:auto; }
  .why-grid{ grid-template-columns:1fr; max-width:420px; margin-inline:auto; }
  .dest-grid{ grid-template-columns:1fr; grid-auto-rows:180px; }
  .dest--wide{ grid-column:span 1; }
  .site-footer__brand, .site-footer__col{ flex:1 1 100%; }
  .site-footer__bar .container{ justify-content:center; text-align:center; }
  .intro__stats{ gap:1.5rem 2.5rem; }
}

@media (max-width:420px){
  .hero__cta, .contact__actions{ flex-direction:column; align-items:stretch; }
  .hero__cta .btn, .contact__actions .btn{ width:100%; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .hero__scroll span{ animation:none; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}
