/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Shantel+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ════════════════════════════════════════
   ROOT & RESET
   ════════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --cream: #f4f1ec;
  --cream-warm: #ede8df;
  --cream-dark: #e2dcd2;
  --forest: #333819;
  --forest-mid: #2d3f2d;
  --forest-light: #3d564a;
  --burgundy: #8b3a4a;
  --burgundy-light: #a85268;
  --gold: #c4a96a;
  --gold-dim: #a08950;
  --text: #2a2a28;
  --text-light: #6b6b66;
  --white: #ffffff;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

/* ═══ SPLASH SCREEN ═══ */
.splash {
  position: fixed; inset: 0;
  background: #E5E6E3;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash__content {
  display: flex;
  flex-direction: column;
  gap: 55px;
  text-align: center;
  padding: 40px;
}
.splash__label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #666e36;
  margin-bottom: 24px;
}
.splash__names {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(42px, 10vw, 72px);
  color: #495023;
  line-height: 1.1;
  margin-bottom: 12px;
}
.splash__date {
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(73,80,35,0.5);
  font-weight: 300;
  margin-bottom: 48px;
}
.splash__btn {
  background: #868c61;
  color: #E5E6E3;
  border: none;
  padding: 16px 40px;
  font-family: 'Shantel Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(102,110,54,0.25);
}
.splash__btn:hover {
  transform: translateY(-2px);
  background: #666e36;
  box-shadow: 0 6px 32px rgba(102,110,54,0.35);
}

body {
  font-family: 'Shantel Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.95s cubic-bezier(.22,1,.36,1), transform 0.95s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity:1; transform:translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
  overflow: hidden;
  gap: 30px;
}

.hero__photo {
  position: absolute; inset: 0;
  background: url('./img/fotter.jpg') center/cover no-repeat;
  opacity: 0.28;
}

.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(30,42,30,0.75) 100%);
  z-index: 1;
}

.hero__fade {
  position: absolute; bottom:0; left:0; right:0;
  height: 200px;
  /* background: linear-gradient(to bottom, transparent, var(--cream)); */
  z-index: 2;
}

.hero__content {
  position: relative; z-index: 3;
  text-align: center;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero__names {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(56px, 13vw, 138px);
  line-height: 1.0;
  color: var(--cream);
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
  opacity: 0;
  animation: fadeUp 1.1s cubic-bezier(.22,1,.36,1) 0.15s forwards;
}

.hero__amp {
  font-size: 0.55em;
  color: var(--gold);
  display: block;
  margin: 4px 0;
}

.hero__line {
  width: 44px; height: 1px;
  background: var(--gold);
  margin: 22px auto 0;
  opacity: 0;
  animation: fadeIn 0.9s ease 0.85s forwards;
}

.hero__date {
  font-size: 13px; font-weight: 300;
  letter-spacing: 6px;
  color: rgba(244,241,236,0.7);
  margin-top: 18px;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.05s forwards;
}

.hero__bottom {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero__scroll {
  position: absolute; bottom: 38px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s ease 1.9s forwards;
}

.hero__scroll-line {
  width: 1px; height: 30px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease infinite;
}

/* ─── PLAYER (title on top, track below, button centered) ─── */
.player {
  position: relative;
  z-index: 3;
  width: min(340px, 88vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.5s forwards;
}

.player__title {
  font-size: 11px; font-weight: 300;
  color: rgba(244,241,236,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.player__track {
  width: 100%; height: 2px;
  background: rgba(244,241,236,0.18);
  cursor: pointer;
  position: relative;
  margin-bottom: 18px;
}

.player__track-fill {
  position: absolute; top:0; left:0;
  height: 100%; width: 0%;
  background: var(--cream);
  transition: width 0.25s linear;
}

.player__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.player__time {
  font-size: 10px; font-weight: 300;
  color: rgba(244,241,236,0.35);
  letter-spacing: 1px;
  order: 2;
}

.player__btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  position: relative; z-index: 1;
  order: 1;
}

.player__btn:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 32px rgba(0,0,0,0.35);
}

.player__btn svg { width: 20px; height: 20px; fill: var(--forest); margin-left: 2px; }

/* ─── SCROLL ARROW ─── */
.scroll-arrow {
  position: relative;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
  cursor: pointer;
}

.scroll-arrow svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  opacity: 0.7;
  animation: bounceDown 2s ease-in-out infinite;
}

.scroll-arrow:hover svg {
  opacity: 1;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ════════════════════════════════════════
   DIVIDER
   ════════════════════════════════════════ */
.divider { width: 100%; height: 1px; position: relative; overflow: visible; }
.divider__line {
  position: absolute; top:0; left:12%; right:12%; height:1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}
.divider__dot {
  position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width: 5px; height: 5px;
  background: var(--gold-dim); border-radius: 50%;
}

/* ════════════════════════════════════════
   SECTION
   ════════════════════════════════════════ */
.section { padding: 96px 24px; position: relative; }
.section__inner { max-width: 700px; margin: 0 auto; }

.section__tag {
  font-size: 10px; letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-align: center; margin-bottom: 10px;
  font-weight: 400;
}

.section__title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(38px, 8vw, 62px);
  color: var(--forest);
  text-align: center;
  margin-bottom: 38px; line-height: 1.15;
}

/* ════════════════════════════════════════
   § 1 — INVITATION
   ════════════════════════════════════════ */
.inv { background: var(--cream); }

.inv__layout {
  display: flex; gap: 56px;
  align-items: flex-start; justify-content: center;
}

.inv__text { flex:1; max-width: 380px; }

.inv__text p {
  font-size: 15px; line-height: 2.05;
  color: var(--text-light); font-weight: 300;
  margin-bottom: 18px;
}
.inv__text p:last-of-type { margin-bottom:0; }

.inv__sign {
  font-family: 'Great Vibes', cursive;
  font-size: 25px; color: var(--forest-light);
  margin-top: 26px;
}

/* Calendar */
.cal {
  flex-shrink: 0; width: 248px;
  background: var(--white);
  border-radius: 16px;
  padding: 22px 20px 20px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.cal__head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-dark);
}

.cal__month { font-family: 'Great Vibes', cursive; font-size: 21px; color: var(--forest); }
.cal__year { font-size: 11px; color: var(--text-light); font-weight: 300; letter-spacing: 1px; }

.cal__wk { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 4px; }
.cal__wk span {
  text-align: center; font-size: 9.5px;
  letter-spacing: 0.3px; text-transform: uppercase;
  color: var(--text-light); padding: 4px 0; font-weight: 400;
}

.cal__grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }

