:root {
  --cream: #ffffff;
  --warm: #f9f9f9;
  --gold: #363636;
  --gold-light: #aaaaaa;
  --gold-dark: #222222;
  --blush: #f8f8f8;
  --rose: #f0f0f0;
  --text: #1a1a1a;
  --text-mid: #444444;
  --text-soft: #888888;
  --white: #ffffff;
}


*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  transition: opacity ease-in 0.2s;
}
body[unresolved] {
  opacity: 0;
  display: block;
  overflow: hidden;
  position: relative;
}
body {
  color: var(--text);
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("../images/whiteless/background.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 120%;
  opacity: 0.1;
  mix-blend-mode: multiply;

  pointer-events: none;
}

@media (orientation: landscape) {
  .hero::before {
    background-size: 40%;
  }
}

@media (orientation: portrait) {
  .hero::before {
    background-size: 120%;
  }
}
.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero-overlay {
  position: fixed;
  top: 0;
  left: 0;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.75) 35%,
      rgba(255, 255, 255, 0.75) 65%,
      rgba(255, 255, 255, 0.92) 100%
    ),
    radial-gradient(
      ellipse 80% 60% at 50% 40%,
      rgba(200, 200, 200, 0.1) 0%,
      transparent 70%
    );
  pointer-events: none;
}
.bokeh-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bokeh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  animation: floatOrb var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
}
@keyframes floatOrb {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  20% {
    opacity: var(--op, 0.35);
  }
  80% {
    opacity: var(--op, 0.35);
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) scale(1.15);
  }
}
.thread {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(100, 100, 100, 0.15) 30%,
    rgba(100, 100, 100, 0.15) 70%,
    transparent
  );
  pointer-events: none;
}
.thread-1 {
  left: 10%;
}
.thread-2 {
  left: 30%;
}
.thread-3 {
  right: 30%;
}
.thread-4 {
  right: 10%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 32px 56px;
  animation: fadeUp 0.9s 0.2s both;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #555555;
  display: block;
  margin-bottom: 36px;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  text-align: center;
}

@media all and (max-width: 767px) {
  .hero-eyebrow span {
    display: block;
  }
}
.hero-names {
  font-family: "Great Vibes", cursive;
  font-size: clamp(53px, 13vw, 140px);
  line-height: 1.1;
  color: var(--text);
}
.hero-names em {
  font-style: normal;
  color: #363636;
}
.hero-amp {
  display: block;
  font-family: "Great Vibes", cursive;
  font-size: clamp(40px, 7vw, 72px);
  color: #777;
  margin: 4px 0;
  line-height: 1;
}
.hero-date-row {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero-date-row::before,
.hero-date-row::after {
  content: "";
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, #888888);
}
.hero-date-row::after {
  background: linear-gradient(to left, transparent, #888888);
}
.hero-date {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.22em;
  color: #555555;
}
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #111;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: bounce 1.5s ease-in-out infinite;
  z-index: 1;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  margin: 48px auto;
  max-width: 500px;
  width: 100%;
  position: relative;
}
.dv-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(170, 170, 170, 0.3) 15%,
    rgba(170, 170, 170, 0.7) 50%,
    rgba(170, 170, 170, 0.3) 85%,
    transparent 100%
  );
  position: relative;
}

/* Р”РµРєРѕСЂР°С‚РёРІРЅР°СЏ С‚РѕС‡РєР° СЃ РјРµСЂС†Р°РЅРёРµРј */
.dv-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #181713, #120e02);
  box-shadow: 0 0 6px rgba(33, 31, 24, 0.6);
  flex-shrink: 0;
  animation: dotGlow 1.8s ease-in-out infinite;
}

.dv-gem {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #111, #42413d);
  transform: rotate(45deg);
  flex-shrink: 0;
  position: relative;
  margin: 5px;
}

.dv-gem::before,
.dv-gem::after {
  content: "";
  width: 10px;
  height: 10px;
  background: inherit;
  border-radius: 50%;
  position: absolute;
}

.dv-gem::before {
  top: -5px;
  left: 0;
}

.dv-gem::after {
  left: -5px;
  top: 0;
}

