/* ═══════════════════════════════════════════════════════════
   WIDOKOWNIA BRENNA - Voucher Landing
   Palette: warm paper, cream, espresso, brand gold
   Type: Cormorant Garamond (display) + Montserrat (ui/body)
   ═══════════════════════════════════════════════════════════ */

:root {
  --paper: #FAF7F1;
  --cream: #F1EBDF;
  --ink: #211D17;
  --ink-soft: #57503F;
  --espresso: #171310;
  --espresso-2: #211B15;
  --gold: #C09C5E;
  --gold-deep: #A98443;
  --gold-text: #806129;
  --gold-pale: #E5D8BC;
  --line: rgba(33, 29, 23, .14);
  --line-light: rgba(250, 247, 241, .18);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .8, .3, 1);
  --nav-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

::selection { background: var(--gold); color: #fff; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--espresso);
  color: var(--gold-pale);
  padding: .8em 1.4em;
  font-size: .78rem;
  letter-spacing: .1em;
  transition: top .3s;
}
.skip-link:focus-visible { top: 1rem; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

/* ─────────────── Typography ─────────────── */

.eyebrow {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1.4rem;
}
.eyebrow--light { color: var(--gold-pale); }
.eyebrow--gold { color: var(--gold); }
.section-head .eyebrow { text-indent: .42em; }

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  line-height: 1.14;
  letter-spacing: .005em;
  color: inherit;
  padding-bottom: .08em;
}
.h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-deep);
}

.body {
  font-weight: 400;
  font-size: .98rem;
  color: var(--ink-soft);
  max-width: 58ch;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.section-head .body { margin: 1.3rem auto 0; }
.section-head__sub { max-width: 52ch; }

/* ─────────────── Buttons ─────────────── */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-indent: .28em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 1.2em 2.9em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
  text-align: center;
}
.btn--gold {
  background: var(--gold);
  color: var(--espresso);
}
.btn--gold:hover {
  background: var(--espresso);
  color: var(--gold-pale);
  transform: translateY(-2px);
}
.btn--ghost-light {
  border-color: rgba(250, 247, 241, .45);
  color: #fff;
}
.btn--ghost-light:hover {
  border-color: #fff;
  background: rgba(250, 247, 241, .12);
  transform: translateY(-2px);
}
.btn--nav {
  padding: 1em 2.2em;
  background: var(--gold);
  color: var(--espresso);
}
.btn--nav:hover {
  background: var(--espresso);
  color: var(--gold-pale);
}
.btn--block { display: block; width: 100%; }

/* ─────────────── Nav ─────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease);
}
.nav__inner {
  position: relative;
  width: min(1360px, 100% - 3rem);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  color: #fff;
  transition: color .5s var(--ease);
}
.nav__mark { width: 34px; height: 38px; flex-shrink: 0; }
.nav__word { display: flex; flex-direction: column; line-height: 1.25; }
.nav__name {
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.nav__sub {
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .52em;
  text-transform: uppercase;
  opacity: .75;
}
.nav__links {
  display: flex;
  gap: 2.4rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav__links a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  opacity: .85;
  transition: color .5s var(--ease), opacity .3s;
  position: relative;
  padding: .4rem 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 1.8rem; }
.nav__tel {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: #fff;
  opacity: .85;
  transition: color .5s var(--ease), opacity .3s;
}
.nav__tel:hover { opacity: 1; }

.nav.is-solid {
  background: rgba(250, 247, 241, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-solid .nav__brand,
.nav.is-solid .nav__tel,
.nav.is-solid .nav__links a { color: var(--ink); }

/* ─────────────── Hero ─────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 58%;
  animation: kenburns 22s var(--ease) forwards;
  transform-origin: 45% 55%;
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 62% 56% at 50% 44%, rgba(18, 15, 11, .64), rgba(18, 15, 11, .26) 56%, rgba(18, 15, 11, 0) 74%),
    linear-gradient(to bottom, rgba(18, 15, 11, .5), rgba(18, 15, 11, .1) 40%, rgba(18, 15, 11, .5) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(880px, 100% - 3rem);
  padding: calc(var(--nav-h) + 2rem) 0 6rem;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.7rem, 6.4vw, 5.1rem);
  line-height: 1.12;
  margin-bottom: 1.6rem;
  padding-bottom: .06em;
  text-wrap: balance;
}
.hero__title {
  text-shadow: 0 2px 30px rgba(15, 12, 8, .55), 0 1px 3px rgba(15, 12, 8, .35);
}
.hero__title em {
  font-style: italic;
  color: #F2E7CD;
  text-shadow: 0 2px 26px rgba(15, 12, 8, .7), 0 1px 3px rgba(15, 12, 8, .5);
}
.hero__content .eyebrow {
  text-shadow: 0 1px 14px rgba(15, 12, 8, .6);
}
.hero__lede {
  font-weight: 300;
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  line-height: 1.85;
  max-width: 54ch;
  margin: 0 auto 2.6rem;
  color: rgba(250, 247, 241, .95);
  text-shadow: 0 1px 20px rgba(15, 12, 8, .65), 0 1px 2px rgba(15, 12, 8, .45);
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  height: 5.5rem;
  width: 2rem;
  display: flex;
  justify-content: center;
}
.hero__scroll-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(250, 247, 241, .75));
  animation: scrollPulse 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); opacity: 0; }
  35%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ─────────────── Intro ─────────────── */

