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

@font-face {
  font-family: Kaligrafic;
  src: url('./assets/fonts/13_English_Script.ttf') format('truetype');
  font-display: block;
  font-style: normal;
}

:root {
  --bg: #fffaf9;
  --dark: #87776b;
  --gold: #C9A864;
  --gold2: #A8832A;
  --muted: rgba(44, 26, 14, 0.45);
  --cream: #F5EFE0;
  --purple: #d4b7c3;
}

html, body {
  min-height: 100%;
}

body {
  font-family: 'Cormorant Garamond', serif;
  color: var(--dark);
  overflow-x: hidden;
  background: var(--bg);
  opacity: 0;
  transition: opacity 0.5s ease;
  position: relative;
}

body.ready {
  opacity: 1;
}

/* SIDE DECORATIONS (desktop only — body pseudo-elements) */
@media (min-width: 768px) {
  body::before,
  body::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(130px, 11vw, 190px);
    background-image: url('assets/images/line.webp');
    background-repeat: repeat-y;
    background-size: 100% auto;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
    opacity: 0.88;
  }

  body::before {
    left: 0;
  }

  body::after {
    right: 0;
    transform: scaleX(-1);
  }
}

/* MUSIC BUTTON */
.music-btn {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 100;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 100, 0.35);
  background: rgba(253, 250, 246, 0.88);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.music-btn:hover { opacity: 1; }
.music-icon-off  { display: none; }
.music-btn.is-playing .music-icon-on  { display: none; }
.music-btn.is-playing .music-icon-off { display: block; }

/* LANG SWITCHER */
.lang-switcher {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 100;
  display: flex;
  gap: 2px;
  background: rgba(253, 250, 246, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 4px 8px;
  border: 1px solid rgba(201, 168, 100, 0.3);
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--dark);
  padding: 4px 8px;
  border-radius: 14px;
  transition: background 0.2s, color 0.2s;
  opacity: 0.5;
}

.lang-btn.active {
  background: var(--dark);
  color: #fff;
  opacity: 1;
}

/* ══ HERO ══ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 28px 40px;
}

.hero-background-top {
  position: absolute;
  left: -20%;
  right: auto;
  top: 0;
  width: 120%;
}

.hero-background-bottom {
  position: absolute;
  left: -5%;
  right: auto;
  bottom: 0;
  width: 145%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7%;
  background: linear-gradient(to top, transparent 20%, var(--bg) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 7%;
  background: linear-gradient(to bottom, transparent 20%, var(--bg) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-floral {
  position: absolute;
  top: -10px;
  right: -10px;
  width: clamp(180px, 55vw, 280px);
  transform: rotate(15deg) scaleX(-1);
  opacity: 0.9;
  pointer-events: none;
}

.hero-floral-bottom {
  position: absolute;
  bottom: 60px;
  left: -10px;
  width: clamp(140px, 45vw, 220px);
  transform: rotate(-20deg);
  opacity: 0.65;
  pointer-events: none;
}

.hero-hummingbird {
  position: absolute;
  right: 8px;
  bottom: 110px;
  width: clamp(85px, 22vw, 110px);
  transform: rotate(5deg);
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.07));
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-name {
  font-family: 'Kaligrafic', cursive;
  font-style: italic;
  font-size: clamp(63px, 24vw, 112px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 12px;
}

.hero-event {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(18px, 5.3vw, 25px);
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero-rule {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 18px;
}

.hero-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 4.2vw, 20px);
  font-weight: bold;
  letter-spacing: 0.28em;
  color: var(--dark);
  opacity: 0.55;
}

.hero-greeting {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(10px, 2.8vw, 13px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.45;
  z-index: 1;
}

/* ══ INVITATION ══ */
.invite {
  padding: 72px 28px 56px;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}

.invite-greeting {
  font-family: 'Kaligrafic', cursive;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--dark);
  margin-bottom: 36px;
}

#greeting-general {
  font-size: 28px;
}