@keyframes dotGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
    box-shadow: 0 0 4px rgba(196, 167, 71, 0.4);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(16, 13, 5, 0.9);
  }
}

@keyframes gemPulse {
  0%,
  100% {
    transform: rotate(45deg) scale(1);
    opacity: 0.85;
    box-shadow:
      0 0 6px rgba(212, 175, 55, 0.5),
      inset 0 1px 0 rgba(255, 255, 240, 0.6);
  }
  50% {
    transform: rotate(45deg) scale(1.15);
    opacity: 1;
    box-shadow:
      0 0 16px rgba(13, 13, 11, 0.9),
      inset 0 1px 0 rgba(255, 255, 240, 0.8);
  }
}

.divider::before,
.divider::after {
  content: "вњ§";
  font-size: 10px;
  color: rgba(170, 170, 170, 0.4);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.divider::before {
  left: 5px;
}

.divider::after {
  right: 5px;
}

@media (max-width: 550px) {
  .divider {
    gap: 8px;
    margin: 32px auto;
  }

  .dv-dot {
    width: 4px;
    height: 4px;
  }
  .divider::before,
  .divider::after {
    font-size: 8px;
  }
}
.section {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 28px;
}

.tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #888888;
  display: block;
  margin-bottom: 14px;
  font-family: "Raleway", sans-serif;
  text-align: center;
}
.sec-title {
  font-family: "Great Vibes", cursive;
  font-size: clamp(32px, 7vw, 60px);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
  text-align: center;
}
.sec-title em {
  font-style: normal;
  color: #363636;
}

.quote {
  background: linear-gradient(135deg, #ffffff 0%, #fafaf8 100%);
  border: none;
  border-left: 4px solid #363636;
  padding: 48px 48px 48px 70px;
  border-radius: 24px;
  margin: 28px 0;
  position: relative;
  box-shadow:
    0 20px 35px -12px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.quote:hover {
  transform: translateY(-3px);
  box-shadow:
    0 25px 45px -15px rgba(0, 0, 0, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.quote::before {
  content: "“";
  width: 40px;
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: "Great Vibes", cursive;
  font-size: 88px;
  background: linear-gradient(135deg, #363636 0%, #888888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.quote:hover::before {
  opacity: 0.55;
}

.quote p {
  font-family: "Great Vibes", cursive;
  font-size: 32px;
  color: #1a1a1a;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.quote::after {
  content: "”";
  width: 40px;
  position: absolute;
  top: 150px;
  right: 20px;
  font-family: "Great Vibes", cursive;
  font-size: 88px;
  background: linear-gradient(135deg, #363636 0%, #888888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

@media all and (max-width: 768px) {
  .quote {
    padding: 36px 28px 36px 56px;
    border-radius: 20px;
  }

  .quote::before {
    font-size: 68px;
    top: 14px;
    left: 18px;
  }
  .quote::after {
    font-size: 68px;
    top: 80px;
    right: 10px;
  }

  .quote p {
    font-size: 33px;
  }
}

@media all and (max-width: 480px) {
  .quote {
    padding: 28px 20px 28px 48px;
  }

  .quote::before {
    font-size: 68px;
    top: 10px;
    left: 14px;
  }

  .quote::after {
    font-size: 68px;
    top: 80px;
    right: 10px;
  }

  .quote p {
    font-size: 20px;
  }
}

.couple-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 28px;
}
.couple-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  position: relative;
}
.couple-photo img {
  width: 100%;
  display: block;
}
.couple-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 28px 24px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96), transparent);
  text-align: center;
}
.couple-cap p {
  font-family: "Great Vibes", cursive;
  font-size: 36px;
  color: #444;
}

.gift-card-single {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 32px;
  margin-top: 22px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}
.gift-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 24px 0;
}
.gift-text {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  font-weight: 300;
  text-align: center;
}

.closing {
  background: linear-gradient(180deg, #f5f5f5 0%, #eeeeee 100%);
  padding: 72px 32px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(255, 255, 255, 0.8) 0%,
    transparent 70%
  );
}
.closing-tag {
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 24px;
  position: relative;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}
.clos44{
   font-size: clamp(18px, 5vw, 56px);
}
.closing-text {
  font-family: "Great Vibes", cursive;
  font-size: clamp(24px, 5vw, 56px);
  color: #111;
  line-height: 1.5;
  position: relative;
}
.closing-sig {
  margin-top: 32px;
  font-family: "Great Vibes", cursive;
  font-size: 40px;
  color: #363636;
  position: relative;
}
.or-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
.or-line {
  width: 36px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
.or-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #363636;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes bounce2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== QUIET LUXURY UNLOCK SCREEN ===== */

#unlock-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-image: url("../images/whiteless/image9.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow: hidden;
  transition:
    opacity 1s ease,
    visibility 1s ease;
}

@media (orientation: portrait) {
  #unlock-screen {
    background-image: url("../images/whiteless/image9.png");
  }
}

