/* ═══════════════════════════════════════════════════════════
   Your Dream Picnic RD
   Single stylesheet. No preprocessor, no framework.
   Colours are sampled from the official logo so the site and
   the crest sit on exactly the same cream.
   ═══════════════════════════════════════════════════════════ */

:root{
  /* surfaces */
  --ivory:      #FBF7F1;
  --cream:      #F9F0E7;   /* identical to the logo's own background */
  --sand:       #F4EBE0;
  --blush:      #F1DED9;
  --white:      #FFFFFF;

  /* ink */
  --brown:      #4A382D;
  --brown-mid:  #7B6657;
  --brown-soft: #9C8878;

  /* accents */
  --rose:       #B4746D;
  --rose-deep:  #975655;   /* one step darker than the logo rose so it clears 4.5:1 on sand too */
  --gold:       #91602C;   /* deepened from the logo's gold so small caps clear 4.5:1 */
  --gold-soft:  #DCC49C;   /* light gold — for dark backgrounds and hairlines only */
  --gold-line:  #E2D0B4;

  --shadow-sm: 0 2px 10px rgba(74,56,45,.05);
  --shadow-md: 0 14px 40px -18px rgba(74,56,45,.28);
  --shadow-lg: 0 30px 70px -30px rgba(74,56,45,.38);

  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', 'Avenir Next', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius: 3px;
  --wrap: 1160px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.9rem, 9vw, 8.5rem);
  --header-h: 76px;
}

/* ── reset ───────────────────────────────────────────────── */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; scroll-padding-top:calc(var(--header-h) + 12px); }
body{
  margin:0;
  background:var(--ivory);
  color:var(--brown);
  font-family:var(--sans);
  font-weight:300;
  font-size:clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,picture,svg{ display:block; max-width:100%; }
img{ height:auto; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3{ margin:0; font-family:var(--serif); font-weight:300; letter-spacing:.005em; }
p{ margin:0 0 1.15em; }
ul{ margin:0; padding:0; list-style:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }

::selection{ background:var(--blush); color:var(--brown); }

.skip{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--brown); color:var(--cream); padding:.75rem 1.25rem;
}
.skip:focus{ left:.5rem; top:.5rem; }

:focus-visible{ outline:2px solid var(--rose); outline-offset:3px; border-radius:2px; }

/* ── layout helpers ──────────────────────────────────────── */
.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:var(--gutter); }
.wrap--narrow{ max-width:760px; }
.center{ text-align:center; }
.section{ padding-block:var(--section-y); }
.section--sand{ background:var(--sand); }
.section__head{ margin-bottom:clamp(2.75rem, 5vw, 4.25rem); }

/* ── type ────────────────────────────────────────────────── */
h1{ font-size:clamp(2.7rem, 1.6rem + 4.4vw, 4.9rem); line-height:1.04; }
h1 em{ font-style:italic; color:var(--rose); }
h2{ font-size:clamp(2.05rem, 1.4rem + 2.5vw, 3.35rem); line-height:1.1; }
h3{ font-size:clamp(1.35rem, 1.2rem + .55vw, 1.7rem); line-height:1.25; }

.eyebrow{
  margin:0 0 1rem;
  font-size:.7rem; font-weight:400; letter-spacing:.26em; text-transform:uppercase;
  color:var(--gold);
}
.eyebrow .dot{ color:var(--rose); margin-inline:.3em; }

.lede{
  max-width:34em;
  margin-top:clamp(1.35rem, 2.2vw, 1.9rem);
  font-size:clamp(1.05rem, 1rem + .3vw, 1.2rem);
  line-height:1.72;
  color:var(--brown-mid);
}
.body-lg{ font-size:clamp(1.05rem, 1rem + .3vw, 1.18rem); color:var(--brown-mid); }

/* the small ornament under headings: hairline · diamond · hairline */
.rule{
  display:block; width:118px; height:9px; margin:1.6rem auto 1.9rem;
  background:
    linear-gradient(var(--gold-line),var(--gold-line)) left  50%/46px 1px no-repeat,
    linear-gradient(var(--gold-line),var(--gold-line)) right 50%/46px 1px no-repeat;
  position:relative;
}
.rule::after{
  content:""; position:absolute; left:50%; top:50%;
  width:7px; height:7px; margin:-3.5px 0 0 -3.5px;
  background:var(--gold-soft); transform:rotate(45deg);
}
.rule--left{ margin-inline:0; }