.invite-pre {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(9px, 2.6vw, 11px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 1;
  margin-bottom: 20px;
}

.invite-name {
  font-family: 'Kaligrafic', cursive;
  font-style: italic;
  font-size: clamp(42px, 15vw, 66px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 20px;
}

.invite-body-text {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(10px, 2.8vw, 12px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 2.2;
  color: var(--dark);
  opacity: 1;
  margin-bottom: 48px;
}

/* Date display */
.date-display {
  border-top: 1px solid rgba(201, 168, 100, 0.35);
  padding: 28px 0;
}

.date-cali-label {
  font-family: 'Kaligrafic', cursive;
  font-size: clamp(22px, 7vw, 34px);
  color: var(--dark);
  opacity: 0.7;
  margin-bottom: 10px;
  font-style: italic;
}

.date-big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(88px, 26vw, 120px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.date-full-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 4.2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
}

/* Calendar */
.calendar-section {
  padding: 20px 24px;
  background: rgba(201, 168, 100, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(201, 168, 100, 0.2);
}

.cal-month {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold2);
  text-align: center;
  margin-bottom: 16px;
}

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

.cal-dow {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(7px, 2vw, 9px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding-bottom: 8px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(11px, 3vw, 14px);
  color: var(--dark);
  border-radius: 50%;
}

.cal-day.empty {
  visibility: hidden;
}

.cal-day.highlight {
  background: var(--dark);
  color: #fff;
  font-weight: 500;
}

/* ══ COUNTDOWN — white style ══ */
.countdown-section {
  padding: 48px 28px 52px;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.countdown-dots, .hosts-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 28px;
}

.cdot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #fff 0%, #dfd8d0 55%, #bfb5ac 100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.cdot.lg {
  width: 9px;
  height: 9px;
}

.cd-about {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.cd-cali-title {
  font-family: 'Kaligrafic', cursive;
  font-size: clamp(27px, 8.4vw, 38px);
  color: var(--dark);
  margin-bottom: 24px;
  opacity: 0.8;
}

.cd-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: nowrap;
}

.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.cd-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(44px, 12vw, 60px);
  color: var(--dark);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.cd-label {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(7px, 1.8vw, 9px);
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--muted);
}

.cd-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 8vw, 40px);
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
  opacity: 0.6;
}

/* ══ HOSTS ══ */
.hosts-section {
  padding: 40px 28px 28px;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.divider {
  border-top: 1px solid rgba(201, 168, 100, 0.35);
  max-width: 80%;
  margin: 0 auto;
}

.hosts-label {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(11px, 3vw, 13px);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 30px;
}

.hosts-name {
  font-family: 'Kaligrafic', cursive;
  font-size: clamp(42px, 14vw, 63px);
  color: var(--dark);
  line-height: 1.1;
}

/* ══ LOCATION ══ */
.location-section {
  padding: 20px 28px 64px;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.loc-floral {
  display: block;
  width: clamp(120px, 40vw, 180px);
  margin: 0 auto 12px;
  opacity: 0.8;
}

.location-pin {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}

.loc-heading {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}

.loc-restaurant-cali {
  font-family: 'Kaligrafic', cursive;
  font-size: clamp(32px, 10vw, 52px);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 4px;
}

.loc-subtitle {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(13px, 3.6vw, 17px);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}

.loc-address {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(11px, 3vw, 14px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.7;
  line-height: 1.9;
  margin-bottom: 24px;
}

.map-embed {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(201, 168, 100, 0.25);
  position: relative;
}

.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: none;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 36px;
  background: var(--dark);
  color: #fff;
  border-radius: 50px;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, opacity 0.2s;
}

.map-btn:hover {
  opacity: 0.85;
}

/* ══ RSVP ══ */
.rsvp {
  padding: 56px 28px 72px;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 100, 0.2);
  position: relative;
  z-index: 1;
}

.rsvp-heading {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(10px, 2.8vw, 12px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 2;
  margin-bottom: 36px;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.form-label {
  display: block;
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}

.form-input {
  width: 100%;
  padding: 14px 22px;
  background: transparent;
  border: 1.5px solid rgba(44, 26, 14, 0.2);
  border-radius: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--gold);
}

.form-input::placeholder {
  color: rgba(44, 26, 14, 0.22);
  font-style: italic;
}

.form-note {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.7;
  line-height: 1.9;
  text-align: center;
  margin-top: -10px;
}

.radio-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.radio-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.radio-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(44, 26, 14, 0.3);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}

.radio-opt.selected .radio-circle {
  border-color: var(--dark);
}

.radio-opt.selected .radio-circle::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--dark);
}