@media (orientation: landscape) {
  #unlock-screen {
    background-image: url("../images/whiteless/image9.png");
  }
}

#unlock-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

#unlock-screen::before {
  content: "";
  position: absolute;
  margin-top: 170px;
  margin-right: 0px;
  width: 440px;
  height: 440px;

  background-image: url("../images/whiteless/heart.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;

  animation: floatLight 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatLight {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  15% {
    transform: scale(1.15);
    opacity: 0.5;
  }
  20% {
    transform: scale(1.05);
  }
  28% {
    transform: scale(1.25);
    opacity: 0.75;
  }
  45% {
    transform: scale(1);
    opacity: 0.7;
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* HEADER */
.unlock-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2001;
}

/* GLASS BUTTON */
.music-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.music-toggle svg {
  width: 24px;
  height: 24px;
}

.music-toggle:hover {
  transform: scale(1.08);
  background: #111;
}

.music-toggle:hover svg {
  stroke: #fff;
}

/* LANGUAGE */
.lang-switcher {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 40px;
  padding: 4px;
  backdrop-filter: blur(10px);
}

.lang-btn {
  margin: 0 2px;
  font-size: 10px;
  padding: 6px 12px;
  border-radius: 40px;
  color: #888;
  transition: all 0.25s;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.lang-btn.active {
  background: #111;
  color: #fff;
}

/* CENTER */
.unlock-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeLuxury 1.2s ease forwards;
}

@keyframes fadeLuxury {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* LINE */
.vertical-line {
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, transparent, #999, transparent);
  animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.9;
  }
}

/* HEART */
.black-heart {
  width: 26px;
  height: 26px;
  animation: heartbeat 2.2s infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

/* TITLE */
.unlock-title {
  font-size: 14px;
  letter-spacing: 4px;
  color: #111;
}

/* NAMES */
.unlock-names-minimal {
  font-size: 25px;
  letter-spacing: 3px;
  font-weight: 300;
  color: #111;
  padding: 5px;
}

.amp-minimal {
  color: #bbb;
}

/* LOCK BUTTON PREMIUM */
.lock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
}

.lock-btn svg {
  width: 33px;
  height: 33px;
}

.lock-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.15), transparent 70%);
  opacity: 0.4;
  animation: pulseGlow 2.8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.25;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.5;
  }
}

.lock-btn::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -40%;
  width: 60%;
  height: 300%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
  transform: rotate(25deg);
  animation: lightSweep 3.5s infinite;
}

@keyframes lightSweep {
  0% {
    top: -120%;
  }
  100% {
    top: 120%;
  }
}

.lock-btn:hover {
  transform: scale(1.1);
  background: #111;
}

.lock-btn:hover svg {
  stroke: #fff;
}

.unlock-opening {
  animation: cinematicOpen 1.4s ease forwards;
}

@keyframes cinematicOpen {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  40% {
    transform: scale(1.05);
    filter: blur(2px);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
    filter: blur(10px);
  }
}

#unlock-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

#unlock-screen.opening::after {
  opacity: 1;
}

.hero,
.section,
.timeline-section,
.closing {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s ease;
}

body.loaded .hero,
body.loaded .section,
body.loaded .timeline-section,
body.loaded .closing {
  opacity: 1;
  transform: translateY(0);
}