.intro {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  overflow: hidden;
}
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.intro__text .h2 { margin-bottom: 1.8rem; }
.intro__text .body { margin-bottom: 1.4rem; }
.intro__sig {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 2.4rem;
}
.intro__sig p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.diamond-orn {
  width: 30px;
  height: 34px;
  color: var(--gold);
  flex-shrink: 0;
}
.diamond-orn--light { color: var(--gold-pale); width: 36px; height: 40px; margin-inline: auto; }

.intro__collage { position: relative; }
.intro__photo { overflow: hidden; }
.intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.intro__photo:hover img { transform: scale(1.045); }
.intro__photo--main {
  aspect-ratio: 3 / 3.7;
  margin-left: 14%;
}
.intro__photo--float {
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  bottom: -2.6rem;
  left: 0;
  border: 6px solid var(--cream);
  box-shadow: 0 30px 60px rgba(23, 19, 16, .18);
}

/* ─────────────── Occasions ─────────────── */

.occasions {
  background: var(--paper);
  padding: clamp(5rem, 10vw, 8.5rem) 0;
}
.occasions__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}
.occ-card { display: block; }
.occ-card__media {
  overflow: hidden;
  aspect-ratio: 3 / 3.6;
  margin-bottom: 1.5rem;
}
.occ-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.occ-card:hover .occ-card__media img {
  transform: scale(1.06);
}
.occ-card__no {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .34em;
  color: var(--gold-text);
}
.occ-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.15;
  margin: .5rem 0 .55rem;
  position: relative;
  display: inline-block;
}
.occ-card__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease);
}
.occ-card:hover .occ-card__title::after { transform: scaleX(1); }
.occ-card__desc {
  font-size: .86rem;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.7;
}
.occ-card__cta {
  display: inline-block;
  margin-top: .9rem;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.occ-card__cta::after {
  content: '→';
  margin-left: .6em;
  display: inline-block;
  transition: transform .45s var(--ease);
}
.occ-card:hover .occ-card__cta::after { transform: translateX(5px); }

/* ─────────────── Marquee ─────────────── */

.marquee {
  background: var(--espresso);
  border-block: 1px solid rgba(192, 156, 94, .25);
  overflow: hidden;
  padding: 1.35rem 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold-pale);
  white-space: nowrap;
}
.marquee__track i {
  font-style: normal;
  font-size: .5rem;
  color: var(--gold);
}
@keyframes marquee {
  to { transform: translateX(calc(-100% / 5)); }
}

/* ─────────────── Experience (dark) ─────────────── */