/* ── buttons ─────────────────────────────────────────────── */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  padding:1.02em 1.9em;
  font-family:var(--sans); font-size:.775rem; font-weight:400;
  letter-spacing:.15em; text-transform:uppercase; line-height:1;
  border:1px solid transparent; border-radius:var(--radius);
  cursor:pointer;
  transition:background .35s ease, color .35s ease, border-color .35s ease,
             transform .35s ease, box-shadow .35s ease;
}
.btn .ico{ width:1.05em; height:1.05em; fill:currentColor; flex:none; }
.btn--sm{ padding:.85em 1.35em; font-size:.7rem; letter-spacing:.12em; }

.btn--primary{ background:var(--rose-deep); color:var(--cream); box-shadow:var(--shadow-md); }
.btn--primary:hover{ background:#89504D; transform:translateY(-2px); box-shadow:var(--shadow-lg); }

.btn--ghost{ border-color:var(--gold-line); color:var(--brown); background:transparent; }
.btn--ghost:hover{ border-color:var(--gold); background:rgba(145,96,44,.07); transform:translateY(-2px); }

.btn--outline{ border-color:var(--brown-soft); color:var(--brown); }
.btn--outline:hover{ background:var(--brown); color:var(--cream); border-color:var(--brown); transform:translateY(-2px); }

.btn--light{ background:rgba(251,247,241,.14); color:var(--cream); border-color:rgba(251,247,241,.5); backdrop-filter:blur(4px); }
.btn--light:hover{ background:var(--cream); color:var(--brown); transform:translateY(-2px); }

.btn-row{ display:flex; flex-wrap:wrap; gap:.85rem; margin-top:2.1rem; }
.btn-row--center{ justify-content:center; }

.link-cta{
  display:inline-flex; align-items:center; gap:.5em;
  margin-top:.35rem;
  font-size:.73rem; font-weight:400; letter-spacing:.16em; text-transform:uppercase;
  color:var(--rose-deep);
  border-bottom:1px solid var(--gold-line); padding-bottom:.4em;
  transition:color .3s ease, border-color .3s ease, gap .3s ease;
}
.link-cta::after{ content:"→"; font-size:1.05em; letter-spacing:0; }
.link-cta:hover{ color:var(--brown); border-color:var(--rose); gap:.85em; }

/* ── header ──────────────────────────────────────────────── */
.site-header{
  position:sticky; top:0; z-index:100;
  background:var(--ivory);
  border-bottom:1px solid transparent;
  transition:background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.site-header.is-stuck{
  background:rgba(251,247,241,.92);
  backdrop-filter:blur(12px) saturate(1.1);
  border-bottom-color:var(--gold-line);
  box-shadow:var(--shadow-sm);
}
.site-header__inner{
  min-height:var(--header-h);
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem;
}

.brand{ display:flex; align-items:center; gap:.75rem; flex:none; }
.brand__mark{ width:46px; height:46px; border-radius:50%; }
.brand__text{ display:flex; flex-direction:column; line-height:1.15; }
.brand__name{
  font-family:var(--serif); font-size:1.32rem; letter-spacing:.045em; color:var(--brown);
}
.brand__tag{
  font-size:.545rem; letter-spacing:.24em; text-transform:uppercase; color:var(--gold);
  margin-top:.18em;
}

.nav{ display:flex; align-items:center; gap:clamp(1.1rem, 2.2vw, 2.1rem); }
.nav > a:not(.btn){
  font-size:.735rem; font-weight:400; letter-spacing:.16em; text-transform:uppercase;
  color:var(--brown-mid); position:relative; padding-block:.35rem;
  transition:color .3s ease;
}
.nav > a:not(.btn)::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:1px;
  background:var(--rose); transition:width .35s ease;
}
.nav > a:not(.btn):hover{ color:var(--brown); }
.nav > a:not(.btn):hover::after{ width:100%; }
.nav__ig{ display:inline-flex; align-items:center; gap:.45em; }
.nav__ig .ico{ width:1.05rem; height:1.05rem; fill:currentColor; }

.burger{ display:none; width:44px; height:44px; padding:10px; flex:none; }
.burger span{
  display:block; height:1px; background:var(--brown); border-radius:1px;
  transition:transform .35s ease, opacity .25s ease;
}
.burger span + span{ margin-top:6px; }
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ── hero ─────────────────────────────────────────────────
   Full-bleed sunset photograph with the copy over a scrim. The header stays a
   solid ivory bar above it so the detailed crest never sits on the photo. */
.hero{
  position:relative; isolation:isolate; overflow:hidden;
  display:grid; align-items:end;                    /* phones: copy at the foot */
  min-height:min(86vh, 680px);
  padding-block:clamp(5rem, 18vw, 9rem) clamp(2.75rem, 9vw, 4rem);
  background:#4A382D;                               /* holds the colour while the photo decodes */
}
.hero__bg{ position:absolute; inset:0; z-index:-2; }
.hero__bg img{
  width:100%; height:100%; object-fit:cover;
  object-position:center 58%;
}
/* Bottom-up scrim on phones. It has to carry a lot here: the photo is bright
   warm sand and sky end to end, so the copy needs real cover rather than a
   token wash — the top quarter is left clear to keep the sky. */
.hero::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(to top,
    rgba(44,27,20,.88) 0%,  rgba(44,27,20,.85) 40%,
    rgba(44,27,20,.81) 66%, rgba(44,27,20,.66) 86%,
    rgba(44,27,20,.30) 100%);
}
.hero__inner{ width:100%; }
.hero__copy{
  max-width:34rem;
  /* A soft shadow does the close-in legibility work so the scrim can stay
     light enough to leave the photograph looking like a photograph. */
  text-shadow:0 1px 2px rgba(40,24,17,.42), 0 2px 26px rgba(40,24,17,.55);
}