.cal__d {
  text-align: center; font-size: 11.5px;
  padding: 6px 2px; color: var(--text);
  font-weight: 300; border-radius: 50%;
  position: relative; line-height: 1;
}
.cal__d--empty { visibility: hidden; }
.cal__d--star { font-weight: 600; color: var(--forest); z-index: 2; }

.cal-svg {
  position: absolute; inset: -3px;
  width: calc(100% + 6px); height: calc(100% + 6px);
  pointer-events: none; overflow: visible;
}

.cal-svg path {
  stroke: var(--burgundy); stroke-width: 2.2;
  fill: none; stroke-linecap: round;
  stroke-dasharray: 78; stroke-dashoffset: 78;
  animation: drawCircle 0.65s cubic-bezier(.4,0,.2,1) 1.7s forwards;
}

.cal-heart {
  position: absolute; top: -8px; right: -6px;
  width: 16px; height: 16px; fill: var(--burgundy);
  opacity: 0;
  animation: heartPop 0.45s cubic-bezier(.34,1.56,.64,1) 2.2s forwards;
  filter: drop-shadow(0 1px 2px rgba(139,58,74,0.35));
}

/* ════════════════════════════════════════
   § 2 — TIMELINE
   ════════════════════════════════════════ */
.tl-sec { background: var(--forest); position: relative; overflow: hidden; }

.tl-sec::before {
  content: ''; position: absolute; inset:0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(196,169,106,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(139,58,74,0.05) 0%, transparent 50%);
  z-index:0;
}

.tl-sec .section__inner { position: relative; z-index:1; }
.tl-sec .section__tag { color: rgba(196,169,106,0.55); }
.tl-sec .section__title { color: var(--cream); }

.tl { position: relative; padding: 8px 0; }

.tl::before {
  content: ''; position: absolute;
  left: 50%; top:0; bottom:0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(196,169,106,0.3) 12%, rgba(196,169,106,0.3) 88%, transparent);
  transform: translateX(-50%);
}

.tl-item { display: flex; align-items: center; position: relative; margin-bottom: 48px; }
.tl-item:last-child { margin-bottom:0; }

.tl-dot {
  position: absolute; left: 50%;
  transform: translateX(-50%);
  width: 9px; height: 9px;
  background: var(--gold);
  border: 2px solid var(--forest);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold);
  z-index: 1;
}

