/* ============================================================
   Sarjis Beunique — Photography Portfolio
   Palette: warm charcoal + muted gold  |  Playfair + Poppins
   ============================================================ */

:root {
  --bg:        #14110e;
  --bg-2:      #1a1613;
  --bg-3:      #211c17;
  --surface:   #241e18;
  --surface-2: #2c251e;
  --line:      rgba(201, 162, 39, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);

  --gold:      #c9a227;
  --gold-lt:   #e3c463;
  --gold-glow: rgba(201, 162, 39, 0.28);

  --text:      #f4efe7;
  --muted:     #b6a996;
  --muted-2:   #8a7e6d;

  --wa:        #25d366;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius: 14px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; color: var(--gold-lt); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- typography helpers ---------- */
.kicker {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1rem;
}
.section__title {
  font-family: var(--serif); font-weight: 600; line-height: 1.1;
  font-size: clamp(1.9rem, 4.4vw, 3rem); letter-spacing: -.01em;
}
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section__head { max-width: 640px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); text-align: center; }
.section__lead { color: var(--muted); margin-top: 1rem; font-size: 1.02rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 500; font-size: .92rem; letter-spacing: .02em;
  padding: .95rem 2rem; border-radius: 100px; cursor: pointer; border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
}
.btn--sm { padding: .6rem 1.3rem; font-size: .82rem; }
.btn--block { width: 100%; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: #241a05; box-shadow: 0 10px 30px -12px var(--gold-glow);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -12px var(--gold-glow); }
.btn--ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-lt); transform: translateY(-3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s, backdrop-filter .4s, border-color .4s, padding .4s;
  border-bottom: 1px solid transparent; padding: .55rem 0;
}
.nav.scrolled {
  background: rgba(18,15,12,.82); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px;
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--gold-lt);
  border: 1px solid var(--gold); background: rgba(201,162,39,.08); letter-spacing: .02em;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; }
.brand__tag { font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--muted-2); }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links > a:not(.btn) {
  font-size: .9rem; color: var(--muted); position: relative; padding: .2rem 0; transition: color .3s;
}
.nav__links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav__links > a:not(.btn):hover { color: var(--text); }
.nav__links > a:not(.btn):hover::after { width: 100%; }
.nav__cta { margin-left: .4rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; height: 100svh; min-height: 620px; display: flex; align-items: center; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08); transition: opacity 1.6s var(--ease), transform 7s linear;
}
.hero__slide.active { opacity: 1; transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(18,15,12,.96) 4%, rgba(18,15,12,.35) 45%, rgba(18,15,12,.72) 100%),
    linear-gradient(to right, rgba(18,15,12,.72), rgba(18,15,12,.15));
}
.hero__content { position: relative; z-index: 2; max-width: 780px; }
.hero__eyebrow { font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1.4rem; }
.hero__title {
  font-family: var(--serif); font-weight: 600; letter-spacing: -.015em; line-height: 1.04;
  font-size: clamp(2.7rem, 8vw, 5.4rem);
}
.hero__sub { color: #e7ded1; font-size: clamp(1rem,1.6vw,1.18rem); max-width: 560px; margin: 1.6rem 0 2.3rem; font-weight: 300; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll { margin-top: 3rem; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); display: flex; align-items: center; gap: .8rem; }
.hero__scroll span { width: 34px; height: 1px; background: var(--gold); display: inline-block; animation: scrollLine 2s var(--ease) infinite; transform-origin: left; }
@keyframes scrollLine { 0%,100% { transform: scaleX(.3); opacity:.4 } 50% { transform: scaleX(1); opacity:1 } }

.hero__dots { position: absolute; bottom: 28px; right: 32px; z-index: 3; display: flex; gap: 10px; }
.hero__dots button { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--gold-lt); background: transparent; cursor: pointer; transition: all .3s; padding: 0; }
.hero__dots button.active { background: var(--gold-lt); width: 26px; border-radius: 5px; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 2.6rem 1rem; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 25%; height: 50%; width: 1px; background: var(--line-soft); }
.stat__num { font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.1rem); font-weight: 600; color: var(--gold-lt); }
.stat__plus { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); }
.stat p { margin-top: .4rem; font-size: .82rem; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }

