/* Private Jet Villa — event & wedding landings.
   Mobile first: base rules are the phone layout, media queries only ever scale up.
   Light throughout — no dark sections; contrast comes from full-bleed photography. */

@font-face {
  font-family: "Giveaway";
  src: url("../assets/fonts/Giveaway.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-Variable.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --paper: #fbf8f4;
  --paper-2: #f3ede5;
  --card: #ffffff;
  --ink: #241e1a;
  --muted: #7a6f66;
  --taupe: #977d70;
  --taupe-d: #7a6156;
  --sand: #d9c3ae;
  --line: rgba(36, 30, 26, .14);
  --gut: 20px;
  --sec: 56px;
  --radius: 3px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.6 "Manrope", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------- type ---------- */
.display {
  font-family: "Giveaway", "Didot", Georgia, serif;
  font-weight: 400;
  letter-spacing: .015em;
  line-height: 1.08;
  margin: 0;
}
h1.display { font-size: 38px; }
h2.display { font-size: 30px; }
h3.display { font-size: 23px; }

.eyebrow {
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--taupe);
  margin: 0 0 14px;
}
.lede { font-size: 17px; line-height: 1.55; color: var(--muted); }
.small { font-size: 13.5px; line-height: 1.5; color: var(--muted); }
p { margin: 0 0 14px; }
.center { text-align: center; }

/* ---------- layout ---------- */
.wrap { width: calc(100% - var(--gut) * 2); max-width: 1240px; margin-inline: auto; }
.narrow { max-width: 760px; }
.section { padding: var(--sec) 0; }
.section--tight { padding: 36px 0; }
.tint { background: var(--paper-2); }

/* ---------- media ---------- */
.media { position: relative; overflow: hidden; background: var(--paper-2); border-radius: var(--radius); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.r-32 { aspect-ratio: 3 / 2; }
.r-43 { aspect-ratio: 4 / 3; }
.r-11 { aspect-ratio: 1 / 1; }
.r-45 { aspect-ratio: 4 / 5; }

/* full-bleed photo / video band — the page's main source of contrast */
.band { position: relative; height: 60vw; max-height: 620px; min-height: 260px; overflow: hidden; background: var(--paper-2); }
.band img, .band video { width: 100%; height: 100%; object-fit: cover; }
.band__cap {
  position: absolute; left: var(--gut); bottom: 16px; color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .55);
}
.band__cap .eyebrow { color: rgba(255, 255, 255, .92); margin: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 24px; border: 0; border-radius: var(--radius); cursor: pointer;
  font: 600 13px/1 "Manrope", sans-serif; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; transition: background .2s ease, color .2s ease, transform .2s ease;
}
.btn--primary { background: var(--taupe); color: #fff; }
.btn--primary:hover { background: var(--taupe-d); }
.btn--wa { background: #25d366; color: #fff; }
.btn--wa:hover { background: #1eb457; }
.btn--lg { padding: 18px 28px; font-size: 14px; }
.btn svg { width: 16px; height: 16px; flex: none; }

/* ---------- header ---------- */
.site-head {
  position: absolute; inset: 0 0 auto; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 16px var(--gut);
}
.site-head__logo { height: 32px; width: auto; }
.site-head__right { display: flex; align-items: center; gap: 14px; }
.site-head a.link { display: none; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; color: #fff; opacity: .85; }
.site-head a.link:hover { opacity: 1; }
.site-head .btn { padding: 12px 18px; font-size: 11.5px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img, .hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,16,.5) 0%, rgba(20,17,16,.1) 30%, rgba(20,17,16,.8) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 84px 0 28px; width: 100%; }
.hero h1 { max-width: 15ch; text-shadow: 0 2px 40px rgba(0,0,0,.35); }
.hero .eyebrow { color: rgba(255,255,255,.92); text-shadow: 0 1px 16px rgba(0,0,0,.55); }
.hero .lede { color: rgba(255,255,255,.9); max-width: 46ch; margin-top: 14px; font-size: 15.5px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero__cta .btn { flex: 1 1 100%; }

.trust { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; margin-top: 20px; }
.trust__item { display: flex; align-items: baseline; gap: 7px; font-size: 13px; }
.trust__score { font-weight: 700; font-size: 18px; }
.trust__label { opacity: .8; }
.trust__sep { display: none; width: 1px; height: 20px; background: rgba(255,255,255,.25); }
.stars { color: var(--sand); letter-spacing: .08em; font-size: 13px; }

/* ---------- showcase gallery (first block under the hero) ---------- */
.shots-sec { padding: 30px 0 10px; }
.shots-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.shots-nav { display: none; gap: 8px; }
.shots-nav button {
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--paper-2); color: var(--ink); font-size: 15px; line-height: 1;
  transition: background .2s ease;
}
.shots-nav button:hover { background: var(--sand); }

.shots {
  display: grid; grid-auto-flow: column; grid-auto-columns: 84%;
  gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
  margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut);
  scroll-padding-left: var(--gut); scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.shots::-webkit-scrollbar { display: none; }
.shot {
  scroll-snap-align: start; position: relative; overflow: hidden; cursor: zoom-in;
  aspect-ratio: 4 / 5; border-radius: var(--radius); background: var(--paper-2);
  border: 0; padding: 0; width: 100%; display: block;
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.shot:hover img { transform: scale(1.035); }
.shot__n {
  position: absolute; left: 12px; bottom: 11px; color: #fff;
  font: 600 10.5px/1 "Manrope", sans-serif; letter-spacing: .18em;
  text-shadow: 0 1px 12px rgba(0,0,0,.7);
}

/* ---------- lightbox ---------- */
.lb {
  position: fixed; inset: 0; z-index: 80; display: none;
  align-items: center; justify-content: center; background: #141110;
}
.lb--on { display: flex; }
.lb img { max-width: 94vw; max-height: 76vh; object-fit: contain; }
.lb__cap {
  position: absolute; left: 16px; right: 16px; bottom: calc(20px + env(safe-area-inset-bottom));
  text-align: center; color: rgba(255,255,255,.82); font-size: 13.5px; line-height: 1.5;
}
.lb__cap b { display: block; color: rgba(255,255,255,.5); font-weight: 600; font-size: 11px; letter-spacing: .2em; margin-bottom: 6px; }
.lb button {
  position: absolute; border: 0; cursor: pointer; color: #fff; background: rgba(255,255,255,.13);
  border-radius: 50%; width: 46px; height: 46px; font-size: 19px; line-height: 1;
  backdrop-filter: blur(6px); transition: background .2s ease;
}
.lb button:hover { background: rgba(255,255,255,.26); }
.lb__x { top: 14px; right: 14px; }
.lb__prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lb__next { right: 10px; top: 50%; transform: translateY(-50%); }

/* ---------- press marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 14px 0; }
.marquee__track { display: flex; gap: 40px; width: max-content; animation: slide 26s linear infinite; }
.marquee span {
  font-family: "Giveaway", Georgia, serif; font-size: 19px; letter-spacing: .06em;
  color: var(--muted); white-space: nowrap;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- horizontal rail (mobile) → grid (desktop) ---------- */
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: 78%;
  gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut);
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }

/* ---------- facts ---------- */
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.facts > div { background: var(--paper-2); padding: 20px 16px; }
.facts b { display: block; font-family: "Giveaway", Georgia, serif; font-size: 32px; font-weight: 400; line-height: 1; margin-bottom: 8px; }
.facts span { font-size: 12.5px; color: var(--muted); }

/* ---------- cards / lists ---------- */
.cards { display: grid; gap: 22px; }
.card .media { margin-bottom: 14px; }
.card h3 { margin: 0 0 6px; font-size: 18px; }
.card p { margin: 0; }

.ruled { list-style: none; padding: 0; margin: 20px 0 0; }
.ruled li { padding: 13px 0; border-top: 1px solid var(--line); font-size: 15.5px; }

.incl { display: grid; gap: 0; }
.incl > div { padding: 17px 0; border-top: 1px solid var(--line); }
.incl h4 { margin: 0 0 5px; font-size: 15.5px; font-weight: 700; }
.incl p { margin: 0; font-size: 14px; color: var(--muted); }

/* ---------- steps ---------- */
.steps { display: grid; gap: 22px; }
.steps .media { margin-bottom: 12px; }
.steps .n { font-size: 11px; letter-spacing: .22em; color: var(--taupe); display: block; margin-bottom: 5px; }
.steps h4 { margin: 0 0 5px; font-size: 16px; font-weight: 700; }
.steps p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ---------- occasion switcher ---------- */
.occ__tabs {
  display: flex; gap: 7px; margin-bottom: 22px; overflow-x: auto;
  margin-inline: calc(var(--gut) * -1); padding: 0 var(--gut) 4px;
  scrollbar-width: none;
}
.occ__tabs::-webkit-scrollbar { display: none; }
.occ__tab {
  flex: none; border: 0; background: transparent; cursor: pointer; padding: 10px 16px; border-radius: 100px;
  font: 600 12px/1 "Manrope", sans-serif; letter-spacing: .09em; text-transform: uppercase;
  color: var(--muted); box-shadow: inset 0 0 0 1px var(--line); transition: all .2s ease;
}
.occ__tab[aria-selected="true"] { background: var(--ink); color: #fff; box-shadow: none; }
.occ__grid { display: grid; gap: 18px; }
.occ__panel[hidden] { display: none; }
.occ__panel { animation: fade .4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- reviews ---------- */
.revs { display: grid; gap: 12px; }
.rev { background: var(--card); padding: 22px; border-radius: var(--radius); box-shadow: 0 1px 0 var(--line); display: flex; flex-direction: column; }
.rev__score { font-size: 11.5px; letter-spacing: .14em; color: var(--taupe); margin-bottom: 12px; }
.rev blockquote { margin: 0 0 14px; font-size: 15.5px; line-height: 1.6; }
.rev mark { background: rgba(217,195,174,.5); color: inherit; padding: 0 .12em; }
.rev__who { margin-top: auto; font-size: 12.5px; color: var(--muted); }
.rev__who b { color: var(--ink); font-weight: 700; }

/* ---------- gallery ---------- */
.gal { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gal .span2 { grid-column: span 2; }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 34px 18px 0; position: relative; font-size: 16px; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 300; color: var(--taupe);
}
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 34px 20px 0; color: var(--muted); font-size: 15px; }

/* ---------- quiz: boarding pass ---------- */
.quiz { background: var(--paper-2); }
.pass {
  position: relative; background: var(--card); border-radius: var(--radius);
  box-shadow: 0 20px 50px -32px rgba(36,30,26,.5), 0 0 0 1px var(--line);
  max-width: 720px; margin-inline: auto; overflow: hidden;
}
.pass__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 20px; border-bottom: 1px dashed var(--line);
  font: 600 10.5px/1 "Manrope", sans-serif; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.pass__head b { color: var(--taupe); font-weight: 700; }
.pass__head span:nth-child(2) { display: none; } /* three columns don't fit a phone */
/* the punched holes that make it read as a ticket */
.pass::before, .pass::after {
  content: ""; position: absolute; top: 46px; width: 16px; height: 16px;
  background: var(--paper-2); border-radius: 50%;
}
.pass::before { left: -8px; }
.pass::after { right: -8px; }
.pass__body { padding: 22px 20px 24px; }
.quiz__bar { height: 2px; background: var(--line); margin-bottom: 22px; }
.quiz__bar i { display: block; height: 100%; background: var(--taupe); width: 20%; transition: width .35s ease; }
.quiz__step[hidden] { display: none; }
.quiz__q { font-size: 22px; margin: 0 0 5px; font-family: "Giveaway", Georgia, serif; letter-spacing: .015em; line-height: 1.15; }
.quiz__hint { font-size: 13px; color: var(--muted); margin: 0 0 18px; }

.opts { display: grid; gap: 8px; }
.opt {
  border: 0; cursor: pointer; text-align: left; padding: 15px 16px; color: inherit;
  background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); border-radius: var(--radius);
  font: 500 15px/1.3 "Manrope", sans-serif; transition: all .16s ease;
}
.opt:hover { background: var(--paper-2); }
.opt[aria-pressed="true"] { background: var(--taupe); color: #fff; box-shadow: none; font-weight: 700; }
.opt small { display: block; margin-top: 3px; font-size: 12px; opacity: .68; font-weight: 400; }

.field { margin-bottom: 14px; }
.field label { display: block; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 7px; color: var(--muted); font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 14px; background: var(--paper); color: var(--ink);
  border: 0; box-shadow: inset 0 0 0 1px var(--line); border-radius: var(--radius);
  font: 400 16px/1.4 "Manrope", sans-serif; -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6f66' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 11px;
  padding-right: 36px;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--taupe); outline-offset: 1px; }
.field--row { display: grid; gap: 10px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.quiz__nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; }
.quiz__back { background: none; border: 0; color: var(--muted); cursor: pointer; font: 600 12px/1 "Manrope", sans-serif; letter-spacing: .1em; text-transform: uppercase; padding: 10px 0; }
.quiz__back:hover { color: var(--ink); }
.quiz__err { color: #a4483f; font-size: 13.5px; margin-top: 12px; min-height: 18px; }
.quiz__done { text-align: center; padding: 8px 0; }
.quiz__done .tick { font-size: 38px; color: var(--taupe); line-height: 1; margin-bottom: 14px; }

/* ---------- sticky CTA ---------- */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: flex;
  gap: 8px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: rgba(251,248,244,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(115%); transition: transform .28s cubic-bezier(.2,.7,.3,1);
}
.sticky--on { transform: none; }
.sticky .btn { flex: 1; padding: 14px 10px; font-size: 12px; letter-spacing: .05em; }
body { padding-bottom: 66px; }

.wa-float { display: none; }

/* ---------- footer ---------- */
.foot { background: var(--paper-2); color: var(--muted); padding: 44px 0 32px; font-size: 14px; border-top: 1px solid var(--line); }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--ink); }
.foot__grid { display: grid; gap: 26px; }
.foot__logo { height: 34px; margin-bottom: 16px; filter: invert(1) brightness(.25); }
.foot h5 { color: var(--ink); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; margin: 0 0 12px; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 8px; }
.foot__bottom { margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; display: grid; gap: 6px; }

/* ---------- reveal ----------
   Visible by default. Only the `js` class (set inline in <head>) arms the fade-in, so a
   broken script can never leave the page blank. site.js also force-reveals after 2s. */
.js .rv { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.js .rv.in { opacity: 1; transform: none; }

/* =========================================================================
   ≥ 700px — tablet
   ========================================================================= */
@media (min-width: 700px) {
  :root { --gut: 34px; --sec: 88px; }
  body { font-size: 17px; padding-bottom: 0; }
  h1.display { font-size: 58px; }
  h2.display { font-size: 44px; }
  h3.display { font-size: 28px; }
  .lede { font-size: 19px; }
  .hero .lede { font-size: 18px; margin-top: 18px; }
  .hero__inner { padding: 96px 0 56px; }
  .hero__cta { gap: 12px; margin-top: 28px; }
  .hero__cta .btn { flex: 0 0 auto; }
  .trust__sep { display: block; }
  .facts { grid-template-columns: repeat(4, 1fr); }
  .facts > div { padding: 26px 22px; }
  .facts b { font-size: 40px; }
  .cards { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .steps { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .incl { grid-template-columns: 1fr 1fr; gap: 0 44px; }
  .revs { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gal { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .occ__grid { grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
  .rail { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); grid-auto-columns: auto; overflow: visible; margin-inline: 0; padding-inline: 0; }
  .shots-sec { padding: 46px 0 14px; }
  .shots { grid-auto-columns: 44%; gap: 14px; }
  .shot { aspect-ratio: 3 / 2; }
  .shots-nav { display: flex; }
  .lb img { max-height: 84vh; }
  .lb__prev { left: 24px; }
  .lb__next { right: 24px; }
  .field--row { grid-template-columns: 1fr 1fr; }
  .pass__body { padding: 34px 40px 38px; }
  .pass__head { padding: 16px 40px; }
  .pass__head span:nth-child(2) { display: inline; }
  .pass::before, .pass::after { top: 50px; }
  .quiz__q { font-size: 28px; }
  .opts { grid-template-columns: 1fr 1fr; }
  .opts--3 { grid-template-columns: repeat(3, 1fr); }
  .faq summary { font-size: 19px; padding: 22px 44px 22px 0; }
  .band { height: 46vw; }
  .band__cap { bottom: 22px; }
  .site-head { padding: 20px var(--gut); }
  .site-head__logo { height: 36px; }
  .site-head a.link { display: inline; }
  .foot__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
  .foot__bottom { display: flex; justify-content: space-between; }
  .sticky { display: none; }
  .wa-float {
    display: grid; position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 54px; height: 54px;
    border-radius: 50%; background: #25d366; place-items: center;
    box-shadow: 0 10px 30px -8px rgba(0,0,0,.4); transition: transform .2s ease;
  }
  .wa-float:hover { transform: scale(1.06); }
  .wa-float svg { width: 27px; height: 27px; fill: #fff; }
}

/* =========================================================================
   ≥ 1024px — desktop
   ========================================================================= */
@media (min-width: 1024px) {
  :root { --gut: 48px; --sec: 116px; }
  h1.display { font-size: 74px; }
  h2.display { font-size: 54px; }
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .split--wide { grid-template-columns: 1.1fr .9fr; }
  .band { height: 40vw; }
  .shots { grid-auto-columns: 31%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .rv { opacity: 1; transform: none; transition: none; }
  .occ__panel { animation: none; }
  .marquee__track { animation: none; }
}