.exp {
  background: var(--espresso);
  color: var(--paper);
  padding: clamp(5.5rem, 11vw, 9.5rem) 0;
}
.exp__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
}
.exp__text .h2 { margin-bottom: 2.8rem; }
.exp__text .h2 em { color: var(--gold); }
.exp__list { display: flex; flex-direction: column; }
.exp__item {
  border-top: 1px solid var(--line-light);
  transition: background .5s var(--ease);
}
.exp__item:last-child { border-bottom: 1px solid var(--line-light); }
.exp__item:hover, .exp__item.is-active { background: rgba(250, 247, 241, .05); }
.exp__btn {
  display: flex;
  gap: 1.6rem;
  width: 100%;
  padding: 1.55rem 1.2rem;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.exp__no {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--gold);
  padding-top: .45rem;
  flex-shrink: 0;
}
.exp__heading {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: .45rem;
  transition: color .4s;
}
.exp__item:hover .exp__heading, .exp__item.is-active .exp__heading { color: var(--gold-pale); }
.exp__desc {
  display: block;
  font-size: .87rem;
  font-weight: 300;
  color: rgba(250, 247, 241, .68);
  line-height: 1.75;
  max-width: 46ch;
}
.exp__media {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  aspect-ratio: 4 / 5.1;
  overflow: hidden;
}
.exp__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s var(--ease), transform 1.4s var(--ease);
}
.exp__img.is-active { opacity: 1; transform: scale(1); }

/* ─────────────── Steps ─────────────── */

.steps {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 8.5rem) 0;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  counter-reset: step;
}
.step {
  position: relative;
  text-align: center;
  padding: 0 .5rem;
}
.step__no {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4.2rem, 7vw, 6rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  margin-bottom: 1.2rem;
}
.step__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.75rem;
  margin-bottom: .7rem;
}
.step__desc {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 34ch;
  margin-inline: auto;
}

/* ─────────────── Purchase ─────────────── */

.purchase {
  background: var(--paper);
  padding: clamp(5rem, 10vw, 8.5rem) 0;
}
.purchase__inner { max-width: 980px; }
.purchase__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  box-shadow: 0 40px 90px -30px rgba(23, 19, 16, .16);
}
.purchase__corner {
  position: absolute;
  width: 46px;
  height: 46px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
}
.purchase__corner--tl { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; }
.purchase__corner--br { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; }
#ra-voucher-form-v1 {
  width: 100%;
  height: 100px;
  min-height: 640px;
  border: none;
  padding: 0;
  display: block;
}
.purchase__help {
  text-align: center;
  margin-top: 2.2rem;
  font-size: .84rem;
  color: var(--ink-soft);
}
.purchase__help a {
  color: var(--gold-text);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .3s;
}
.purchase__help a:hover { color: var(--ink); }
.purchase__proof {
  text-align: center;
  margin-top: .9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.purchase__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 2.8rem;
}
.purchase__trust li {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.purchase__trust svg {
  width: 26px;
  height: 26px;
  color: var(--gold-deep);
  flex-shrink: 0;
}

/* ─────────────── Templates ─────────────── */

.templates {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 8.5rem) 0;
}
.templates__row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.3rem;
  align-items: end;
}
.tpl {
  display: block;
  position: relative;
}
.tpl img {
  width: 100%;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -18px rgba(23, 19, 16, .25);
  transition: transform .7s var(--ease), box-shadow .7s var(--ease);
}
.tpl:hover img {
  transform: translateY(-8px);
  box-shadow: 0 30px 55px -20px rgba(23, 19, 16, .35);
}
.tpl__label {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
}
.tpl__label i {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: .6rem;
  letter-spacing: .18em;
  color: var(--gold-text);
  margin-top: .3rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.tpl:hover .tpl__label i { opacity: 1; transform: translateY(0); }
.tpl--dl img {
  width: 68.9%;
  margin-inline: auto;
}

/* ─────────────── Final CTA ─────────────── */

.final {
  position: relative;
  padding: clamp(7rem, 14vw, 12rem) 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.final__media { position: absolute; inset: 0; }
.final__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final__veil {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, .58);
}
.final__content {
  position: relative;
  z-index: 2;
  width: min(760px, 100% - 3rem);
  margin-inline: auto;
}
.final__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.16;
  margin: 1.6rem 0 2.6rem;
  padding-bottom: .06em;
  text-wrap: balance;
}
.final__title em {
  font-style: italic;
  color: var(--gold-pale);
}

/* ─────────────── Footer ─────────────── */