.radio-opt input {
  display: none;
}

.radio-text {
  font-family: 'Cormorant Garamond', sans-serif;
  font-size: clamp(10px, 2.8vw, 12px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.75;
  transition: color 0.2s, opacity 0.2s;
  font-weight: bold;
}

.radio-opt.selected .radio-text {
  color: var(--dark);
  opacity: 1;
}

/* Guest counter */
.guest-count-block {
}

.counter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1.5px solid rgba(44, 26, 14, 0.2);
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
}

.counter-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  font-size: 20px;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  font-family: 'Cormorant Garamond', serif;
}

.counter-btn:hover {
  background: rgba(44, 26, 14, 0.05);
}

.counter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--dark);
  min-width: 36px;
  text-align: center;
  border-left: 1px solid rgba(44, 26, 14, 0.12);
  border-right: 1px solid rgba(44, 26, 14, 0.12);
  padding: 0 4px;
  line-height: 44px;
}

.submit-btn {
  margin-top: 4px;
  padding: 16px 40px;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Kaligrafic', cursive;
  font-size: 20px;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s, background 0.2s;
  letter-spacing: 0.04em;
}

.submit-btn:hover {
  background: var(--purple);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.success-img {
  width: 130%;
  max-width: 100px;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 36px 24px;
}

.success-msg .success-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.success-msg p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 5vw, 22px);
  color: var(--dark);
  line-height: 1.6;
}

.celebrating-text {
  font-family: 'Kaligrafic', cursive;
  font-size: clamp(34px, 3.6vw, 52px);
  text-align: center;
  margin: 0 auto;
}

/* ══ HERO FLOWER BUNCH (заменить на реальный файл) ══ */
.hero-flower-bunch {
  position: absolute;
  top: -20px;
  right: -20px;
  width: clamp(200px, 65vw, 320px);
  pointer-events: none;
  z-index: 1;
}

/* ══ FALLING PETALS ══ */
#petals-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 500;
  overflow: hidden;
}

.fp {
  position: absolute;
  top: -20px;
  will-change: transform, opacity;
  transform-origin: center center;
}

@keyframes fpFall {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 0.8;
  }
  88% {
    opacity: 0.45;
  }
  100% {
    transform: translateY(108vh) translateX(var(--dx, 20px)) rotate(var(--rot, 360deg));
    opacity: 0;
  }
}

/* ══ SCATTER DOTS (invite-regards decorations) ══ */
.scatter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sd {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: var(--s, 5px);
  height: calc(var(--s, 5px) * 1.5);
  background: #C9A864;
  border-radius: 50% 50% 50% 0;
  transform: rotate(var(--r, 0deg));
  opacity: var(--o, 0.5);
  display: block;
}

/* ══ FOOTER ══ */
.footer {
  width: 100%;
  position: relative;
  z-index: 1;
  line-height: 0;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52%;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.footer-img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   ANIMATION SYSTEM
   ============================================= */

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes revealScale {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes revealFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

[data-anim] {
  opacity: 0;
}

[data-anim="up"] {
  transform: translateY(32px);
}

[data-anim="scale"] {
  transform: scale(0.94);
}

[data-anim="up"].animated {
  animation: revealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms) both;
}

[data-anim="scale"].animated {
  animation: revealScale 1.05s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms) both;
}

[data-anim="fade"].animated {
  animation: revealFade 0.85s ease var(--d, 0ms) both;
}

