/* ═══════════════════════════════════════════════════════════════════
   GolKate Photography — public site
   Palette: warm alabaster paper, sepia ink, antique brass, dusty rose
   Type:    Fraunces (display) · Figtree (body)
   ═══════════════════════════════════════════════════════════════════ */
:root {
  --paper: #F6F2EB;
  --card:  #FFFDF9;
  --ink:   #262019;
  --ink-soft: #4C443B;
  --stone: #8C8177;
  --brass: #A17C4A;
  --brass-deep: #86653A;
  --rose:  #C99B92;
  --line:  #E4DCCF;
  --display: "Fraunces", Georgia, serif;
  --body: "Figtree", -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.12; }
h2 em, h1 em { font-style: italic; color: var(--brass); }
a { color: inherit; }

.hp { position: absolute; left: -6000px; width: 1px; height: 1px; opacity: 0; }

/* ── buttons & links ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--brass);
  color: var(--paper);
  font-family: var(--body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--brass);
  border-radius: 2px;
  padding: .95em 2em;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { background: var(--brass-deep); border-color: var(--brass-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(38,32,25,.14); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink-soft); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--small { padding: .7em 1.4em; }
.btn--wide { width: 100%; text-align: center; }
.btn[disabled] { opacity: .55; pointer-events: none; }

.text-link {
  color: var(--brass-deep);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--rose);
  transition: border-color .2s, color .2s;
}
.text-link:hover { color: var(--ink); border-color: var(--brass); }

/* ── navigation ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.is-solid {
  background: rgba(246,242,235,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: .65rem;
  padding-bottom: .65rem;
}
.nav__logo {
  font-family: var(--display);
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--paper);
  transition: color .3s;
}
.nav__logo span { font-style: italic; font-size: .8em; color: var(--rose); }
.nav.is-solid .nav__logo { color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a:not(.btn) {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  opacity: .92;
  transition: color .3s, opacity .2s;
}
.nav__links a:not(.btn):hover { opacity: 1; color: var(--rose); }
.nav.is-solid .nav__links a:not(.btn) { color: var(--ink-soft); }
.nav.is-solid .nav__links a:not(.btn):hover { color: var(--brass-deep); }
.nav__burger { display: none; }

/* ── hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--paper);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 16s var(--ease) forwards;
}
.hero__media--fallback {
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(201,155,146,.5), transparent 55%),
    radial-gradient(110% 100% at 15% 90%, rgba(161,124,74,.55), transparent 60%),
    linear-gradient(160deg, #3A322A 0%, #262019 60%, #1C1712 100%);
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,23,18,.5) 0%, rgba(28,23,18,.25) 40%, rgba(28,23,18,.62) 100%);
}
.hero__content { position: relative; padding: 6rem 1.4rem 4rem; max-width: 60rem; }
.hero__eyebrow {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  font-weight: 300;
  letter-spacing: -.01em;
}
.hero__title span { display: block; }
.hero__sub {
  max-width: 34rem;
  margin: 1.5rem auto 2.3rem;
  font-weight: 300;
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  color: rgba(246,242,235,.85);
}
.hero__cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.hero__cta .btn--ghost { color: var(--paper); border-color: rgba(246,242,235,.6); }
.hero__cta .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.reveal-line { opacity: 0; transform: translateY(26px); animation: lineUp .9s var(--ease) forwards; }
.hero__eyebrow.reveal-line { animation-delay: .15s; }
.hero__title .reveal-line:nth-child(1) { animation-delay: .3s; }
.hero__title .reveal-line:nth-child(2) { animation-delay: .45s; }
.hero__sub.reveal-line { animation-delay: .62s; }
.hero__cta.reveal-line { animation-delay: .78s; }
@keyframes lineUp { to { opacity: 1; transform: none; } }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  width: 26px; height: 42px;
  margin-left: -13px;
  border: 1.5px solid rgba(246,242,235,.65);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute; top: 7px; left: 50%;
  width: 3px; height: 8px; margin-left: -1.5px;
  border-radius: 2px;
  background: var(--rose);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint { 50% { transform: translateY(12px); opacity: .3; } }

/* ── sections & the contact-sheet frame marker ───────────────────── */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1.2rem, 5vw, 4rem); max-width: 78rem; margin: 0 auto; }
.section--tint { max-width: none; background: linear-gradient(180deg, #F0EAE0, #F6F2EB); }
.section--tint > * { max-width: 78rem; margin-left: auto; margin-right: auto; }

.frame-mark {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.1rem;
}
.frame-mark i {
  width: 42px; height: 5px;
  background-image: radial-gradient(circle, var(--brass) 1.4px, transparent 1.7px);
  background-size: 9px 5px;
  background-position: center;
  opacity: .75;
}
.section__title { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 1rem; }
.section__lede { max-width: 42rem; color: var(--ink-soft); margin-bottom: 2.6rem; }
.section__note { margin-top: 2.4rem; color: var(--stone); font-size: .95rem; }
.empty { color: var(--stone); font-style: italic; }

/* ── story ───────────────────────────────────────────────────────── */
.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.story__text h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1.3rem; }
.story__text p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 36rem; }
.story__portrait-frame {
  background: var(--card);
  padding: 12px 12px 0;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(38,32,25,.12);
  transform: rotate(1.6deg);
  transition: transform .4s var(--ease);
}
.story__portrait:hover .story__portrait-frame { transform: rotate(0deg) translateY(-4px); }
.story__portrait img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
/* ── about ───────────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__text h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1.1rem; }
.about__name {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--brass-deep);
  margin-bottom: .6rem;
}
.about__tagline { color: var(--ink-soft); max-width: 30rem; }

.about__photos { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }
.about__photo {
  background: var(--card);
  padding: 10px 10px 14px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(38,32,25,.12);
  flex: 1 1 9rem;
  max-width: 11rem;
  transition: transform .4s var(--ease);
}
.about__photo img { aspect-ratio: 4/5; object-fit: cover; width: 100%; display: block; }
.about__photo--0 { transform: rotate(-3deg); }
.about__photo--1 { transform: rotate(2deg) translateY(-14px); }
.about__photo--2 { transform: rotate(-1.5deg); }
.about__photo:hover { transform: rotate(0deg) translateY(-6px); z-index: 2; }

.story__portrait figcaption {
  font-family: var(--display);
  font-style: italic;
  color: var(--stone);
  text-align: center;
  padding: .7rem 0 .9rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 0;
  transform: rotate(1.6deg);
  margin-top: -1px;
}

/* ── packages carousel ───────────────────────────────────────────── */
.carousel { position: relative; margin-top: 2.4rem; }
.packages {
  --card-w: min(400px, 82vw);
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1.4rem max(calc((100% - var(--card-w)) / 2), 1.1rem) 2.6rem;
  scrollbar-width: none;
}
.packages::-webkit-scrollbar { display: none; }
.package {
  position: relative;
  flex: 0 0 var(--card-w);
  scroll-snap-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.4rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  transform: scale(.94);
  opacity: .55;
  transition: transform .5s var(--ease), opacity .5s var(--ease), box-shadow .5s var(--ease);
}
.package.is-center { transform: scale(1); opacity: 1; box-shadow: 0 16px 36px rgba(38,32,25,.12); }
.package--featured { border-top: 3px solid var(--brass); }
.package__flag {
  position: absolute; top: -12px; right: 1.4rem;
  background: var(--ink);
  color: var(--paper);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .35em .9em;
  border-radius: 2px;
}
.package h3 { font-size: 1.6rem; }
.package__tagline { color: var(--stone); font-size: .92rem; margin: .2rem 0 1rem; }
.package__price { font-family: var(--display); font-size: 2.7rem; font-weight: 300; margin-bottom: 1.2rem; }
.package__price sup { font-size: .45em; color: var(--brass); margin-right: .08em; }
.package ul { list-style: none; margin-bottom: 1.8rem; flex: 1; }
.package li {
  padding: .5em 0 .5em 1.5em;
  position: relative;
  font-size: .94rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.package li:last-child { border-bottom: 0; }
.package li::before { content: "•"; position: absolute; left: .2em; color: var(--rose); }
.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(38,32,25,.14);
  transition: background .25s var(--ease), color .25s var(--ease), opacity .25s var(--ease);
}
.carousel__arrow:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.carousel__arrow:disabled { opacity: 0; pointer-events: none; }
.carousel__arrow--prev { left: -8px; }
.carousel__arrow--next { right: -8px; }
.carousel__dots { display: flex; justify-content: center; gap: .55rem; margin-top: .2rem; }
.carousel__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 0; padding: 0;
  background: var(--stone);
  opacity: .45;
  cursor: pointer;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.carousel__dot.is-active { background: var(--brass); opacity: 1; transform: scale(1.4); }
