/* =========================================================
   Adam Čermák — svatební fotograf
   Editorial, image-first. Warm ivory + charcoal ink + clay.
   ========================================================= */

:root {
  /* palette */
  --bone: #f6f2ea;
  --bone-2: #efe9dd;
  --ink: #1b1815;
  --ink-soft: #3a352f;
  --muted: #837a6c;
  --line: #e2d9c9;
  --clay: #a9825f;      /* warm accent */
  --clay-deep: #8c6847;
  --paper: #fffdf9;

  /* type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", system-ui, -apple-system, sans-serif;

  /* fluid scale */
  --step--1: clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.12rem);
  --step-1:  clamp(1.6rem, 1.3rem + 1.5vw, 2.4rem);
  --step-2:  clamp(2.2rem, 1.6rem + 3vw, 4rem);
  --step-3:  clamp(3rem, 2rem + 5vw, 6.5rem);

  --gutter: clamp(1.25rem, 4vw, 5rem);
  --maxw: 1400px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------- reset -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--ink); line-height: 1.05; letter-spacing: -0.01em; }

::selection { background: var(--clay); color: var(--paper); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 2px; }

/* -------- buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 400; font-size: var(--step--1);
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95em 1.9em; cursor: pointer; border: 1px solid transparent;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease);
  will-change: transform;
}
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--clay-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn--pill { border-radius: 999px; background: var(--ink); color: var(--paper); padding: 0.7em 1.5em; }
.btn--pill:hover { background: var(--clay-deep); }

.eyebrow, .hero__eyebrow {
  font-family: var(--sans); font-weight: 500; font-size: var(--step--1);
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--clay);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
  padding: clamp(1rem, 2vw, 1.6rem) 0;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav.is-scrolled { background: rgba(246,242,234,0.86); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding: 0.7rem 0; }

.nav__brand { display: flex; flex-direction: column; line-height: 1; color: var(--paper); transition: color .5s var(--ease); }
.nav__brand-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.01em; }
.nav__brand-sub { font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(255,253,249,0.65); margin-top: 4px; transition: color .5s var(--ease); }
.nav.is-scrolled .nav__brand { color: var(--ink); }
.nav.is-scrolled .nav__brand-sub { color: var(--muted); }

.nav__links { display: flex; gap: clamp(1.1rem, 2vw, 2.2rem); }
.nav__links a {
  position: relative; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,253,249,0.9); padding: 4px 0; transition: color .5s var(--ease);
  text-shadow: 0 1px 12px rgba(20,17,14,0.25);
}
.nav.is-scrolled .nav__links a { color: var(--ink-soft); text-shadow: none; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--clay);
  transition: width .4s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { flex-shrink: 0; }

.nav__burger {
  display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer;
  width: 34px; height: 34px; align-items: center; justify-content: center; padding: 0;
}
.nav__burger span { width: 26px; height: 1.5px; background: var(--paper); transition: transform .4s var(--ease), opacity .3s, background .5s var(--ease); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }
.nav__burger.is-open span { background: var(--ink); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--bone);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__links { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.mobile-menu__links a { font-family: var(--serif); font-size: 2rem; color: var(--ink); }
.mobile-menu__links .btn { font-family: var(--sans); font-size: var(--step--1); margin-top: 1rem; }
.mobile-menu__foot { display: flex; flex-direction: column; align-items: center; gap: .4rem; color: var(--muted); font-size: .9rem; letter-spacing: .05em; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--paper); }
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(20,17,14,0.72) 0%, rgba(20,17,14,0.15) 45%, rgba(20,17,14,0.35) 100%);
}
.hero__content { max-width: var(--maxw); margin: 0 auto; padding: clamp(7rem, 15vh, 11rem) var(--gutter) clamp(3rem, 8vh, 7rem); width: 100%; }
.hero__eyebrow { color: rgba(255,253,249,0.85); }
.hero__title {
  font-size: clamp(2.6rem, 1.6rem + 3.4vw, 5rem); font-weight: 500; margin: 1.1rem 0 1.4rem;
  color: var(--paper); max-width: 16ch;
}
.hero__title em { font-style: italic; font-weight: 400; color: #e9d9c6; }
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; }
.hero__lead { max-width: 46ch; color: rgba(255,253,249,0.9); font-weight: 300; font-size: clamp(1rem,0.95rem+.4vw,1.22rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero__actions .btn--ghost { color: var(--paper); border-color: rgba(255,253,249,0.6); }
.hero__actions .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(4rem,9vh,8rem); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,253,249,.8);
  writing-mode: vertical-rl;
}
.hero__scroll-line { width: 1px; height: 60px; background: rgba(255,253,249,.5); position: relative; overflow: hidden; }
.hero__scroll-line::after { content:""; position:absolute; top:-60px; left:0; width:1px; height:60px; background: var(--paper); animation: scrolldot 2.2s var(--ease) infinite; }
@keyframes scrolldot { 0%{transform:translateY(0)} 60%,100%{transform:translateY(120px)} }
@media (max-width: 640px){ .hero__scroll{ display:none; } }
/* short / landscape viewports: keep hero from overflowing under the nav */
@media (max-height: 760px) and (min-width: 641px){
  .hero__title { font-size: clamp(2.2rem, 1.2rem + 2.6vw, 3.6rem); margin: .8rem 0 1rem; }
  .hero__lead { font-size: 1rem; }
  .hero__content { padding-top: clamp(5.5rem, 12vh, 8rem); padding-bottom: clamp(2rem, 5vh, 4rem); }
  .hero__actions { margin-top: 1.4rem; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { background: var(--ink); color: var(--bone); overflow: hidden; padding: 1.1rem 0; border-block: 1px solid rgba(255,255,255,.08); }
.marquee__track { display: inline-flex; align-items: center; gap: 2rem; white-space: nowrap; animation: marquee 32s linear infinite; font-family: var(--serif); font-size: clamp(1.2rem,2vw,1.9rem); font-style: italic; }
.marquee__track .dot { color: var(--clay); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   SECTION SHELL
   ========================================================= */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 11vh, 9rem) var(--gutter); }
.section__head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__title { font-size: var(--step-2); margin: .5rem 0 1rem; }
.section__intro { color: var(--muted); font-size: clamp(1rem,.95rem+.3vw,1.18rem); max-width: 52ch; }

/* =========================================================
   PORTFOLIO
   ========================================================= */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.filters__btn {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft); background: transparent; border: 1px solid var(--line);
  padding: .7em 1.3em; border-radius: 999px; cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.filters__btn:hover { border-color: var(--ink); }
.filters__btn.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.gallery { columns: 3; column-gap: clamp(.8rem, 1.4vw, 1.4rem); }
@media (max-width: 900px){ .gallery { columns: 2; } }
@media (max-width: 520px){ .gallery { columns: 1; } }

.gallery__item {
  position: relative; break-inside: avoid; margin-bottom: clamp(.8rem, 1.4vw, 1.4rem);
  overflow: hidden; cursor: pointer; background: var(--bone-2);
}
.gallery__item img { width: 100%; transition: transform 1.1s var(--ease), filter .6s var(--ease); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,17,14,.6), transparent 55%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.gallery__item figcaption {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 2; color: var(--paper);
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover figcaption { opacity: 1; transform: none; }
.gallery__item.is-hidden { display: none; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { }
.about__grid { display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr); gap: clamp(2rem,5vw,5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about__badge {
  position: absolute; bottom: 1.2rem; left: -1px; background: var(--ink); color: var(--paper);
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; padding: .7em 1.2em;
}
.about__text p { margin-bottom: 1.2rem; color: var(--ink-soft); }
.about__text .section__title { margin-top: .3rem; }
.about__stats { list-style: none; display: flex; flex-wrap: wrap; gap: 2.4rem; margin: 2rem 0 1.5rem; border-top: 1px solid var(--line); padding-top: 1.8rem; }
.about__stats li { display: flex; flex-direction: column; }
.about__stats strong { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 500; color: var(--ink); line-height: 1; }
.about__stats span { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }
.about__sign { font-family: var(--serif); font-style: italic; font-size: 1.7rem; color: var(--clay-deep); }
@media (max-width: 820px){ .about__grid { grid-template-columns: 1fr; } .about__media img{ aspect-ratio: 3/4; } }

/* =========================================================
   QUOTE (dark full-bleed)
   ========================================================= */
.quote { position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center; color: var(--paper); text-align: center; overflow: hidden; }
.quote__media { position: absolute; inset: 0; z-index: -1; }
.quote__media img { width: 100%; height: 100%; object-fit: cover; }
.quote__scrim { position: absolute; inset: 0; background: rgba(20,17,14,.62); }
.quote__text {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.8rem, 1.2rem + 3vw, 4rem); line-height: 1.18;
  max-width: 20ch; padding: 3rem var(--gutter); text-wrap: balance;
}

/* =========================================================
   PROCESS
   ========================================================= */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1.4rem, 3vw, 3rem); counter-reset: s; }
.step { position: relative; padding-top: 2rem; border-top: 1px solid var(--line); }
.step__num { font-family: var(--serif); font-size: 1.1rem; color: var(--clay); letter-spacing: .1em; }
.step h3 { font-size: clamp(1.5rem,2.4vw,2rem); margin: .8rem 0 .8rem; }
.step p { color: var(--muted); font-size: .98rem; }
@media (max-width: 900px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .steps { grid-template-columns: 1fr; } }

/* =========================================================
   PACKAGES
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2vw,1.8rem); align-items: stretch; }
.card {
  display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line);
  padding: clamp(1.8rem,3vw,2.6rem); position: relative;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(27,24,21,.35); }
.card--feature { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.card--feature h3, .card--feature .card__price { color: var(--paper); }
.card__flag {
  position: absolute; top: -1px; right: -1px; background: var(--clay); color: var(--paper);
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; padding: .55em 1em;
}
.card__head { border-bottom: 1px solid var(--line); padding-bottom: 1.3rem; margin-bottom: 1.4rem; }
.card--feature .card__head { border-color: rgba(255,255,255,.15); }
.card__head h3 { font-size: 1.7rem; }
.card__price { font-family: var(--serif); font-size: clamp(2rem,3vw,2.8rem); font-weight: 500; color: var(--ink); margin-top: .5rem; line-height: 1; }
.card__price span { font-family: var(--sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: inline-block; margin-right: .4em; vertical-align: middle; }
.card--feature .card__price span { color: rgba(255,253,249,.6); }
.card__list { list-style: none; display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; flex: 1; }
.card__list li { position: relative; padding-left: 1.5rem; font-size: .96rem; }
.card__list li::before { content: "—"; position: absolute; left: 0; color: var(--clay); }
.card--feature .card__list li::before { color: var(--clay); }
.card__cta { width: 100%; }
.card--feature .btn--solid { background: var(--paper); color: var(--ink); }
.card--feature .btn--solid:hover { background: var(--clay); color: var(--paper); }
.packages__note { text-align: center; color: var(--muted); margin-top: 2.5rem; font-size: .95rem; }
@media (max-width: 900px){ .cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--bone-2); max-width: none; }
.testimonials > * { max-width: var(--maxw); margin-inline: auto; }
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem,2.5vw,2.4rem); }
.review { background: var(--paper); padding: clamp(1.8rem,3vw,2.6rem); display: flex; flex-direction: column; gap: 1.2rem; border: 1px solid var(--line); }
.review__stars { color: var(--clay); letter-spacing: .2em; font-size: .95rem; }
.review blockquote { font-family: var(--serif); font-size: clamp(1.15rem,1.6vw,1.4rem); line-height: 1.4; color: var(--ink); font-style: italic; }
.review figcaption { display: flex; align-items: center; gap: 1rem; margin-top: auto; }
.review figcaption img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.review figcaption span { display: flex; flex-direction: column; font-size: .85rem; color: var(--muted); }
.review figcaption strong { color: var(--ink); font-weight: 500; font-size: .95rem; }
@media (max-width: 900px){ .reviews { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* =========================================================
   FAQ
   ========================================================= */
.accordion { max-width: 860px; }
.acc { border-top: 1px solid var(--line); }
.acc:last-child { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none; cursor: pointer; padding: 1.5rem 3rem 1.5rem 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.25rem,2vw,1.65rem); color: var(--ink);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-weight: 300; font-size: 1.6rem; color: var(--clay); transition: transform .4s var(--ease);
}
.acc[open] summary::after { content: "–"; }
.acc__body { overflow: hidden; }
.acc__body p { padding: 0 0 1.6rem; color: var(--muted); max-width: 66ch; }
.acc[open] .acc__body { animation: accOpen .5s var(--ease); }
@keyframes accOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr); gap: clamp(2rem,5vw,5rem); }
.contact__intro .section__title { margin-bottom: 1rem; }
.contact__intro > p { color: var(--muted); max-width: 40ch; }
.contact__details { list-style: none; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.4rem; }
.contact__details li { display: flex; flex-direction: column; gap: .3rem; border-top: 1px solid var(--line); padding-top: 1.2rem; }
.contact__label { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--clay); }
.contact__details a { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); }
.contact__details a:hover { color: var(--clay-deep); }
.contact__details li > span:not(.contact__label) { font-size: 1.05rem; color: var(--ink-soft); }
@media (max-width: 820px){ .contact__grid { grid-template-columns: 1fr; } }