.tl-card {
  width: calc(50% - 38px);
  background: rgba(244,241,236,0.04);
  border-radius: 13px; padding: 20px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  border: 1px solid rgba(244,241,236,0.09);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tl-card:hover { transform: translateY(-2px); box-shadow: 0 5px 24px rgba(0,0,0,0.25); }

.tl-item--l .tl-card { margin-right: auto; text-align: right; }
.tl-item--r .tl-card { margin-left: auto; text-align: left; }

.tl-time { font-size: 10px; letter-spacing: 2.5px; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; font-weight: 500; }
.tl-event { font-family: 'Great Vibes', cursive; font-size: 20px; color: var(--cream); margin-bottom: 5px; line-height: 1.2; }
.tl-addr { font-size: 12px; color: rgba(244,241,236,0.5); font-weight: 300; line-height: 1.55; }
.tl-addr a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(196,169,106,0.3); transition: color 0.2s, border-color 0.2s; }
.tl-addr a:hover { color: #d4bb7e; border-color: #d4bb7e; }

/* ════════════════════════════════════════
   § 3 — DRESSCODE
   ════════════════════════════════════════ */
.dc { background: var(--cream); }

.dc__text { text-align: center; max-width: 460px; margin: 0 auto 44px; }
.dc__text p { font-size: 15px; line-height: 2; color: var(--text-light); font-weight: 300; }

.dc__palette { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }

.dc__sw { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.dc__circle {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s;
}
.dc__sw:hover .dc__circle { transform: translateY(-4px) scale(1.09); box-shadow: 0 8px 18px rgba(0,0,0,0.13); }

.dc__label { font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); font-weight: 400; }

/* ════════════════════════════════════════
   § 4 — COUNTDOWN + RSVP
   ════════════════════════════════════════ */
.cd-sec { background: var(--forest); position: relative; overflow: hidden; }

.cd-sec::before {
  content: ''; position: absolute; inset:0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(196,169,106,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(139,58,74,0.05) 0%, transparent 50%);
  z-index:0;
}

.cd-sec .section__inner { position: relative; z-index:1; }
.cd-sec .section__tag { color: rgba(196,169,106,0.55); }
.cd-sec .section__title { color: var(--cream); }

.timer {
  display: flex; justify-content: center; align-items: flex-start;
  gap: clamp(6px, 2vw, 20px); margin-bottom: 40px; flex-wrap: wrap;
}

.t-unit { display: flex; flex-direction: column; align-items: center; gap: 7px; min-width: 68px; }

.t-val {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(42px, 9.5vw, 74px);
  color: var(--cream); line-height:1; text-align: center;
}

.t-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(244,241,236,0.38); font-weight: 300; }

.t-colon {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(32px, 6.5vw, 54px);
  color: var(--gold); line-height:1; padding-top: 5px;
  animation: colonBlink 2.2s ease infinite;
}

.cd-para {
  text-align: center; font-size: 14px; line-height: 1.9;
  color: rgba(244,241,236,0.5); font-weight: 300;
  max-width: 440px; margin: 0 auto 38px;
}