.hero .eyebrow{ color:#F3E2C8; }
.hero .eyebrow .dot{ color:var(--blush); }
.hero h1{ color:var(--cream); text-wrap:balance; }
.hero h1 em{ color:#F8DDD5; }
.hero .lede{ color:rgba(249,240,231,.95); }
.hero__note{
  margin:1.6rem 0 0;
  font-size:.82rem; letter-spacing:.05em; color:rgba(249,240,231,.84);
}
.hero .btn{ text-shadow:none; }

@media (min-width:900px){
  .hero{
    align-items:center;
    min-height:min(86vh, 740px);
    padding-block:clamp(4rem, 8vw, 7rem);
  }
  .hero__bg img{ object-position:center 62%; }
  .hero::after{      /* left-to-right on desktop, leaving the sunset uncovered */
    background:linear-gradient(to right,
      rgba(44,27,20,.86) 0%,  rgba(44,27,20,.76) 30%,
      rgba(44,27,20,.52) 48%, rgba(44,27,20,.22) 66%,
      rgba(44,27,20,.04) 82%, transparent 92%);
  }
}

/* ── experience cards ────────────────────────────────────── */
.cards{
  display:grid; gap:clamp(1.6rem, 3vw, 2.6rem);
  grid-template-columns:1fr;
}
@media (min-width:700px){ .cards{ grid-template-columns:1fr 1fr; } }

.card{
  background:var(--white);
  border:1px solid var(--gold-line);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex; flex-direction:column;
  transition:transform .5s cubic-bezier(.22,.7,.3,1), box-shadow .5s ease, border-color .5s ease;
}
.card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:var(--gold-soft); }
.card__media{ overflow:hidden; background:var(--sand); }
.card__media img{
  /* aspect-ratio lives on the image, not the wrapper: as a column flex item the
     wrapper would take its height from the image's intrinsic size instead. */
  width:100%; height:auto; aspect-ratio:4/3; object-fit:cover;
  /* --pos is set per card so the subject survives the crop, not the sky */
  object-position:var(--pos, center);
  transition:transform 1.1s cubic-bezier(.22,.7,.3,1);
}
.card:hover .card__media img{ transform:scale(1.045); }
.card__body{
  padding:clamp(1.6rem, 3vw, 2.3rem);
  display:flex; flex-direction:column; align-items:flex-start; gap:.55rem;
  flex:1;
}
.card__body p{ color:var(--brown-mid); margin:0 0 .7rem; }

/* ── gallery ─────────────────────────────────────────────── */
.gallery{ display:flex; flex-direction:column; gap:clamp(.55rem, 1.2vw, .95rem); }
.gal-band{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(.55rem, 1.2vw, .95rem);
}
.gal{ margin:0; overflow:hidden; border-radius:var(--radius); background:var(--blush); }
.gal img{
  width:100%; height:100%; object-fit:cover;
  transition:transform 1.2s cubic-bezier(.22,.7,.3,1);
}
.gal:hover img{ transform:scale(1.04); }
.gal picture{ display:block; height:100%; }

/* small screens: a tidy two-up grid — square tiles so rows never end ragged,
   with the first image of each three-image band running full width */
.gal{ aspect-ratio:1; }
.gal-band--3 > .gal:first-child{ grid-column:1 / -1; aspect-ratio:16/11; }

/* wide screens: one flush justified row per band, nothing cropped */
@media (min-width:760px){
  .gal-band{
    display:flex;
    aspect-ratio:var(--sum);
  }
  .gal{ flex:var(--ar) 1 0; aspect-ratio:auto; min-width:0; }
  .gal-band--3 > .gal:first-child{ aspect-ratio:auto; }
}

/* ── split sections (welcome / includes / add-ons) ───────────
   One shared two-column shell: image on one side, copy on the other.
   .split--rev puts the image second on wide screens; on phones the image
   always comes first because that is the order in the markup. */
.split{
  display:grid; gap:clamp(2.25rem, 5vw, 4.5rem);
  grid-template-columns:1fr; align-items:center;
}
@media (min-width:880px){
  .split{ grid-template-columns:.82fr 1fr; }
  .split--rev{ grid-template-columns:1fr .82fr; }
  .split--rev > :first-child{ order:2; }
}
.split figure{ margin:0; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-md); }
.split figure img{ width:100%; height:auto; aspect-ratio:4/5; object-fit:cover; }
.split .copy p{ color:var(--brown-mid); max-width:38em; }