/* form */
.form { background: var(--paper); border: 1px solid var(--line); padding: clamp(1.6rem,3vw,2.6rem); }
.form__row { margin-bottom: 1.2rem; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 520px){ .form__row--2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--bone);
  border: 1px solid var(--line); padding: .85em 1em; border-radius: 0; transition: border-color .3s, background .3s;
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--clay); background: var(--paper); outline: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #b4451f; }
.field__error { color: #b4451f; font-size: .78rem; margin-top: .4rem; min-height: 0; }
.form__submit { width: 100%; margin-top: .5rem; }
.form__note { font-size: .78rem; color: var(--muted); margin-top: 1rem; text-align: center; }
.form__success {
  margin-top: 1.4rem; padding: 1.2rem 1.4rem; background: var(--bone-2); border-left: 3px solid var(--clay);
  display: flex; flex-direction: column; gap: .3rem; font-size: .95rem; color: var(--ink-soft);
}
.form__success[hidden] { display: none; }
.form__success strong { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }

.map { margin-top: clamp(3rem,6vw,5rem); border: 1px solid var(--line); overflow: hidden; }
.map iframe { display: block; filter: grayscale(1) contrast(1.05); transition: filter .6s var(--ease); }
.map:hover iframe { filter: grayscale(0); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: var(--bone); padding: clamp(3.5rem,7vw,6rem) var(--gutter) 2rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__brand { display: flex; flex-direction: column; }
.footer__name { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--paper); }
.footer__sub { font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,253,249,.5); margin-top: .5rem; }
.footer__col { display: flex; flex-direction: column; gap: .6rem; font-size: .92rem; color: rgba(255,253,249,.72); }
.footer__h { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--clay); margin-bottom: .5rem; }
.footer__col a:hover { color: var(--paper); }
.footer__bottom {
  max-width: var(--maxw); margin: 3rem auto 0; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .74rem; letter-spacing: .06em; color: rgba(255,253,249,.45);
}
@media (max-width: 820px){ .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer__inner { grid-template-columns: 1fr; } }