.unlock-instruction {
  font-size: 16px;
  letter-spacing: 2px;
  color: #111;
}

.unlock1-instruction1 {
  font-size: 16px;
  letter-spacing: 2px;
  color: #111;
}

.luxury-timer-wrapper {
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding: 20px 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 60px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.timer-label {
  font-family: "Raleway", sans-serif;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 14px;
  font-weight: 400;
}

.luxury-timer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
}

.timer-block {
  text-align: center;
  min-width: 68px;
  background: #ffffffcc;
  backdrop-filter: blur(8px);
  padding: 10px 6px 6px;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.timer-num {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #222;
  line-height: 1.1;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  animation: gentlePulse 1.2s infinite ease;
}

.timer-unit {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #999;
  margin-top: 6px;
  font-weight: 400;
}

.timer-sep {
  font-size: 28px;
  font-weight: 200;
  color: #bbb;
  margin: 0 2px;
  animation: softBlink 1.4s infinite;
}

@keyframes gentlePulse {
  0% {
    opacity: 0.7;
    transform: translateY(0px);
    text-shadow: 0 0 0px rgba(0, 0, 0, 0);
  }
  50% {
    opacity: 1;
    transform: translateY(-1px);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  100% {
    opacity: 0.7;
    transform: translateY(0px);
    text-shadow: 0 0 0px rgba(0, 0, 0, 0);
  }
}

@keyframes softBlink {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* РђРґР°РїС‚РёРІ */
@media (max-width: 550px) {
  .luxury-timer {
    gap: 4px;
  }
  .timer-block {
    min-width: 54px;
    padding: 6px 4px 4px;
  }
  .timer-num {
    font-size: 24px;
  }
  .timer-unit {
    font-size: 7px;
  }
  .timer-sep {
    font-size: 22px;
    margin: 0 1px;
  }
  .luxury-timer-wrapper {
    padding: 14px 12px;
    margin-top: 28px;
    border-radius: 48px;
  }
}

.details-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0 32px;
}

.detail-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: flex;
  gap: 20px;
  backdrop-filter: blur(2px);
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 32px -12px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.08);
}

.detail-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #fafaf8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #363636;
  transition: background 0.2s;
}

.detail-card:hover .detail-icon {
  background: #363636;
  color: #ffffff;
}

.detail-content {
  flex: 1;
}

.detail-title {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 10px;
}

.detail-text {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.detail-note {
  font-size: 12px;
  color: #aaaaaa;
  font-weight: 300;
  margin-top: 6px;
}

.detail-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #363636;
  text-decoration: none;
  border-bottom: 1px solid rgba(54, 54, 54, 0.2);
  transition: border-color 0.2s;
}

.detail-link:hover {
  border-bottom-color: #363636;
}