/* welcome */
.welcome__inner{
  display:grid; gap:clamp(2.25rem, 5vw, 4.5rem);
  grid-template-columns:1fr; align-items:center;
}
@media (min-width:880px){ .welcome__inner{ grid-template-columns:.78fr 1fr; } }
.welcome__media{ margin:0; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-md); }
.welcome__media img{ width:100%; height:auto; aspect-ratio:4/5; object-fit:cover; }
.welcome__copy p{ color:var(--brown-mid); max-width:40em; }
/* Two stacked block lines rather than flex items: flex strips the whitespace
   between them, so the pair copied and read back as "You arrive.We create the
   magic." with no separator. */
.signature{
  margin-top:1.9rem;
  font-family:var(--serif); color:var(--brown);
}
.signature span{
  display:block;
  font-size:.72rem; letter-spacing:.28em; text-transform:uppercase;
  font-family:var(--sans); color:var(--gold);
}
.signature em{
  display:block; margin-top:.55rem;
  font-style:italic; font-size:clamp(1.5rem, 1.2rem + 1.1vw, 2.1rem);
  line-height:1.15; color:var(--rose-deep);
}

/* ── our experiences ─────────────────────────────────────── */
.exp__lede{ max-width:46ch; margin-inline:auto; margin-bottom:0; }
.exp-grid{
  display:grid; gap:clamp(1rem, 2vw, 1.4rem);
  grid-template-columns:1fr 1fr;
}
@media (min-width:900px){ .exp-grid{ grid-template-columns:repeat(4,1fr); } }
.exp-grid a{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  height:100%; padding:clamp(1.5rem, 3vw, 2.1rem) clamp(.9rem, 2vw, 1.4rem);
  background:var(--white); border:1px solid var(--gold-line); border-radius:var(--radius);
  transition:transform .45s cubic-bezier(.22,.7,.3,1), box-shadow .45s ease, border-color .45s ease;
}
.exp-grid a:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--gold-soft); }
.exp__ico{
  width:44px; height:44px; margin-bottom:1rem;
  fill:none; stroke:var(--gold); stroke-width:1.15;
  stroke-linecap:round; stroke-linejoin:round;
}
.exp__ico--fill{ fill:var(--gold); stroke:none; }
.exp-grid h3{ font-size:clamp(1.15rem, 1.05rem + .4vw, 1.42rem); margin-bottom:.35rem; }
.exp-grid p{ margin:0 0 1rem; font-size:.9rem; color:var(--brown-mid); }
.exp__from{
  margin-top:auto; font-size:.68rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--rose-deep);
}