/* =========================================================
   STICKY CTA
   ========================================================= */
.sticky-cta {
  position: fixed; right: clamp(1rem,3vw,2rem); bottom: clamp(1rem,3vw,2rem); z-index: 90;
  background: var(--ink); color: var(--paper); border-radius: 999px;
  padding: 1em 1.6em; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  box-shadow: 0 18px 40px -18px rgba(27,24,21,.7);
  opacity: 0; transform: translateY(20px) scale(.95); pointer-events: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease), background .4s;
}
.sticky-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.sticky-cta:hover { background: var(--clay-deep); }
@media (max-width: 520px){ .sticky-cta { left: 1rem; right: 1rem; text-align: center; } }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(16,13,11,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage { max-width: 90vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lightbox__stage img { max-width: 90vw; max-height: 78vh; object-fit: contain; box-shadow: 0 40px 80px -30px rgba(0,0,0,.8); }
.lightbox__stage figcaption { color: rgba(255,253,249,.7); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: none; border: 0; color: var(--paper); cursor: pointer;
  font-family: var(--sans); line-height: 1;
}
.lightbox__close { top: 1.4rem; right: 1.8rem; font-size: 2.4rem; font-weight: 200; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 3.5rem; font-weight: 200; padding: .3em; opacity: .7; transition: opacity .3s; }
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav--prev { left: clamp(.5rem,3vw,2.5rem); }
.lightbox__nav--next { right: clamp(.5rem,3vw,2.5rem); }

/* =========================================================
   REVEAL (IntersectionObserver + GSAP)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.gallery__item { opacity: 0; transform: translateY(24px) scale(.99); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.gallery__item.is-in { opacity: 1; transform: none; }

/* nav mobile breakpoint */
@media (max-width: 940px){
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}
