/* ============================================
   П & А Wedding — Brutal Warm Style
   ============================================ */

:root {
  --brown: #4a3928;
  --pink: #F2A0B0;
  --beige: #d4c4a8;
  --cream: #f5efe6;
  --white: #fff;
  --dark-brown: #2e2215;
  --gray: #888;
  --text: #6b5c4a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.pink { color: var(--pink); }
.highlight { color: var(--pink); }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(46, 34, 21, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 196, 168, 0.2);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: 'Sprite Graffiti', 'Permanent Marker', cursive;
  font-size: 32px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--beige);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--pink) !important;
  color: var(--brown) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 700 !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--beige);
  transition: 0.3s;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(46, 34, 21, 0.2) 0%,
    rgba(46, 34, 21, 0.1) 40%,
    rgba(255, 255, 255, 0.8) 85%,
    rgba(255, 255, 255, 1) 100%
  );
}

.hero-halftone {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(74, 57, 40, 0.5) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.08;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 100px 40px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-numbers {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  margin-bottom: 10px;
}

.hero-num-left,
.hero-num-right {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--pink);
  letter-spacing: 2px;
}

.hero-slogan {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 90px;
  line-height: 0.92;
  color: var(--brown);
  text-transform: uppercase;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  text-shadow: 2px 2px 0 rgba(255,255,255,0.8);
}

.hero-names {
  font-family: 'Sprite Graffiti', 'Permanent Marker', cursive;
  font-size: 130px;
  color: var(--pink);
  -webkit-text-stroke: 2px var(--pink);
  text-shadow:
    4px 4px 0 rgba(242, 160, 176, 0.2),
    -2px -2px 0 rgba(242, 160, 176, 0.1),
    0 0 40px rgba(242, 160, 176, 0.2);
  letter-spacing: -3px;
  margin-bottom: 30px;
  transform: rotate(-3deg);
}

.hero-recipient {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--brown);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 35px;
  text-align: center;
}

.hero-date-bar {
  display: flex;
  border-top: 3px solid var(--brown);
  border-bottom: 3px solid var(--brown);
  width: 100%;
  max-width: 600px;
}

.hero-date-cell {
  flex: 1;
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid var(--beige);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-date-cell:last-child {
  border-right: none;
}

.hero-date-cell .small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
}

.hero-date-cell .big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--brown);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.hero-scroll span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--beige);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* Decorative drips */
.drip {
  position: absolute;
  bottom: 0;
  width: 4px;
  background: var(--pink);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  animation: dripDown 3s ease-in infinite;
}

@keyframes dripDown {
  0% { opacity: 0; transform: translateY(-100%); }
  30% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(0); }
}

/* ============================================
   COUNTDOWN
   ============================================ */

.countdown-section {
  background: var(--dark-brown);
  padding: 60px 0;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.countdown-item {
  text-align: center;
}

.countdown-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--cream);
  line-height: 1;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.countdown-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--beige);
  margin-top: 5px;
  display: block;
  opacity: 0.6;
}

.countdown-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  color: var(--pink);
  padding-bottom: 20px;
}

/* ============================================
   SECTION TITLES
   ============================================ */

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 50px;
  text-align: center;
  color: var(--brown);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--pink);
  margin: 15px auto 0;
}

/* ============================================
   STORY
   ============================================ */

.story {
  padding: 100px 0;
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.story-card {
  background: var(--white);
  padding: 35px 25px;
  border: 2px solid var(--beige);
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.story-card:hover {
  transform: translateY(-5px);
  border-color: var(--brown);
}

.story-card.accent {
  background: var(--brown);
  border-color: var(--brown);
}

.story-card.accent .story-year,
.story-card.accent .story-text {
  color: var(--cream);
}

.story-card.accent .story-tag-label {
  color: var(--pink);
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(242, 160, 176, 0.08), transparent);
  transition: none;
  z-index: 1;
}

.story-card:hover::before {
  left: 150%;
  transition: left 0.6s ease;
}

.story-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--brown);
}

.story-tag-label {
  font-family: 'Permanent Marker', cursive;
  font-size: 18px;
  color: var(--pink);
  margin-bottom: 12px;
}

.story-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

/* ============================================
   DETAILS
   ============================================ */

.details {
  padding: 100px 0;
  background: var(--white);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.detail-card {
  text-align: center;
  padding: 50px 30px;
  border: 3px solid var(--brown);
  position: relative;
  transition: background 0.3s, color 0.3s;
  overflow: hidden;
}

.detail-card:hover {
  background: var(--brown);
  color: var(--cream);
}

.detail-card:hover .detail-sub {
  color: var(--beige);
}

.detail-card:hover .detail-label {
  color: var(--pink);
}

.detail-card::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: transparent;
  z-index: -1;
  transition: background 0.4s ease, filter 0.4s ease;
}