/* ── packages ────────────────────────────────────────────── */
.pkgs{ display:flex; flex-direction:column; gap:clamp(1.6rem, 3.5vw, 2.6rem); }
.pkg{
  display:grid; grid-template-columns:1fr;
  background:var(--white); border:1px solid var(--gold-line);
  border-radius:var(--radius); overflow:hidden;
  scroll-margin-top:calc(var(--header-h) + 20px);
}
@media (min-width:700px){
  .pkg{ grid-template-columns:.62fr 1fr; align-items:stretch; }
  .pkg--flip > .pkg__media{ order:2; }
}
.pkg__media{ margin:0; overflow:hidden; background:var(--sand); }
.pkg__media picture{ display:block; height:100%; }
.pkg__media img{
  width:100%; height:100%; object-fit:cover;
  aspect-ratio:1;
  transition:transform 1.1s cubic-bezier(.22,.7,.3,1);
}
/* Between a phone and the side-by-side layout the card is wide but still
   stacked, so a square photo would run to ~700px tall. Landscape it. */
@media (min-width:500px) and (max-width:699px){ .pkg__media img{ aspect-ratio:3/2; } }
/* Once the card is side-by-side the photo column stretches to whatever height
   the menu needs, so the ratio is dropped and the image just fills its cell. */
@media (min-width:700px){ .pkg__media img{ aspect-ratio:auto; } }
.pkg:hover .pkg__media img{ transform:scale(1.035); }

.pkg__body{ padding:clamp(1.6rem, 3.2vw, 2.6rem); }
.pkg__body h3{ font-size:clamp(1.6rem, 1.35rem + .9vw, 2.15rem); }
.pkg__tag{
  margin:.3rem 0 1.2rem;
  font-family:var(--serif); font-style:italic;
  font-size:clamp(1.02rem, .95rem + .3vw, 1.18rem); color:var(--rose-deep);
}
.pkg__for{
  display:flex; flex-wrap:wrap; gap:.4rem; margin-bottom:1.4rem;
}
.pkg__for li{
  padding:.4em .85em; border:1px solid var(--gold-line); border-radius:999px;
  font-size:.65rem; letter-spacing:.16em; text-transform:uppercase; color:var(--brown-mid);
}
.pkg__choose{
  margin:0 0 1rem; font-size:.68rem; letter-spacing:.2em;
  text-transform:uppercase; color:var(--gold);
}
/* ── package menu, collapsed on phones ───────────────────────
   A button + aria-expanded rather than <details>: above 760px the collapse
   rules do not exist at all, so a menu can never be hidden on desktop, and
   with scripting off the toggle never appears and everything stays open. */
.pkg__toggle{
  display:none; width:100%; align-items:center; justify-content:space-between;
  gap:1rem; padding:1.05rem 0; margin-top:.2rem;
  border-top:1px solid var(--gold-line);
  font-family:var(--sans); font-size:.7rem; font-weight:400;
  letter-spacing:.18em; text-transform:uppercase; color:var(--gold);
  text-align:left; cursor:pointer;
}
.js .pkg__toggle{ display:flex; }
.pkg__toggle::after{
  content:""; flex:none; width:8px; height:8px;
  border-right:1px solid currentColor; border-bottom:1px solid currentColor;
  transform:translateY(-2px) rotate(45deg);
  transition:transform .35s ease;
}
.pkg__toggle[aria-expanded="true"]::after{ transform:translateY(2px) rotate(-135deg); }

@media (max-width:699px){
  .js .pkg__toggle[aria-expanded="false"]{ border-bottom:1px solid var(--gold-line); }
  .js .pkg__toggle[aria-expanded="false"] + .pkg__menu{ display:none; }
  /* the toggle already draws the rule above the menu */
  .js .pkg__toggle + .pkg__menu{ border-top:0; padding-top:.35rem; }
}
@media (min-width:700px){ .js .pkg__toggle{ display:none; } }

.pkg__menu{
  display:grid; gap:1.1rem 2rem; grid-template-columns:1fr;
  padding-block:1.35rem; border-block:1px solid var(--gold-line);
}
/* Two columns only when the menu column is genuinely wide enough: full-width
   while the card is stacked, then single again in the narrow side-by-side band. */