@media (prefers-reduced-motion: reduce) {
  body {
    opacity: 1 !important;
    transition: none;
  }

  [data-anim] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ══ TABLET 768px+ ══ */
@media (min-width: 768px) {
  .invite,
  .location-section,
  .rsvp,
  .countdown-section {
    max-width: 600px;
  }

  .hosts-section {
    max-width: 540px;
  }

  /* Hero цветы и footer — только на мобилке */
  .hero-background-top,
  .hero-background-bottom,
  .footer {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 80px 60px 60px;
  }

  .hero-name {
    font-size: clamp(90px, 11vw, 148px);
    margin-bottom: 16px;
  }

  .hero-event {
    font-size: clamp(15px, 1.8vw, 22px);
    margin-bottom: 28px;
  }

  .hero-date {
    font-size: clamp(15px, 1.6vw, 22px);
  }

  /* Invitation */
  .invite {
    padding: 88px 40px 72px;
  }

  .invite-greeting {
    font-size: clamp(24px, 3vw, 38px);
    margin-bottom: 44px;
  }

  #greeting-general {
    font-size: clamp(28px, 3.5vw, 44px);
  }

  .invite-pre {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .invite-name {
    font-size: clamp(60px, 7vw, 92px);
    margin-bottom: 24px;
  }

  .invite-body-text {
    font-size: 13px;
    margin-bottom: 56px;
  }

  /* Date */
  .date-cali-label {
    font-size: clamp(28px, 3.2vw, 46px);
  }

  .date-full-text {
    font-size: clamp(16px, 1.8vw, 22px);
  }

  /* Calendar */
  .cal-dow {
    font-size: 10px;
  }

  .cal-day {
    font-size: 14px;
  }

  /* Hosts */
  .hosts-section {
    padding: 52px 40px 36px;
  }

  .hosts-label {
    font-size: 14px;
  }

  .hosts-name {
    font-size: clamp(56px, 6vw, 88px);
  }

  /* Location */
  .location-section {
    padding: 28px 40px 80px;
  }

  .loc-restaurant-cali {
    font-size: clamp(34px, 3.6vw, 56px);
  }

  .loc-subtitle {
    font-size: 13px;
  }

  .loc-address {
    font-size: 11px;
  }

  .map-embed iframe {
    height: 300px;
  }

  /* Countdown */
  .countdown-section {
    padding: 60px 40px 68px;
  }

  .cd-cali-title {
    font-size: clamp(34px, 3.6vw, 52px);
    margin-bottom: 32px;
  }

  .cd-num {
    font-size: clamp(60px, 6.5vw, 88px);
  }

  .cd-sep {
    font-size: clamp(38px, 4.2vw, 58px);
  }

  .cd-label {
    font-size: 11px;
  }

  /* RSVP */
  .rsvp {
    padding: 72px 40px 88px;
  }

  .rsvp-heading {
    font-size: 13px;
    margin-bottom: 44px;
  }

  .radio-text {
    font-size: 13px;
  }

  .form-label {
    font-size: 10px;
  }

  .form-input {
    font-size: 20px;
    padding: 16px 28px;
  }

  .form-note {
    font-size: 9px;
  }
}

/* ══ DESKTOP 1100px+ ══ */
@media (min-width: 1100px) {
  .invite,
  .location-section,
  .rsvp,
  .countdown-section {
    max-width: 660px;
  }

  .hosts-section {
    max-width: 600px;
  }

  /* Hero */
  .hero-name {
    font-size: clamp(100px, 9vw, 160px);
  }

  .invite-greeting {
    font-size: clamp(26px, 2.6vw, 42px);
  }

  #greeting-general {
    font-size: clamp(30px, 3vw, 48px);
  }

  .invite-name {
    font-size: clamp(68px, 6vw, 100px);
  }

  .hosts-name {
    font-size: clamp(64px, 5.5vw, 96px);
  }

  .loc-restaurant-cali {
    font-size: clamp(38px, 3.2vw, 62px);
  }

  .cd-num {
    font-size: clamp(68px, 5.5vw, 96px);
  }

  .map-embed iframe {
    height: 340px;
  }
}