/* ============================================================
   PORTFOLIO / GALLERY
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.6rem; }
.filter {
  font-family: var(--sans); font-size: .85rem; font-weight: 400; color: var(--muted);
  padding: .6rem 1.25rem; border-radius: 100px; border: 1px solid var(--line-soft);
  background: transparent; cursor: pointer; transition: all .3s var(--ease); white-space: nowrap;
}
.filter:hover { color: var(--text); border-color: var(--line); }
.filter.active { color: #241a05; background: linear-gradient(135deg, var(--gold-lt), var(--gold)); border-color: transparent; font-weight: 500; }

.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  grid-auto-rows: 1fr;
}
.gcard {
  position: relative; overflow: hidden; border-radius: 10px; cursor: pointer;
  aspect-ratio: 3/4; background: var(--surface);
  opacity: 0; transform: translateY(18px) scale(.98); transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.gcard.in { opacity: 1; transform: none; }
.gcard--wide { grid-column: span 2; aspect-ratio: 3/2.02; }
.gcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s; }
.gcard:hover img { transform: scale(1.08); }
.gcard__veil {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.1rem; background: linear-gradient(to top, rgba(18,15,12,.82), transparent 60%);
  opacity: 0; transition: opacity .4s; z-index: 2;
}
.gcard:hover .gcard__veil { opacity: 1; }
.gcard__cat { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-lt); }
.gcard__title { font-family: var(--serif); font-size: 1.1rem; margin-top: .15rem; }
.gcard__zoom {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(18,15,12,.55); border: 1px solid var(--line);
  color: var(--gold-lt); opacity: 0; transform: scale(.7); transition: all .4s var(--ease); z-index: 2;
}
.gcard:hover .gcard__zoom { opacity: 1; transform: scale(1); }
.gallery__more { text-align: center; margin-top: 2.6rem; }
.gallery__empty { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 3rem 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-2); }
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__img { width: 100%; border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 30px 60px -30px rgba(0,0,0,.7); }
.about__media::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.about__badge {
  position: absolute; bottom: -18px; right: -14px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 1rem 1.3rem; display: flex; align-items: center; gap: .7rem;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.7);
}
.about__badge-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--gold-lt); }
.about__badge-txt { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); line-height: 1.35; }
.about__body p { color: var(--muted); margin-top: 1.1rem; }
.about__list { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.4rem; margin: 1.8rem 0; }
.about__list li { font-size: .92rem; color: var(--text); display: flex; align-items: center; gap: .6rem; }
.about__list span { color: var(--gold); font-size: .7rem; }
.about__sign { display: flex; flex-direction: column; border-left: 2px solid var(--gold); padding-left: 1rem; }
.about__sign-name { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--gold-lt); }
.about__sign-role { font-size: .78rem; letter-spacing: .06em; color: var(--muted-2); text-transform: uppercase; }

/* ============================================================
   PACKAGES
   ============================================================ */
.pkg__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; align-items: stretch; }
.pkg {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 2.3rem 1.9rem; display: flex; flex-direction: column; position: relative; transition: transform .4s var(--ease), border-color .4s;
}
.pkg:hover { transform: translateY(-6px); border-color: var(--line); }
.pkg--featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(201,162,39,.08), var(--surface) 40%); transform: scale(1.03); }
.pkg--featured:hover { transform: scale(1.03) translateY(-6px); }
.pkg__ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-lt), var(--gold)); color: #241a05;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: .35rem 1.1rem; border-radius: 100px; white-space: nowrap;
}
.pkg__name { font-family: var(--serif); font-size: 1.4rem; color: var(--text); }
.pkg__price { font-family: var(--serif); font-size: 2.7rem; font-weight: 700; margin: .3rem 0; color: var(--gold-lt); }
.pkg__price span { font-size: 1.3rem; vertical-align: super; color: var(--gold); }
.pkg__for { font-size: .88rem; color: var(--muted); min-height: 2.6em; }
.pkg__list { margin: 1.4rem 0 1.8rem; display: grid; gap: .7rem; flex: 1; }
.pkg__list li { font-size: .9rem; color: var(--text); padding-left: 1.5rem; position: relative; }
.pkg__list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 600; }
.services__note { text-align: center; color: var(--muted-2); font-size: .86rem; margin-top: 2rem; }

/* ============================================================
   BOOKING
   ============================================================ */
.book { background: var(--bg-2); }
.book__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.book__intro p { color: var(--muted); }
.book__intro > p { margin-bottom: 1.8rem; }
.wa-btn {
  display: inline-flex; align-items: center; gap: .7rem; background: var(--wa); color: #04310f;
  font-weight: 600; padding: 1rem 1.8rem; border-radius: 100px; font-size: 1rem;
  box-shadow: 0 12px 30px -12px rgba(37,211,102,.55); transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -14px rgba(37,211,102,.6); }
.book__or { text-align: center; color: var(--muted-2); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin: 1.4rem 0; max-width: 320px; }
.book__trust { display: flex; gap: 1.4rem; margin-top: .5rem; }
.book__trust > div { display: flex; flex-direction: column; }
.book__trust strong { color: var(--gold-lt); font-weight: 500; font-size: .92rem; }
.book__trust span { color: var(--muted-2); font-size: .8rem; }