@media (min-width:560px){ .pkg__menu{ grid-template-columns:1fr 1fr; } }
@media (min-width:700px) and (max-width:999px){ .pkg__menu{ grid-template-columns:1fr; } }
@media (min-width:1000px){ .pkg__menu{ grid-template-columns:1fr 1fr; } }
.pkg__group h4{
  margin:0 0 .4rem;
  font-family:var(--sans); font-weight:400;
  font-size:.66rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold);
}
.pkg__group ul{ display:flex; flex-direction:column; gap:.18rem; }
.pkg__group li{
  font-size:.925rem; line-height:1.5; color:var(--brown-mid);
  padding-left:.95em; position:relative;
}
.pkg__group li::before{
  content:""; position:absolute; left:0; top:.62em;
  width:4px; height:4px; background:var(--gold-soft); transform:rotate(45deg);
}
.pkg__extra{
  margin:1.1rem 0 0; font-size:.9rem; font-style:italic; color:var(--brown-mid);
}
.pkg__price{ margin-top:1.4rem; }
.pkg__from{
  margin:0 0 .6rem;
  font-size:.7rem; letter-spacing:.18em; text-transform:uppercase; color:var(--brown-mid);
}
.pkg__from b{ font-weight:400; color:var(--rose-deep); font-size:1.05rem; letter-spacing:.06em; }
.pkg__price ul{ display:flex; flex-wrap:wrap; gap:.4rem .55rem; }
.pkg__price li{
  display:flex; align-items:baseline; gap:.45em;
  padding:.5em .9em; background:var(--sand); border-radius:2px;
  font-size:.78rem; color:var(--brown-mid);
}
.pkg__price b{ font-weight:400; color:var(--brown); white-space:nowrap; }
.pkg__body .btn{ margin-top:1.6rem; }

/* ── every experience includes ───────────────────────────── */
.includes__inner,
.addons__inner{
  display:grid; gap:clamp(2.25rem, 5vw, 4.5rem);
  grid-template-columns:1fr; align-items:center;
}
@media (min-width:880px){
  .includes__inner{ grid-template-columns:1fr .84fr; }
  .addons__inner{ grid-template-columns:.84fr 1fr; }
}
.includes__media,
.addons__media{ margin:0; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-md); }
.includes__media img,
.addons__media img{ width:100%; height:auto; aspect-ratio:4/3; object-fit:cover; }

.checks{ display:flex; flex-direction:column; gap:.2rem; margin-top:.4rem; }
.checks li{
  display:flex; align-items:flex-start; gap:.9rem;
  padding:.85rem 0; border-bottom:1px solid var(--gold-line);
  font-size:clamp(1rem, .96rem + .2vw, 1.08rem); color:var(--brown);
}
.checks li:last-child{ border-bottom:0; }
.checks svg{
  flex:none; width:20px; height:20px; margin-top:.28em;
  fill:none; stroke:var(--gold); stroke-width:2;
  stroke-linecap:round; stroke-linejoin:round;
}

/* ── luxury add-ons ──────────────────────────────────────── */
.addon-list{
  display:grid; gap:.15rem; grid-template-columns:1fr;
  margin-top:.4rem;
}
@media (min-width:560px) and (max-width:879px){ .addon-list{ grid-template-columns:1fr 1fr; gap:.15rem 1.5rem; } }
.addon-list li{
  padding:.78rem 0 .78rem 1.5rem; position:relative;
  border-bottom:1px solid var(--gold-line);
  font-size:clamp(1rem, .96rem + .2vw, 1.06rem); color:var(--brown);
}
.addon-list li::before{
  content:""; position:absolute; left:.2rem; top:1.32em;
  width:6px; height:6px; background:var(--gold-soft); transform:rotate(45deg);
}
.addons__note{
  margin:1.3rem 0 0; font-family:var(--serif); font-style:italic;
  font-size:1.1rem; color:var(--rose-deep);
}
.addons__copy .btn{ margin-top:1.3rem; }

/* ── booking information ─────────────────────────────────── */
.booking-grid{
  display:grid; gap:clamp(2rem, 4vw, 3rem); grid-template-columns:1fr;
}
@media (min-width:760px){ .booking-grid{ grid-template-columns:repeat(3,1fr); } }
.booking-grid li{ display:grid; justify-items:center; align-content:start; text-align:center; }
@supports (grid-template-rows: subgrid){
  .booking-grid li{ grid-row:span 3; grid-template-rows:subgrid; row-gap:0; }
}
.booking__ico{
  width:50px; height:50px; margin-bottom:1.1rem;
  fill:none; stroke:var(--gold); stroke-width:1.15;
  stroke-linecap:round; stroke-linejoin:round;
}
.booking-grid h3{ margin-bottom:.6rem; }
.booking-grid p{ margin:0; max-width:30ch; color:var(--brown-mid); font-size:.97rem; }
.booking-grid b{ font-weight:400; color:var(--brown); }
.booking-grid em{ font-style:italic; }
.booking__close{
  margin:clamp(2.75rem, 5vw, 4rem) 0 0; text-align:center;
  font-family:var(--serif); font-style:italic;
  font-size:clamp(1.3rem, 1.1rem + .8vw, 1.75rem); color:var(--rose-deep);
}