.detail-card:hover::after {
  background: var(--pink);
  filter: blur(10px);
  opacity: 0.2;
}

.detail-icon {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--pink);
}

.detail-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.detail-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
}

.detail-sub {
  font-size: 13px;
  color: var(--text);
  margin-top: 5px;
  transition: color 0.3s;
}

/* ============================================
   DRESSCODE
   ============================================ */

.dresscode {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}

.dresscode-subtitle {
  font-size: 16px;
  color: var(--text);
  margin-top: -35px;
  margin-bottom: 50px;
  line-height: 1.6;
}

.dresscode-palette {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.palette-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.palette-item:hover {
  transform: translateY(-5px);
}

.palette-item span {
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.5px;
}

.color-dot-big {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(74, 57, 40, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.color-dot-big:hover {
  transform: scale(1.15);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.dot-green { background: #7a8c6e; }
.dot-brown { background: #6b5040; }
.dot-pink { background: #e8b4c0; }
.dot-beige { background: #d4c4a8; }
.dot-dark-brown { background: #8b6f5e; }
.dot-light-pink { background: #f2d4dc; }
.dot-light-green { background: #b5c8a5; }

.dresscode-note {
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
}

/* ============================================
   REQUEST (flower section from back of invitation)
   ============================================ */

.request {
  padding: 90px 0;
  background: var(--cream);
  text-align: center;
}

.request-flower {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.request-flower img {
  width: 180px;
  height: auto;
  opacity: 0.5;
  filter: hue-rotate(-10deg) saturate(1.2) brightness(1.1);
}

.request-title {
  font-family: 'Permanent Marker', cursive;
  font-size: 48px;
  color: var(--brown);
  margin-bottom: 30px;
  transform: rotate(-1deg);
}

.request-text {
  max-width: 620px;
  margin: 0 auto 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.request-signature {
  margin-top: 40px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
}

/* ============================================
   SCHEDULE / TIMELINE
   ============================================ */

.schedule {
  padding: 100px 0;
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--beige);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline.timeline-animate::before {
  transform: scaleY(1);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  width: 70px;
  text-align: right;
  flex-shrink: 0;
  padding-top: 2px;
  color: var(--brown);
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pink);
  border: 3px solid var(--white);
  flex-shrink: 0;
  margin-top: 6px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 3px var(--pink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 5px var(--pink), 0 0 20px rgba(242, 160, 176, 0.3);
}

.timeline-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 3px;
  color: var(--brown);
}

.timeline-content p {
  font-size: 14px;
  color: var(--text);
}

/* ============================================
   SHARE (Telegram / MAX / Yandex Disk)
   ============================================ */

.share {
  padding: 90px 0;
  background: var(--cream);
  text-align: center;
}

.share-subtitle {
  font-size: 15px;
  color: var(--text);
  margin-top: -32px;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.share-row {
  max-width: 520px;
  margin: 0 auto 28px;
  text-align: left;
}

.share-row:last-of-type {
  margin-bottom: 0;
}

.share-row-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gray);
  margin-bottom: 12px;
}

.share-pills {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.share-pill {
  flex: 1 1 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--white);
  border: 1.5px solid var(--beige);
  border-radius: 999px;
  color: var(--brown);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.share-pill:hover {
  transform: translateY(-2px);
  border-color: var(--brown);
  box-shadow: 0 6px 18px rgba(74, 57, 40, 0.12);
}

.share-pill-icon {
  width: 22px;
  height: 22px;
  color: var(--brown);
  flex-shrink: 0;
}

.share-pill--wide {
  flex: 1 1 100%;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
  padding: 100px 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
  max-width: 620px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--beige);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s, transform 0.5s;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242, 160, 176, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text);
  opacity: 0.4;
  background: rgba(212, 196, 168, 0.3);
  border: 2px dashed var(--beige);
}

/* ============================================
   RSVP
   ============================================ */

.rsvp {
  padding: 100px 0;
  background: var(--brown);
}

.rsvp .section-title {
  color: var(--cream);
}

.rsvp-subtitle {
  text-align: center;
  font-family: 'Permanent Marker', cursive;
  font-size: 22px;
  color: var(--pink);
  margin-top: -35px;
  margin-bottom: 50px;
}

.rsvp-form {
  max-width: 650px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  margin-bottom: 25px;
}

.form-group label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--beige);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(212, 196, 168, 0.3);
  color: var(--cream);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 15px rgba(242, 160, 176, 0.15);
}

.form-group select option {
  background: var(--brown);
  color: var(--cream);
}

.form-group textarea {
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 20px;
  padding-top: 5px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--cream) !important;
}

.radio-label input {
  display: none;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(212, 196, 168, 0.4);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.3s;
  flex-shrink: 0;
}

.radio-label input:checked + .radio-custom {
  border-color: var(--pink);
}

.radio-label input:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--pink);
  color: var(--brown);
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
  width: 400px;
  height: 400px;
}

.btn-submit:hover {
  background: #e8919f;
}

.btn-submit:active {
  transform: scale(0.98);
}

.rsvp-success {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.success-tag {
  font-family: 'Permanent Marker', cursive;
  font-size: 60px;
  color: var(--pink);
  margin-bottom: 15px;
}

.rsvp-success p {
  font-size: 16px;
  color: var(--beige);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--dark-brown);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(212, 196, 168, 0.15);
}

.footer-names {
  font-family: 'Sprite Graffiti', 'Permanent Marker', cursive;
  font-size: 64px;
  color: var(--cream);
  margin-bottom: 5px;
  letter-spacing: 4px;
}

.footer-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 5px;
  color: var(--beige);
  margin-bottom: 25px;
  opacity: 0.6;
}

.footer-line {
  width: 60px;
  height: 3px;
  background: var(--pink);
  margin: 0 auto 25px;
}

.footer-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text);
}

/* ============================================
   GRAFFITI TAGS (from invitation)
   ============================================ */

.tag {
  position: absolute;
  font-family: 'Permanent Marker', cursive;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
  filter: url(#spraypaint);
}

.tag-arrow {
  font-size: 90px;
  color: rgba(174, 217, 138, 0.45);
  transform: rotate(-5deg);
  letter-spacing: 1px;
}

.tag-forever {
  font-size: 56px;
  color: rgba(174, 217, 138, 0.4);
  transform: rotate(3deg);
  letter-spacing: 1px;
}

.tag-yes {
  font-size: 80px;
  color: rgba(242, 160, 176, 0.45);
  transform: rotate(-6deg);
  letter-spacing: 1px;
}

.tag-2026 {
  font-size: 44px;
  color: rgba(74, 57, 40, 0.55);
  transform: rotate(15deg);
  letter-spacing: 3px;
}

/* Section positioning helpers for tags */
.hero,
.story,
.details,
.dresscode,
.request,
.schedule,
.gallery,
.rsvp,
.footer {
  position: relative;
  overflow: hidden;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.hero-names.glitch {
  animation: glitch 0.2s steps(2) forwards;
}

@keyframes glitch {
  0% {
    text-shadow: 4px 4px 0 rgba(242,160,176,0.2), -2px -2px 0 rgba(242,160,176,0.1), 0 0 40px rgba(242,160,176,0.2);
  }
  25% {
    text-shadow: -4px 2px 0 rgba(212,196,168,0.5), 4px -2px 0 rgba(242,160,176,0.5), 0 0 20px rgba(242,160,176,0.3);
    transform: translate(3px, -2px) rotate(-3deg);
  }
  50% {
    text-shadow: 3px -3px 0 rgba(242,160,176,0.6), -3px 3px 0 rgba(212,196,168,0.4), 0 0 30px rgba(242,160,176,0.2);
    transform: translate(-2px, 3px) rotate(-3deg);
  }
  75% {
    text-shadow: -2px 1px 0 rgba(212,196,168,0.4), 2px -1px 0 rgba(242,160,176,0.5);
    transform: translate(1px, -1px) rotate(-3deg);
  }
  100% {
    text-shadow: 4px 4px 0 rgba(242,160,176,0.2), -2px -2px 0 rgba(242,160,176,0.1), 0 0 40px rgba(242,160,176,0.2);
    transform: rotate(-3deg);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-slogan { font-size: 60px; }
  .hero-names { font-size: 90px; }
  .countdown-num { font-size: 50px; }
  .dresscode-palette { gap: 20px; }
  .color-dot-big { width: 50px; height: 50px; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(46, 34, 21, 0.95);
    flex-direction: column;
    padding: 20px 30px;
    gap: 15px;
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .hero-slogan { font-size: 44px; }
  .hero-names { font-size: 60px; }
  .hero-date-bar { flex-direction: column; }
  .hero-date-cell {
    border-right: none;
    border-bottom: 1px solid var(--beige);
    padding: 12px;
  }
  .hero-date-cell:last-child { border-bottom: none; }
  .section-title { font-size: 44px; }
  .story-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .countdown { gap: 8px; }
  .countdown-num { font-size: 36px; }
  .countdown-sep { font-size: 30px; }
  .timeline::before { left: 60px; }
  .timeline-time { font-size: 22px; width: 50px; }
  .dresscode-palette { gap: 15px; }
  .color-dot-big { width: 42px; height: 42px; }
  .palette-item span { font-size: 10px; }
}