.color-swatch {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.swatch:hover {
  transform: scale(1.1);
}

.details-footnote {
  text-align: center;
  margin: 48px 0 28px;
  padding: 24px 20px;
  background: rgba(250, 250, 248, 0.5);
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.ornament-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #cccccc, transparent);
  margin: 0 auto 18px auto;
}

.details-footnote p {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #555;
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.65;
}

@media (max-width: 620px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .detail-card {
    padding: 22px 20px;
  }
  .detail-icon {
    width: 44px;
    height: 44px;
  }
  .detail-title {
    font-size: 12px;
  }
  .detail-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .details-section {
    padding: 0 20px;
  }
  .detail-card {
    gap: 14px;
  }
}

/* ===== CALENDAR SECTION вЂ” MINIMAL LUXURY ===== */
.calendar-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.calendar-wrapper {
  background: #ffffff;
  border-radius: 36px;
  padding: 32px 28px 36px;
  margin: 32px 0 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.calendar-wrapper:hover {
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.06);
}

.calendar-month {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

.month-name {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #888888;
  background: #ffffff;
  padding: 0 18px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.month-decoration {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #d4d4d4,
    #d4d4d4,
    transparent
  );
  transform: translateY(-50%);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 28px;
}

.calendar-weekday {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbbbbb;
  text-align: center;
  padding: 12px 0 8px;
}

.calendar-day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #2a2a2a;
  background: #fefefe;
  border-radius: 50%;
  transition: all 0.2s ease;
  position: relative;
  cursor: default;
  border: 1px solid transparent;
}

.calendar-day:not(.empty):not(.wedding-day):hover {
  background: #f5f5f5;
  transform: scale(1.02);
  border-color: #e0e0e0;
}

.calendar-day.empty {
  background: transparent;
  pointer-events: none;
}

/* ===== TOвЂY KUNI вЂ” YURAK BILAN ===== */
.wedding-day {
  background: #363636;
  color: #ffffff;
  font-weight: 500;
  position: relative;
  box-shadow: 0 0 0 2px rgba(54, 54, 54, 0.15);
  animation: gentleGlow 2s ease-in-out infinite;
}

.heart-pulse {
  position: absolute;
  bottom: -6px;
  right: -4px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heart-pulse svg {
  width: 14px;
  height: 14px;
  fill: #363636;
  stroke: #ffffff;
  stroke-width: 1.2;
  animation: heartbeat 1.4s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

@keyframes gentleGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(54, 54, 54, 0.2);
    background: #363636;
  }
  50% {
    box-shadow: 0 0 0 6px rgba(54, 54, 54, 0.08);
    background: #2a2a2a;
  }
}

.calendar-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.note-dot {
  width: 8px;
  height: 8px;
  background: #363636;
  border-radius: 50%;
  display: inline-block;
  animation: softPulse 1.8s infinite;
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    background: #363636;
  }
}

.note-text {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaaaaa;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 560px) {
  .calendar-wrapper {
    padding: 24px 20px 28px;
  }
  .calendar-grid {
    gap: 4px;
  }
  .calendar-day {
    font-size: 13px;
  }
  .calendar-weekday {
    font-size: 9px;
    padding: 8px 0 4px;
  }
  .heart-pulse {
    bottom: -4px;
    right: -2px;
    width: 16px;
    height: 16px;
  }
  .heart-pulse svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 450px) {
  .calendar-grid {
    gap: 2px;
  }
  .calendar-day {
    font-size: 12px;
  }
  .calendar-wrapper {
    padding: 20px 16px 24px;
  }
  .note-text {
    font-size: 9px;
  }
}

/* ===== GALLERY SECTION вЂ” MINIMAL LUXURY ===== */
.gallery-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 40px 0 20px;
}

.gallery-card {
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -12px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.08);
}