.footer {
  position: relative;
  background: var(--espresso);
  color: var(--paper);
  padding: clamp(4.5rem, 8vw, 7rem) 0 0;
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.footer__mark {
  width: 44px;
  height: 49px;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.footer__claim {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(250, 247, 241, .8);
}
.footer__col h3 {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.footer__col a {
  display: block;
  font-size: .85rem;
  font-weight: 300;
  color: rgba(250, 247, 241, .75);
  padding: .28rem 0;
  transition: color .3s;
}
.footer__mail { overflow-wrap: anywhere; }
.footer__col a:hover { color: var(--gold-pale); }
.footer__legal {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.6rem 8.5rem;
  border-top: 1px solid var(--line-light);
  font-size: .72rem;
  font-weight: 300;
  color: rgba(250, 247, 241, .5);
}
.footer__legal nav { display: flex; gap: 1.6rem; }
.footer__legal a { transition: color .3s; padding-block: .35rem; }
.footer__legal a:hover { color: var(--gold-pale); }
.footer__watermark {
  position: absolute;
  bottom: -.16em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4.4rem, 12.5vw, 11.5rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, .04);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

/* ─────────────── Sticky mobile CTA ─────────────── */

.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom));
  background: rgba(250, 247, 241, .92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 -1px 0 var(--line);
  transform: translateY(110%);
  transition: transform .5s var(--ease);
  display: none;
}
.sticky-cta.is-visible { transform: translateY(0); }

/* ─────────────── Reveal animations ─────────────── */

.reveal, .reveal-img {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-img { transform: translateY(0) scale(.985); clip-path: inset(6% 0 6% 0); transition: opacity 1.1s var(--ease), transform 1.2s var(--ease), clip-path 1.1s var(--ease); }
.reveal.is-inview, .reveal-img.is-inview {
  opacity: 1;
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0);
}

/* QA capture mode (?capture) - deterministic full-page screenshots */
html.capture .hero { min-height: 900px; }
html.capture .reveal,
html.capture .reveal-img { opacity: 1; transform: none; clip-path: none; transition: none; }
html.capture .hero__img { animation: none; }
html.capture .sticky-cta { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img { opacity: 1; transform: none; clip-path: none; transition: none; }
  .hero__img { animation: none; }
  .marquee__track { animation: none; }
  .hero__scroll-line { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─────────────── Responsive ─────────────── */

@media (max-width: 1080px) {
  .occasions__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.2rem 1.6rem; }
  .templates__row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem 1.3rem; }
}

@media (max-width: 1200px) {
  .nav__links { display: none; }
}

@media (max-width: 900px) {
  :root { --nav-h: 72px; }
  .nav__tel { display: none; }
  .intro__grid { grid-template-columns: 1fr; }
  .intro__collage {
    order: -1;
    padding-left: 3rem;
    max-width: 440px;
    margin-inline: auto;
    margin-bottom: 1.6rem;
    width: 100%;
  }
  .intro__photo--float { left: -3rem; bottom: -2.2rem; }
  .exp__grid { grid-template-columns: 1fr; }
  .exp__media { position: relative; top: 0; aspect-ratio: 16 / 11; order: -1; }
  .steps__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero__veil {
    background:
      radial-gradient(ellipse 120% 60% at 50% 48%, rgba(18, 15, 11, .52), rgba(18, 15, 11, 0) 74%),
      linear-gradient(to bottom, rgba(18, 15, 11, .66), rgba(18, 15, 11, .3) 42%, rgba(18, 15, 11, .66) 100%);
  }
  .btn--nav { padding: .95em 1.5em; font-size: .64rem; letter-spacing: .2em; }
  .nav__inner { width: calc(100% - 2rem); }
  .hero__actions .btn { width: 100%; }
  .occasions__grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .occ-card__media { aspect-ratio: 4 / 3.4; }
  .templates__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tpl--dl { grid-column: 1 / -1; }
  .tpl--dl img { width: 46%; }
  .purchase__trust { flex-direction: column; align-items: center; gap: 1.1rem; }
  .sticky-cta { display: block; }
  .footer__legal { padding-bottom: calc(7rem + env(safe-area-inset-bottom)); }
  .footer__watermark { font-size: clamp(3rem, 15vw, 4.4rem); letter-spacing: .06em; }
}

@media (max-width: 480px) {
  .nav__mark { width: 28px; height: 31px; }
  .nav__name { font-size: .78rem; letter-spacing: .22em; }
  .nav__sub { font-size: .5rem; letter-spacing: .4em; }
  .btn--nav { padding: .9em 1.1em; }
  .purchase__inner { width: calc(100% - 1.5rem); }
  .purchase__card { padding: 1.25rem .75rem; }
}

@media (max-width: 400px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
}