/* ── faq ─────────────────────────────────────────────────── */
.faq-list{ display:flex; flex-direction:column; }
.faq-list li{
  display:flex; gap:clamp(.9rem, 2vw, 1.35rem); align-items:flex-start;
  padding:clamp(1.35rem, 3vw, 1.85rem) 0;
  border-bottom:1px solid var(--gold-line);
}
.faq-list li:first-child{ border-top:1px solid var(--gold-line); }
.faq__mark{
  flex:none; display:grid; place-items:center;
  width:34px; height:34px; margin-top:.1rem;
  border:1px solid var(--gold-soft); border-radius:50%;
  font-family:var(--serif); font-size:1.05rem; color:var(--gold);
}
.faq-list h3{ font-size:clamp(1.15rem, 1.05rem + .45vw, 1.4rem); margin-bottom:.4rem; }
.faq__a{ margin:0; color:var(--brown); }
.faq__note{ margin:.15rem 0 0; font-style:italic; color:var(--brown-mid); font-size:.95rem; }
.faq__more{
  margin:clamp(2rem, 4vw, 2.75rem) 0 0; text-align:center;
  font-size:.97rem; color:var(--brown-mid);
}
.faq__more a{ color:var(--rose-deep); border-bottom:1px solid var(--gold-line); padding-bottom:.15em; }
.faq__more a:hover{ border-color:var(--rose); color:var(--brown); }

/* ── instagram ───────────────────────────────────────────── */
.instagram{ background:linear-gradient(180deg,var(--ivory),var(--blush)); }
.ig-card{
  background:var(--white);
  border:1px solid var(--gold-line);
  border-radius:var(--radius);
  padding:clamp(2.5rem, 6vw, 4.25rem) clamp(1.5rem, 5vw, 3.5rem);
  box-shadow:var(--shadow-md);
}
.ig-card__mark{ width:96px; height:96px; margin:0 auto 1.6rem; border-radius:50%; }
.ig-card h2{ margin-bottom:.4rem; }
.handle{
  font-family:var(--serif); font-style:italic;
  font-size:clamp(1.3rem, 1.1rem + .8vw, 1.75rem);
  color:var(--rose-deep); margin-bottom:1.4rem;
}
.ig-card .body-lg{ max-width:44ch; margin-inline:auto; }
.ig-card .btn{ margin-top:1.1rem; }