@media (max-width: 720px) {
  .carousel__arrow { display: none; }
}

/* ── gallery ─────────────────────────────────────────────────────── */
.gallery__tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.8rem 0 2rem; }
.tab {
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .55em 1.25em;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.tab:hover { border-color: var(--brass); color: var(--brass-deep); }
.tab.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.gallery { columns: 3; column-gap: 14px; }
.gallery__item {
  break-inside: avoid;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--card);
  border: 1px solid var(--line);
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%; height: auto;
  transition: transform .5s var(--ease), opacity .4s;
}
.gallery__item:hover img { transform: scale(1.035); }
.gallery__item figcaption {
  font-family: var(--display);
  font-style: italic;
  font-size: .82rem;
  color: var(--stone);
  padding: .45rem .7rem .55rem;
}
.gallery__item.is-hidden { display: none; }
.gallery__item.is-faded {
  opacity: .32;
  filter: saturate(.6);
  cursor: default;
  pointer-events: none;
}
.gallery__more { text-align: center; margin-top: 1.8rem; }

/* Collapsed teaser (All tab, before "See more"): a strict 2-row × 3-col
   grid instead of masonry columns, so "top row clear / bottom row faded"
   is guaranteed — CSS multi-column fills column-by-column, not row-by-row,
   which made the faded/clear split look arbitrary. */