.book__form { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 2rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: .45rem; letter-spacing: .02em; }
.field label span { color: var(--muted-2); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-soft); border-radius: 10px;
  padding: .8rem .95rem; color: var(--text); font-family: var(--sans); font-size: .92rem; font-weight: 300;
  transition: border-color .3s, box-shadow .3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.12);
}
.field select { appearance: none; cursor: pointer; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field textarea { resize: vertical; }
input[type="date"] { color-scheme: dark; }
.book__form-note { font-size: .85rem; margin-top: .9rem; text-align: center; min-height: 1.2em; }
.book__form-note.ok { color: var(--wa); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.tst {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 1.8rem; display: flex; flex-direction: column; transition: transform .4s var(--ease), border-color .4s;
}
.tst:hover { transform: translateY(-5px); border-color: var(--line); }
.tst__stars { color: var(--gold); letter-spacing: .15em; font-size: .95rem; margin-bottom: .9rem; }
.tst__quote { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--text); line-height: 1.55; flex: 1; }
.tst__foot { display: flex; align-items: center; gap: .8rem; margin-top: 1.4rem; }
.tst__ava { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold); }
.tst__name { font-weight: 500; font-size: .92rem; }
.tst__meta { font-size: .78rem; color: var(--muted-2); }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.insta__grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; }
.insta__item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 8px; }
.insta__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.insta__item:hover img { transform: scale(1.12); }
.insta__item::after {
  content: "♥"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff;
  background: rgba(18,15,12,.5); opacity: 0; transition: opacity .3s; font-size: 1.3rem;
}
.insta__item:hover::after { opacity: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,4vw,3.5rem); align-items: stretch; }
.contact__lead { color: var(--muted); margin: 1rem 0 2rem; }
.contact__list { display: grid; gap: 1.2rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ico { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); font-size: 1.15rem; flex-shrink: 0; }
.contact__list strong { display: block; font-weight: 500; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
.contact__list a, .contact__list span { color: var(--text); font-size: .98rem; }
.contact__list a:hover { color: var(--gold-lt); }
.contact__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 380px; }
.contact__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--line-soft); padding-top: 4rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 3rem; }
.footer__brand p { color: var(--muted); font-size: .9rem; margin: 1.1rem 0 1.3rem; max-width: 300px; }
.footer__social { display: flex; gap: 1.2rem; }
.footer__social a { font-size: .84rem; color: var(--muted); position: relative; }
.footer__social a:hover { color: var(--gold-lt); }
.footer__col h4 { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; margin-bottom: 1.1rem; }
.footer__col a { display: block; color: var(--muted); font-size: .89rem; margin-bottom: .6rem; transition: color .3s; }
.footer__col a:hover { color: var(--gold-lt); }
.footer__hours { color: var(--muted); font-size: .89rem; margin-bottom: 1.1rem; }
.footer__bottom { display: flex; justify-content: space-between; padding: 1.6rem 24px; border-top: 1px solid var(--line-soft); }
.footer__bottom p { color: var(--muted-2); font-size: .82rem; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float__pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--wa); z-index: -1; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .6 } 100% { transform: scale(1.9); opacity: 0 } }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(12,10,8,.96); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .35s; }
.lb.open { opacity: 1; pointer-events: auto; }
.lb__stage { max-width: 90vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.lb__stage img { max-width: 90vw; max-height: 78vh; object-fit: contain; border-radius: 6px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8); transition: opacity .3s; }
.lb__stage figcaption { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 1rem; }
.lb__close { position: absolute; top: 20px; right: 26px; background: none; border: 0; color: var(--text); font-size: 1.7rem; cursor: pointer; opacity: .8; transition: opacity .3s, transform .3s; }
.lb__close:hover { opacity: 1; transform: rotate(90deg); }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.06); border: 1px solid var(--line); color: var(--gold-lt);
  width: 52px; height: 52px; border-radius: 50%; font-size: 2rem; line-height: 1; cursor: pointer; transition: background .3s, transform .3s; }
.lb__nav:hover { background: rgba(201,162,39,.18); }
.lb__prev { left: 3vw; } .lb__next { right: 3vw; }
.lb__count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: .85rem; letter-spacing: .1em; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal, .gcard { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about__grid, .book__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; margin: 0 auto 1.5rem; }
  .pkg__grid, .tst__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pkg--featured { transform: none; } .pkg--featured:hover { transform: translateY(-6px); }
  .insta__grid { grid-template-columns: repeat(4,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 1.6rem; background: var(--bg-2); padding: 2rem 2.2rem;
    transform: translateX(100%); transition: transform .4s var(--ease); border-left: 1px solid var(--line);
  }
  .nav__links.open { transform: none; }
  .nav__links > a:not(.btn) { font-size: 1.1rem; }
  .nav__cta { margin: .5rem 0 0; }
  .nav__toggle { display: flex; z-index: 101; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gcard--wide { grid-column: span 2; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2)::after { display: none; }
  .field--row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: .4rem; text-align: center; }
  .lb__prev { left: 2vw; } .lb__next { right: 2vw; } .lb__nav { width: 44px; height: 44px; font-size: 1.6rem; }
}
@media (max-width: 420px) {
  .insta__grid { grid-template-columns: repeat(3,1fr); }
  .hero__cta { flex-direction: column; } .hero__cta .btn { width: 100%; }
}