.gallery-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-image img {
  transform: scale(1.03);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-label {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 40px;
}

.gallery-icon {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #363636;
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-icon {
  background: #363636;
  color: #ffffff;
  transform: scale(1.05);
}

.gallery-caption {
  padding: 20px 24px 24px;
  text-align: center;
}

.gallery-caption h4 {
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.gallery-caption p {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #888888;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 680px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-caption {
    padding: 18px 20px 20px;
  }

  .gallery-caption h4 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 0 20px 40px;
  }

  .gallery-caption {
    padding: 16px 16px 18px;
  }

  .gallery-icon {
    width: 38px;
    height: 38px;
  }

  .gallery-label {
    font-size: 9px;
    padding: 4px 12px;
  }
}

/* ===== LOCATION SECTION вЂ” MINIMAL LUXURY ===== */
.location-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.map-container {
  margin: 36px 0 28px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.map-container:hover {
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.map-container iframe {
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
}

.location-info {
  background: #ffffff;
  border-radius: 32px;
  padding: 28px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.address-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.address-icon {
  width: 48px;
  height: 48px;
  background: #fafaf8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #363636;
  transition: all 0.2s ease;
}

.address-text {
  flex: 1;
}

.address-text strong {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.address-text span {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #888888;
  line-height: 1.4;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 60px;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #363636;
}

.map-btn svg {
  transition: transform 0.2s ease;
}

.map-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.map-btn:hover svg {
  transform: scale(1.05);
}

.google-btn:hover {
  background: #4285f4;
  border-color: #4285f4;
  color: #ffffff;
}

.google-btn:hover svg {
  fill: #ffffff;
}

.yandex-btn:hover {
  background: #fc3f1d;
  border-color: #fc3f1d;
  color: #ffffff;
}

.yandex-btn:hover svg {
  fill: #ffffff;
}

.route-btn:hover {
  background: #363636;
  border-color: #363636;
  color: #ffffff;
}

.route-btn:hover svg {
  stroke: #ffffff;
}

/* Responsive */
@media (max-width: 600px) {
  .location-section {
    padding: 0 20px 48px;
  }

  .location-info {
    padding: 22px 24px;
  }

  .address-card {
    gap: 12px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .address-icon {
    width: 42px;
    height: 42px;
  }

  .address-text strong {
    font-size: 15px;
  }

  .address-text span {
    font-size: 12px;
  }

  .button-group {
    gap: 10px;
  }

  .map-btn {
    padding: 10px 20px;
    font-size: 10px;
    gap: 8px;
  }

  .map-btn svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .button-group {
    flex-direction: column;
    align-items: stretch;
  }

  .map-btn {
    justify-content: center;
    padding: 12px 20px;
  }

  .map-container iframe {
    height: 280px;
  }
}

/* ===== RSVP SECTION вЂ” MINIMAL LUXURY ===== */
.rsvp-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.rsvp-container {
  background: #ffffff;
  border-radius: 36px;
  padding: 40px 36px;
  margin: 36px 0 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.rsvp-container:hover {
  box-shadow: 0 20px 44px -12px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 32px;
  position: relative;
}

.form-label {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 12px;
}

.label-text {
  color: #555555;
}

.label-required {
  color: #363636;
  margin-left: 4px;
}

.form-input,
.form-textarea {
  width: 100%;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
  background: #fefefe;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  padding: 16px 20px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #363636;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(54, 54, 54, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #cccccc;
  font-weight: 300;
  font-size: 14px;
}

.form-textarea {
  resize: vertical;
  line-height: 1.5;
}

/* Guest selector */
.guest-selector {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #fefefe;
  border: 1px solid #e8e8e8;
  border-radius: 60px;
  padding: 6px 12px;
}

.guest-minus,
.guest-plus {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  color: #363636;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.guest-minus:hover,
.guest-plus:hover {
  background: #363636;
  color: #ffffff;
  transform: scale(1.05);
}

.guest-count {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  min-width: 40px;
  text-align: center;
}

.guest-hint {
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  color: #bbbbbb;
  margin-top: 10px;
  margin-left: 8px;
}

/* Radio cards */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.radio-card {
  flex: 1;
  cursor: pointer;
}

.radio-card input {
  display: none;
}

.radio-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  background: #fefefe;
  border: 1px solid #e8e8e8;
  border-radius: 60px;
  transition: all 0.3s ease;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555555;
}

.radio-card input:checked + .radio-content {
  background: #363636;
  border-color: #363636;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(54, 54, 54, 0.15);
}

.radio-icon {
  font-size: 14px;
  font-weight: 600;
}

.radio-card:hover .radio-content {
  border-color: #363636;
  transform: translateY(-2px);
}

/* Submit button */
.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  background: #363636;
  border: none;
  border-radius: 60px;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  margin-top: 16px;
}

.submit-btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(54, 54, 54, 0.2);
}

.submit-btn:active {
  transform: translateY(0);
}

.btn-icon svg {
  stroke: #ffffff;
  transition: transform 0.2s ease;
}

.submit-btn:hover .btn-icon svg {
  transform: translateX(3px);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  font-family: "Raleway", sans-serif;
  font-size: 11px;
  color: #bbbbbb;
}

.note-asterisk {
  color: #363636;
  font-size: 12px;
}

/* Toast message */
.toast-message {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  align-items: center;
  gap: 12px;
  background: #363636;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 60px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 400;
  z-index: 1000;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.toast-message.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-message svg {
  stroke: #ffffff;
}

/* Responsive */
@media (max-width: 560px) {
  .rsvp-section {
    padding: 0 20px 48px;
  }

  .rsvp-container {
    padding: 28px 24px;
  }

  .form-input,
  .form-textarea {
    padding: 14px 18px;
    font-size: 15px;
  }

  .radio-content {
    padding: 12px 16px;
    font-size: 13px;
  }

  .guest-selector {
    gap: 12px;
  }

  .guest-minus,
  .guest-plus {
    width: 36px;
    height: 36px;
  }

  .guest-count {
    font-size: 18px;
  }

  .submit-btn {
    padding: 14px 24px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .radio-group {
    flex-direction: column;
  }

  .rsvp-container {
    padding: 24px 20px;
  }
}

/* ===== SHARE SECTION вЂ” MINIMAL LUXURY ===== */
.share-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.share-container {
  background: #ffffff;
  border-radius: 36px;
  padding: 40px 36px;
  margin: 36px 0 20px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.share-container:hover {
  box-shadow: 0 20px 44px -12px rgba(0, 0, 0, 0.08);
}

.share-text {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 32px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fefefe;
  min-width: 110px;
}

.share-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.share-name {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555555;
  transition: color 0.3s ease;
}

/* Telegram */
.telegram-btn .share-icon {
  background: rgba(36, 161, 222, 0.1);
  color: #24a1de;
}

.telegram-btn:hover {
  transform: translateY(-4px);
  border-color: #24a1de;
  box-shadow: 0 12px 24px rgba(36, 161, 222, 0.15);
}

.telegram-btn:hover .share-icon {
  background: #24a1de;
  color: #ffffff;
  transform: scale(1.05);
}

.telegram-btn:hover .share-name {
  color: #24a1de;
}

/* WhatsApp */
.whatsapp-btn .share-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.whatsapp-btn:hover {
  transform: translateY(-4px);
  border-color: #25d366;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.15);
}

.whatsapp-btn:hover .share-icon {
  background: #25d366;
  color: #ffffff;
  transform: scale(1.05);
}

.whatsapp-btn:hover .share-name {
  color: #25d366;
}

/* Copy button */
.copy-btn {
  background: #fefefe;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.copy-btn .share-icon {
  background: rgba(54, 54, 54, 0.08);
  color: #363636;
}

.copy-btn:hover {
  transform: translateY(-4px);
  border-color: #363636;
  box-shadow: 0 12px 24px rgba(54, 54, 54, 0.12);
}

.copy-btn:hover .share-icon {
  background: #363636;
  color: #ffffff;
  transform: scale(1.05);
}

.copy-btn:hover .share-name {
  color: #363636;
}

/* Copy note */
.share-note {
  margin-top: 28px;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  color: #25d366;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.share-note.show {
  opacity: 1;
}

/* Responsive */
@media (max-width: 560px) {
  .share-section {
    padding: 0 20px 48px;
  }

  .share-container {
    padding: 32px 24px;
  }

  .share-text {
    font-size: 14px;
  }

  .share-buttons {
    gap: 14px;
  }

  .share-btn {
    padding: 8px 12px;
    min-width: 90px;
  }

  .share-icon {
    width: 44px;
    height: 44px;
  }

  .share-icon svg {
    width: 20px;
    height: 20px;
  }

  .share-name {
    font-size: 10px;
  }
}

@media (max-width: 400px) {
  .share-buttons {
    gap: 10px;
  }

  .share-btn {
    padding: 8px 12px;
    min-width: 80px;
  }

  .share-icon {
    width: 40px;
    height: 40px;
  }

  .share-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* ===== GUESTS SECTION вЂ” MINIMAL LUXURY ===== */
.guests-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.guests-container {
  background: #ffffff;
  border-radius: 32px;
  padding: 32px 28px;
  margin: 36px 0 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.guests-container:hover {
  box-shadow: 0 20px 44px -12px rgba(0, 0, 0, 0.08);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
}

.guests-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  min-width: 700px;
}

.guests-table th {
  text-align: left;
  padding: 18px 16px;
  background: #fafaf8;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888888;
  border-bottom: 1px solid #eeeeee;
}

.guests-table td {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
  color: #333333;
  font-weight: 400;
  transition: background 0.2s ease;
}

.guests-table tr:hover td {
  background: #fefaf5;
}

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.status-confirmed {
  background: rgba(37, 211, 102, 0.12);
  color: #1a8a4a;
}

.status-confirmed::before {
  content: "вњ“";
  font-weight: bold;
}

.status-declined {
  background: rgba(200, 60, 60, 0.1);
  color: #b33a3a;
}

.status-declined::before {
  content: "вњ—";
  font-weight: bold;
}

.status-pending {
  background: rgba(255, 180, 50, 0.12);
  color: #c97e00;
}

.status-pending::before {
  content: "в—‹";
  font-weight: bold;
}

/* Time styling */
.time-cell {
  font-family: monospace;
  font-size: 12px;
  color: #999;
  white-space: nowrap;
}

/* Stats */
.guests-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Raleway", sans-serif;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: #aaaaaa;
  letter-spacing: 0.02em;
}

.stat-value {
  font-size: 20px;
  font-weight: 500;
  color: #363636;
}

.stat-value.confirmed {
  color: #1a8a4a;
}

.stat-value.declined {
  color: #b33a3a;
}

/* Empty state */
.empty-row td {
  text-align: center;
  padding: 48px 16px;
  color: #bbbbbb;
  font-style: italic;
}

/* Responsive */
@media (max-width: 800px) {
  .guests-section {
    padding: 0 20px 48px;
  }

  .guests-container {
    padding: 24px 20px;
  }

  .guests-table th,
  .guests-table td {
    padding: 12px 12px;
    font-size: 13px;
  }

  .guests-table th {
    font-size: 10px;
  }

  .status-badge {
    padding: 4px 10px;
    font-size: 10px;
  }
}

@media (max-width: 560px) {
  .guests-stats {
    justify-content: center;
    gap: 20px;
  }

  .stat-value {
    font-size: 18px;
  }
}

/* ===== FOOTER SECTION вЂ” MINIMAL LUXURY ===== */
.footer-section {
  width: 100%;
  background: linear-gradient(135deg, #fafaf8 0%, #f5f5f3 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  margin-top: 40px;
  padding: 56px 24px 48px;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(54, 54, 54, 0.15),
    rgba(54, 54, 54, 0.15),
    transparent
  );
}

.footer-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #363636,
    #363636,
    transparent
  );
  opacity: 0.3;
}

.footer-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Decorative line */
.footer-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #bbbbbb, transparent);
  margin: 0 auto 32px auto;
}

/* Couple names */
.footer-couple {
  margin-bottom: 24px;
}

.footer-names {
  font-family: "Great Vibes", cursive;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.3;
}

.footer-amp {
  font-family: "Great Vibes", cursive;
  font-size: clamp(28px, 5vw, 40px);
  color: #888888;
  margin: 0 6px;
}

/* Date */
.footer-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.date-icon {
  font-size: 10px;
  color: #bbbbbb;
  animation: gentlePulse 2s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.date-text {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #666666;
}

/* Thank you message */
.footer-thanks {
  margin-bottom: 32px;
}

.footer-thanks p {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #888888;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

/* Copyright / decoration */
.footer-copyright {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.copyright-symbol {
  font-size: 14px;
  color: #bbbbbb;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  display: inline-block;
  animation: heartbeatSymbol 1.6s ease-in-out infinite;
}

@keyframes heartbeatSymbol {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
    color: #363636;
  }
}

/* Responsive */
@media (max-width: 560px) {
  .footer-section {
    padding: 44px 20px 40px;
  }

  .footer-line {
    margin-bottom: 28px;
  }

  .footer-date {
    gap: 12px;
  }

  .date-text {
    font-size: 11px;
    letter-spacing: 0.15em;
  }

  .footer-thanks p {
    font-size: 13px;
  }

  .footer-copyright {
    margin-top: 20px;
    padding-top: 20px;
  }
}

@media (max-width: 400px) {
  .footer-names {
    font-size: 28px;
  }

  .footer-amp {
    font-size: 24px;
  }

  .date-text {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .footer-thanks p {
    font-size: 12px;
  }
}

#guests123 {
  display: none;
}

@media (max-width: 480px) {
  .thread-2,
  .thread-3 {
    display: none;
  }
  .closing {
    padding: 56px 24px 48px;
  }
}

.overflowH {
  overflow: hidden;
}