.gallery.is-collapsed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery.is-collapsed .gallery__item { margin-bottom: 0; }
.gallery.is-collapsed .gallery__item img { aspect-ratio: 3/4; object-fit: cover; }

/* ── reviews ─────────────────────────────────────────────────────── */
.reviews {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2rem .2rem 1.4rem;
  scrollbar-width: thin;
  scrollbar-color: var(--rose) transparent;
}
.review {
  flex: 0 0 min(21rem, 82vw);
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.8rem 1.6rem;
}
.review__stars { color: var(--brass); letter-spacing: .18em; margin-bottom: .8rem; }
.review p { font-size: .96rem; color: var(--ink-soft); }
.review cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--display);
  font-style: italic;
  color: var(--stone);
}
.feedback { margin-top: 1.4rem; }
.feedback__form { max-width: 34rem; margin-top: 1.6rem; }

/* ── booking ─────────────────────────────────────────────────────── */
.booking {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(1.6rem, 4vw, 3.4rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.4rem, 3.6vw, 2.8rem);
  box-shadow: 0 24px 60px rgba(38,32,25,.08);
}
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal__month { font-family: var(--display); font-size: 1.3rem; }
.cal__nav {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 1.25rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s;
}
.cal__nav:hover:not([disabled]) { border-color: var(--brass); color: var(--brass-deep); }
.cal__nav[disabled] { opacity: .3; cursor: default; }
.cal__weekdays, .cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__weekdays span {
  text-align: center;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
  padding-bottom: .5rem;
}
.cal__day {
  position: relative;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-family: var(--body);
  font-size: .92rem;
  color: var(--ink);
  cursor: default;
}
.cal__day.is-open { cursor: pointer; font-weight: 600; transition: background .2s, color .2s; }
.cal__day.is-open::after {
  content: "";
  position: absolute; bottom: 5px; left: 50%;
  width: 5px; height: 5px; margin-left: -2.5px;
  border-radius: 50%;
  background: var(--brass);
}
.cal__day.is-open:hover { background: #EFE7D9; }
.cal__day.is-selected { background: var(--ink); color: var(--paper); }
.cal__day.is-selected::after { background: var(--rose); }
.cal__day.is-muted { color: #C9C0B3; }
.cal__legend { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--stone); margin-top: 1rem; }
.cal__legend .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }
.cal__times { margin-top: 1.4rem; border-top: 1px dashed var(--line); padding-top: 1.2rem; }
.cal__times-label { font-size: .88rem; color: var(--ink-soft); margin-bottom: .7rem; }
.cal__times-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.slot {
  font-family: var(--body);
  font-size: .88rem;
  font-weight: 500;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: .5em 1.1em;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.slot:hover { border-color: var(--brass); }
.slot.is-selected { background: var(--brass); border-color: var(--brass); color: var(--paper); }

.booking__picked {
  font-size: .9rem;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 4px;
  padding: .8em 1em;
  margin-bottom: 1.2rem;
}
.booking__picked.is-set { border-style: solid; border-color: var(--brass); color: var(--ink); }
.booking__done { grid-column: 1 / -1; text-align: center; padding: 2rem 1rem; }
.booking__done-title { font-family: var(--display); font-size: 1.8rem; color: var(--brass-deep); margin-bottom: .6rem; }

/* ── forms ───────────────────────────────────────────────────────── */
label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--ink-soft); margin-bottom: 1rem; }
label small { font-weight: 400; color: var(--stone); }
input, select, textarea {
  width: 100%;
  margin-top: .35rem;
  font-family: var(--body);
  font-size: .96rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: .7em .85em;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(161,124,74,.16);
}
textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-status { margin-top: .8rem; font-size: .88rem; min-height: 1.2em; }
.form-status.is-ok { color: #4C7A46; }
.form-status.is-err { color: #A44A3F; }

/* ── contact & footer ────────────────────────────────────────────── */
.contact { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(2rem, 5vw, 4rem); }
.contact__info h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.contact__info p { color: var(--ink-soft); max-width: 26rem; }
.contact__meta { margin-top: 1.2rem; font-size: .9rem; color: var(--stone); }
.contact__social { display: flex; gap: 1.4rem; margin-top: 1.6rem; }

.footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 2.6rem 1.2rem 3rem;
  color: var(--stone);
  font-size: .85rem;
}
.footer__logo { font-family: var(--display); font-size: 1.15rem; color: var(--ink); margin-bottom: .3rem; }
.footer__logo span { font-style: italic; color: var(--brass); font-size: .85em; }

/* ── lightbox ────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(28,23,18,.94);
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn .25s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } }
.lightbox img { max-width: min(92vw, 1100px); max-height: 84vh; border-radius: 2px; }
.lightbox__caption {
  position: absolute; bottom: 1.6rem; left: 0; right: 0;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--rose);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: transparent;
  border: 0;
  color: var(--paper);
  cursor: pointer;
  opacity: .8;
  transition: opacity .2s, transform .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { opacity: 1; }
.lightbox__close { top: .8rem; right: 1.2rem; font-size: 2.6rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 3rem; padding: 1rem; }
.lightbox__nav--prev { left: .4rem; }
.lightbox__nav--next { right: .4rem; }

/* ── scroll reveal ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ── responsive ──────────────────────────────────────────────────── */
@media (max-width: 940px) {
  .booking { grid-template-columns: 1fr; }
  .story__grid { grid-template-columns: 1fr; }
  .story__portrait { max-width: 22rem; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 9rem; }
  .contact { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
}
@media (max-width: 720px) {
  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px; height: 42px;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 60;
  }
  .nav__burger span {
    display: block;
    width: 22px; height: 2px;
    margin: 0 auto;
    background: var(--paper);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .2s, background .3s;
  }
  .nav.is-solid .nav__burger span, .nav.is-open .nav__burger span { background: var(--ink); }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__links {
    position: fixed; inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--paper);
    transform: translateY(-102%);
    transition: transform .4s var(--ease);
  }
  .nav.is-open .nav__links { transform: none; }
  .nav__links a:not(.btn) { color: var(--ink) !important; font-size: 1rem; }
  .nav.is-open .nav__logo { color: var(--ink); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 560px) {
  .gallery { columns: 2; column-gap: 8px; }
  .gallery__item { margin-bottom: 8px; }
  .gallery__item figcaption { display: none; }
  .hero__cta .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .reveal-line { opacity: 1; transform: none; }
  .package { transform: none; opacity: 1; }
}