/* ── final cta ───────────────────────────────────────────── */
.cta-section{ padding-top:0; }
.cta{
  position:relative; isolation:isolate;
  border-radius:var(--radius); overflow:hidden;
  display:grid; place-items:center;
  min-height:clamp(24rem, 52vw, 33rem);
  padding:clamp(3.25rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  text-align:center;
  box-shadow:var(--shadow-lg);
}
.cta__bg{
  position:absolute; inset:0; z-index:-2;
  width:100%; height:100%; object-fit:cover; object-position:center 62%;
}
/* The sunset picnic behind this band is bright and warm end to end, so the
   scrim carries more weight here than a darker photo would need. */
.cta::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(38,25,18,.72), rgba(38,25,18,.84));
}
.cta__body{
  max-width:44ch; color:var(--cream);
  text-shadow:0 1px 2px rgba(38,25,18,.40), 0 2px 22px rgba(38,25,18,.50);
}
.cta__body .eyebrow{ color:#EFDCB8; }
.cta__body h2{ margin-bottom:1rem; }
.cta__body p{ color:rgba(249,240,231,.93); }
.cta__body .btn{ text-shadow:none; }

/* ── footer ──────────────────────────────────────────────── */
.site-footer{ background:#413026; color:var(--cream); padding-block:clamp(3.25rem,6vw,4.75rem) 2rem; }
.site-footer__inner{
  display:grid; gap:clamp(2.25rem,5vw,3.5rem); align-items:center;
  grid-template-columns:1fr; justify-items:center; text-align:center;
}
@media (min-width:860px){
  .site-footer__inner{ grid-template-columns:auto 1fr auto; justify-items:start; text-align:left; }
  .site-footer__links{ justify-content:center; }
}
.site-footer__brand img{ width:84px; height:84px; border-radius:50%; margin-bottom:1rem; }
@media (min-width:860px){ .site-footer__brand img{ margin-inline:0; } }
.site-footer__name{
  font-family:var(--serif); font-size:1.5rem; letter-spacing:.04em; margin:0;
}
.site-footer__name span{ color:var(--gold-soft); }
.site-footer__tag{
  font-size:.6rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold-soft); margin:.35rem 0 .5rem;
}
.site-footer__loc{ font-size:.9rem; color:rgba(249,240,231,.7); margin:0; }

.site-footer__links{ display:flex; flex-wrap:wrap; gap:.5rem 1.75rem; justify-content:center; }
.site-footer__links a{
  font-size:.74rem; letter-spacing:.15em; text-transform:uppercase;
  color:rgba(249,240,231,.78); transition:color .3s ease;
}
.site-footer__links a:hover{ color:var(--gold-soft); }

.site-footer .btn--primary{ background:var(--rose); color:#2E211A; }
.site-footer .btn--primary:hover{ background:var(--gold-soft); }

.site-footer__legal{
  margin:clamp(2.5rem,5vw,3.5rem) 0 0; text-align:center;
  font-size:.72rem; letter-spacing:.09em; color:rgba(249,240,231,.62);
}

/* ── floating whatsapp (small screens) ───────────────────── */
.fab{
  position:fixed; z-index:90;
  right:1rem; bottom:calc(1rem + env(safe-area-inset-bottom));
  width:56px; height:56px; border-radius:50%;
  display:none; place-items:center;
  background:var(--rose-deep); color:var(--cream);
  box-shadow:0 10px 28px -8px rgba(74,56,45,.6);
  transition:transform .35s ease, background .35s ease;
}
.fab svg{ width:27px; height:27px; fill:currentColor; }
.fab:hover,.fab:active{ transform:scale(1.06); background:#89504D; }

/* ── reveal animation ─────────────────────────────────────
   Scoped to .js so that with scripting off nothing is ever hidden.
   main.js also reveals everything if anything in it throws.        */
.js [data-reveal]{
  opacity:0; transform:translateY(20px);
  transition:opacity .9s cubic-bezier(.22,.7,.3,1) var(--d,0s),
             transform .9s cubic-bezier(.22,.7,.3,1) var(--d,0s);
}
.js [data-reveal].is-in{ opacity:1; transform:none; }

/* ═══ small screens ═══ */
@media (max-width:899px){
  .fab{ display:grid; }
  .site-footer{ padding-bottom:6rem; }

  .burger{ display:block; }
  .nav{
    position:absolute; left:0; right:0; top:100%;
    flex-direction:column; align-items:stretch; gap:0;
    background:rgba(251,247,241,.98);
    backdrop-filter:blur(12px);
    border-bottom:1px solid var(--gold-line);
    padding:.5rem var(--gutter) 1.5rem;
    box-shadow:var(--shadow-md);
    /* collapsed */
    opacity:0; visibility:hidden; transform:translateY(-8px);
    transition:opacity .3s ease, transform .3s ease, visibility .3s;
  }
  .nav.is-open{ opacity:1; visibility:visible; transform:none; }
  .nav > a{
    padding:1rem 0; font-size:.8rem; letter-spacing:.18em;
    border-bottom:1px solid rgba(226,208,180,.5);
  }
  .nav > a:not(.btn)::after{ display:none; }
  .nav__ig{ justify-content:flex-start; }
  .nav .btn{ margin-top:1.15rem; width:100%; padding-block:1.05em; font-size:.75rem; }
  .brand__tag{ display:none; }
}

@media (max-width:400px){
  .brand__name{ font-size:1.15rem; }
  .brand__mark{ width:40px; height:40px; }
  .btn{ padding:1em 1.5em; font-size:.72rem; }
  .btn-row .btn{ width:100%; }
}

/* ── reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.01ms !important; animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
  [data-reveal]{ opacity:1; transform:none; }
}

/* ── print ───────────────────────────────────────────────── */
@media print{
  .site-header,.fab,.btn{ display:none !important; }
  body{ background:#fff; }
}