/* RSVP */
.rsvp {
  max-width: 400px; margin: 0 auto;
  background: rgba(244,241,236,0.04);
  border: 1px solid rgba(244,241,236,0.09);
  border-radius: 18px; padding: 34px 30px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

.rsvp__f { margin-bottom: 18px; }

.rsvp__l {
  display: block; font-size: 9.5px; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(244,241,236,0.4);
  margin-bottom: 7px; font-weight: 400;
}

.rsvp__i {
  width: 100%; background: rgba(244,241,236,0.05);
  border: 1px solid rgba(244,241,236,0.11);
  border-radius: 9px; padding: 11px 15px;
  color: var(--cream); font-family: 'Shantel Sans', sans-serif;
  font-size: 13.5px; font-weight: 300; outline: none;
  transition: border-color 0.3s;
}
.rsvp__i::placeholder { color: rgba(244,241,236,0.2); }
.rsvp__i:focus { border-color: var(--gold); }
.rsvp__i[readonly] { opacity: 0.75; cursor: default; }

.rsvp__chk {
  display: flex; align-items: center; gap: 11px;
  margin-top: 3px; cursor: pointer;
}
.rsvp__chk input {
  appearance: none; -webkit-appearance: none;
  width: 19px; height: 19px;
  border: 1.5px solid rgba(244,241,236,0.22);
  border-radius: 5px; background: transparent;
  cursor: pointer; transition: all 0.2s; position: relative; flex-shrink:0;
}
.rsvp__chk input:checked { background: var(--gold); border-color: var(--gold); }
.rsvp__chk input:checked::after {
  content:''; position: absolute;
  left: 4px; top: 1.5px;
  width: 6px; height: 10px;
  border: solid var(--forest); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.rsvp__chk span { font-size: 12.5px; color: rgba(244,241,236,0.55); font-weight: 300; }

.rsvp__btn {
  width: 100%; margin-top: 26px; padding: 12px;
  background: var(--gold); border: none; border-radius: 36px;
  color: var(--forest); font-family: 'Shantel Sans', sans-serif;
  font-size: 10.5px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.rsvp__btn:hover { background: #d4bb7e; transform: translateY(-1px); }

.rsvp__guest-name {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(28px, 6vw, 42px);
  color: var(--cream);
  text-align: center;
  margin-bottom: 8px;
}

.rsvp__ok { display: none; text-align: center; padding: 14px 0; }
.rsvp__already { display: none; text-align: center; padding: 14px 0; }
.rsvp__ok-heart { font-size: 30px; display: block; margin-bottom: 10px; color: var(--burgundy); animation: heartPop 0.45s cubic-bezier(.34,1.56,.64,1) forwards; }
.rsvp__ok p, .rsvp__already p { font-size: 13.5px; color: rgba(244,241,236,0.65); font-weight: 300; line-height: 1.7; }

/* ════════════════════════════════════════
   § 5 — THANKS
   ════════════════════════════════════════ */
.thx { background: var(--cream-warm); text-align: center; }

.thx__photo {
  width: auto; height: auto;
  max-width: 350px;

  margin: 0 auto 42px; border-radius: 13px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 4px 28px rgba(0,0,0,0.09);
}
.thx__photo img { width:100%; height:100%; object-fit: cover; transition: transform 0.55s ease; }
.thx__photo:hover img { transform: scale(1.04); }

.thx__text { max-width: 480px; margin: 0 auto; }
.thx__text p { font-size: 15px; line-height: 2; color: var(--text-light); font-weight: 300; margin-bottom: 16px; }

.thx__sign { font-family: 'Great Vibes', cursive; font-size: 30px; color: var(--forest); margin-top: 28px; }

/* ════════════════════════════════════════
   KEYFRAMES
   ════════════════════════════════════════ */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes fadeUp { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
@keyframes scrollPulse { 0%,100%{opacity:.25;transform:scaleY(1)} 50%{opacity:.9;transform:scaleY(1.12)} }
@keyframes heartPop { 0%{opacity:0;transform:scale(0)} 60%{transform:scale(1.22)} 100%{opacity:1;transform:scale(1)} }
@keyframes drawCircle { to{stroke-dashoffset:0} }
@keyframes colonBlink { 0%,100%{opacity:1} 50%{opacity:.25} }

/* ════════════════════════════════════════
   PHOTOS SECTION
   ════════════════════════════════════════ */
.photos-sec {
  background: var(--cream);
}

.photos-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.photos-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream-dark);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photos-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.photos-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photos-item:hover img {
  transform: scale(1.05);
}

.photos-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--forest);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(196,169,106,0.25);
  margin-top: 20px;
}

.photos-download:hover {
  background: #d4bb7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(196,169,106,0.35);
}

.photos-download svg {
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width:660px) {
  .hero { padding: 30px 16px 20px; gap: 20px; justify-content: space-around; }
  .hero__bottom { gap: 30px; justify-content: space-around;}
  .hero__label { margin-bottom: 16px; }

  .inv__layout { flex-direction: column; align-items: center; }
  .inv__text { max-width:100%; text-align: center; }

  .tl::before { left: 26px; }
  .tl-dot { left: 26px; }
  .tl-item--l .tl-card, .tl-item--r .tl-card {
    width: calc(100% - 54px);
    margin-left: 54px; margin-right: 0;
    text-align: left;
  }

  .section { padding: 74px 20px; }
  .rsvp { padding: 28px 18px; }
  .player { width: min(300px, 86vw); }
  .player__btn { width: 56px; height: 56px; }
  .player__btn svg { width: 17px; height: 17px; }
  .scroll-arrow svg { width: 26px; height: 26px; }

  .photos-gallery {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
  }
  .photos-download {
    padding: 12px 24px;
    font-size: 11px;
  }
}

@media (max-width:380px) {
  .hero__names { font-size: 46px; }
  .t-val { font-size: 36px; }
  .t-unit { min-width: 48px; }
  .cal { width: 100%; }
}


