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

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-light-dim: #dcc8a0;
  --gold-dark: #a07840;
  --cream: #faf7f2;
  --dark: #1a1a1a;
  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Noto Sans Armenian', sans-serif;
  --intro-green-deep: #cce5d4;
  --intro-green-mid: #d8ebe0;
  --intro-green-light: #e8f4ec;
  --green-panel: rgba(168, 196, 176, 0.38);
  --intro-bg: #848867; /* Olive — sampled from reference swatch */
  --intro-bg-light: color-mix(in srgb, var(--intro-bg) 72%, white);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 1.4s ease 0.3s;
}

.page-bg.visible {
  opacity: 1;
  transition: none;
}

.page-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
}

.page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 60%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hidden {
  display: none !important;
}

/* ─── Envelope Overlay / Intro ─── */
.envelope-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--intro-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: opacity 1.1s ease 0.6s, visibility 1.1s ease 0.6s;
  overflow: hidden;
}

.envelope-overlay::before {
  content: none;
}

.envelope-overlay::after {
  content: none;
}

.envelope-overlay.opening {
  background: var(--intro-bg);
}

.envelope-overlay.closing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}

.reveal-bloom {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 140, 0.9) 0%, rgba(212, 168, 75, 0.4) 40%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.envelope-overlay.opening .reveal-bloom,
.envelope-overlay.opening .env-glow {
  animation: none;
  opacity: 0;
}

@keyframes golden-bloom {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  20% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(45);
  }
}

.env-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.35) 0%, rgba(212, 168, 75, 0.1) 40%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.6s ease;
}

.intro-scene {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  padding: 2.5rem 1.25rem 2rem;
  gap: 1.75rem;
}

.envelope-overlay.opening .intro-scene {
  pointer-events: none;
}

.envelope-overlay.opening .intro-header,
.envelope-overlay.opening .envelope-hint,
.envelope-overlay.opening .intro-frame-img {
  animation: intro-fade-out 0.35s ease forwards;
}

@keyframes intro-fade-out {
  to { opacity: 0; }
}

.envelope-overlay.opening .intro-envelope-slot {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.intro-envelope-slot .envelope.opening {
  animation: env-spin-grow 1.2s cubic-bezier(0.45, 0, 0.55, 1) forwards;
  width: min(88%, 300px);
  max-width: none;
}

@keyframes env-spin-grow {
  0% {
    transform: rotate(-30deg) scale(1);
    opacity: 1;
  }
  12% {
    transform: rotate(-30deg) scale(1.08);
    opacity: 1;
  }
  100% {
    transform: rotate(330deg) scale(5.5);
    opacity: 0;
    filter: drop-shadow(0 0 80px rgba(212, 168, 75, 0.7));
  }
}

.envelope.opening .env-body {
  animation: none;
}

.intro-header {
  width: 100%;
  text-align: center;
}

.intro-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55em;
}

.intro-names-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4em 0.55em;
}

.intro-date {
  margin-top: 0;
}

.intro-frame-wrap {
  width: 100%;
  padding: 0 0.25rem;
}

.intro-frame-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.intro-frame-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
}

.intro-envelope-slot {
  position: absolute;
  inset: 24% 20% 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.intro-envelope-slot .envelope-wrap {
  pointer-events: auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
  perspective-origin: 50% 40%;
}

.intro-envelope-slot .envelope {
  width: 88%;
  height: auto;
  aspect-ratio: 320 / 215;
  transform: rotate(-30deg);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.45));
}

.intro-envelope-slot .envelope.opening {
  pointer-events: none;
}

.intro-envelope-slot .env-seal {
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
}

.intro-envelope-slot .seal-heart {
  font-size: 0.85rem;
}

.envelope:not(.opening) .env-body {
  animation: env-float 3.5s ease-in-out infinite;
}

@keyframes env-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

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

.intro-envelope-slot .envelope:hover {
  transform: rotate(-30deg) translateY(-4px);
}

@keyframes scene-dissolve {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
    filter: blur(10px);
  }
}

.envelope-hint {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-style: normal;
  color: var(--gold-light-dim);
  letter-spacing: 0.1em;
  text-shadow: 0 1px 6px rgba(255, 255, 255, 0.5);
  animation: pulse-hint 2.5s ease-in-out infinite;
}

@keyframes pulse-hint {
  0%, 100% { opacity: 0.65; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

.envelope-wrap {
  perspective: 1100px;
  perspective-origin: 50% 35%;
}

/* Default envelope size (intro frame overrides below) */
.envelope {
  width: 320px;
  height: 215px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.55));
}

.envelope.opening {
  pointer-events: none;
}

.env-body {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.env-back {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, #f5ecda 0%, #e8dcc6 100%);
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    inset 0 -3px 8px rgba(0, 0, 0, 0.06);
}

.name-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  line-height: 1.15;
  background: linear-gradient(135deg, #f8edd4 0%, #d4a85a 35%, #b8892e 55%, #f0dfa8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.7));
}

.name-gevorg {
  font-size: clamp(0.85rem, 3.8vw, 1.15rem);
  text-align: left;
  align-self: flex-start;
  padding-left: 4%;
}

.name-ev {
  font-size: clamp(0.55rem, 2.4vw, 0.72rem);
  text-align: center;
  align-self: center;
  letter-spacing: 0.25em;
  margin: 0.15em 0;
}

.name-valeria {
  font-size: clamp(0.85rem, 3.8vw, 1.15rem);
  text-align: right;
  align-self: flex-end;
  padding-right: 2%;
}

.invite-date {
  font-family: var(--font-serif);
  font-size: clamp(0.5rem, 2vw, 0.65rem);
  font-style: italic;
  text-align: center;
  margin-top: 0.5em;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #e8d5b0, #c9a96e, #e8d5b0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

.env-side {
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
}

.env-side-left {
  left: 0;
  background: linear-gradient(125deg, #ede3d0 0%, #d8ccb4 60%, #cfc3a8 100%);
  clip-path: polygon(0 0, 100% 52%, 0 100%);
  box-shadow: inset -1px 0 3px rgba(0, 0, 0, 0.08);
}

.env-side-right {
  right: 0;
  background: linear-gradient(235deg, #ede3d0 0%, #d8ccb4 60%, #cfc3a8 100%);
  clip-path: polygon(100% 0, 0 52%, 100% 100%);
  box-shadow: inset 1px 0 3px rgba(0, 0, 0, 0.08);
}

.env-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62%;
  background: linear-gradient(to top, #c9bc9f 0%, #ddd0b8 55%, #e8dcc6 100%);
  z-index: 3;
  clip-path: polygon(0 100%, 50% 5%, 100% 100%);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.07);
}

.env-crease {
  position: absolute;
  z-index: 4;
  width: 1px;
  height: 62%;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0.04) 60%, transparent);
  pointer-events: none;
}

.env-crease-left {
  left: 50%;
  transform: rotate(-26deg);
  transform-origin: bottom center;
}

.env-crease-right {
  left: 50%;
  transform: rotate(26deg);
  transform-origin: bottom center;
}

.env-flap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 62%;
  z-index: 5;
  clip-path: polygon(0 0, 50% 95%, 100% 0);
  transform-origin: top center;
  transform: rotateX(0deg);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.15, 1);
  backface-visibility: hidden;
}

.env-flap-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #f2e8d6 0%, #e5d9c4 50%, #d9cdb5 100%);
  clip-path: polygon(0 0, 50% 95%, 100% 0);
  box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.06);
}

.envelope.opening .env-flap {
  transform: rotateX(165deg);
  z-index: 0;
}

.envelope.opening .env-seal {
  animation: seal-break 0.5s ease forwards;
}

@keyframes seal-break {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; filter: brightness(1.5); }
  100% { transform: scale(0); opacity: 0; }
}

.env-seal {
  position: absolute;
  top: 51%;
  left: 50%;
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  padding: 0;
  border: none;
  border-radius: 50%;
  z-index: 7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 35% 30%, #ffe9a8 0%, #e8c06a 25%, #c9953a 55%, #9a6b22 85%);
  box-shadow:
    0 0 0 2px rgba(212, 168, 75, 0.5),
    0 0 0 4px rgba(180, 130, 50, 0.2),
    0 4px 14px rgba(0, 0, 0, 0.4),
    inset 0 3px 6px rgba(255, 255, 255, 0.35),
    inset 0 -3px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.3s ease;
}

.env-seal:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 0 2px rgba(212, 168, 75, 0.7),
    0 0 0 5px rgba(180, 130, 50, 0.25),
    0 0 20px rgba(212, 168, 75, 0.4),
    0 4px 14px rgba(0, 0, 0, 0.4),
    inset 0 3px 6px rgba(255, 255, 255, 0.35);
}

.seal-ring {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 230, 160, 0.45);
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.15);
}

.seal-heart {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  color: rgba(120, 70, 15, 0.75);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
  line-height: 1;
}

/* ─── Hero Section ─── */
.invitation {
  opacity: 0;
}

.invitation.visible {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.scroll-hint {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 2rem;
  color: var(--white);
  opacity: 0.7;
  animation: bounce-hint 2s ease-in-out infinite;
}

.scroll-hint--schedule {
  padding-bottom: 0;
  padding-top: 2rem;
  opacity: 0.65;
}

.scroll-hint span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--white), transparent);
}

@keyframes bounce-hint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─── Sections ─── */
.section {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.text-panel {
  background: var(--green-panel);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(120, 150, 130, 0.15);
  border-radius: 6px;
}

.section-inner.text-panel {
  padding: 2rem 1.5rem;
}

/* ─── Welcome (main site top) ─── */
.welcome-section {
  background: transparent;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
}

.welcome-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}

.welcome-text-wrap {
  width: 100%;
  padding: 1.25rem 1.5rem max(1.35rem, calc(env(safe-area-inset-bottom, 0px) + 1rem));
  background: var(--green-panel);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  box-shadow: 0 -4px 20px rgba(120, 150, 130, 0.12);
}

.welcome-text {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 4vw, 1.1rem);
  line-height: 1.65;
  font-weight: normal;
  text-align: center;
  font-style: normal;
  letter-spacing: 0.02em;
  margin: 0 auto;
  max-width: 520px;
  color: var(--gold-light);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: var(--gold-light);
  filter: none;
}

.scroll-hint--welcome {
  padding: 0 0 0.85rem;
  opacity: 0.75;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 4.2vw, 1.85rem);
  font-weight: normal;
  color: var(--dark);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0.75rem auto 0;
}

/* ─── Countdown ─── */
.countdown-section {
  background: transparent;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  color: var(--white);
}

.countdown-section .section-title {
  color: var(--gold-light);
}

.countdown-section .section-title::after {
  background: var(--gold);
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}

.countdown-num {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 6.5vw, 2.6rem);
  font-weight: normal;
  line-height: 1;
  color: var(--white);
}

.countdown-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.4rem;
}

.countdown-sep {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0.6;
}

/* ─── Schedule ─── */
.schedule-section {
  background: transparent;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

.schedule-section .section-title {
  color: var(--gold-light);
}

.schedule-section .section-title::after {
  background: var(--gold);
}

.schedule-section .schedule-time {
  color: var(--gold);
}

.schedule-section .schedule-event {
  color: rgba(255, 255, 255, 0.92);
}

.schedule-section .schedule-divider {
  background: var(--gold);
  opacity: 0.55;
}

.schedule-section .venue-name {
  color: var(--white);
}

.schedule-section .btn-directions {
  color: var(--gold-light);
  border-color: var(--gold);
}

.schedule-section .btn-directions:hover {
  background: var(--gold);
  color: var(--dark);
}

.schedule-list {
  margin-bottom: 1.5rem;
}

.schedule-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.schedule-time {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: normal;
  color: var(--gold-dark);
  min-width: 80px;
}

.schedule-event {
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

.schedule-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.4;
}

.venue-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.venue-address {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-directions {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--gold);
}

.btn-directions:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-submit {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  margin-top: 0.5rem;
}

.btn-submit:hover:not(:disabled) {
  background: var(--gold-dark);
}

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

/* ─── RSVP ─── */
.rsvp-section {
  position: relative;
  background: var(--intro-bg-light);
  color: #4a4d3f;
}

.rsvp-section::before {
  content: none;
}

.rsvp-section::after {
  content: none;
}

.rsvp-section .section-inner {
  position: relative;
  z-index: 1;
}

.rsvp-section .section-title {
  color: #4a4d3f;
}

.rsvp-section .section-title::after {
  background: var(--intro-bg);
}

.rsvp-subtitle {
  font-size: 0.9rem;
  color: #5c5f50;
  margin: -1rem 0 2rem;
}

.rsvp-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
}

.rsvp-tab {
  flex: 1;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  color: #5c5f50;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.rsvp-tab.active {
  background: rgba(255, 255, 255, 0.45);
  color: #3d4a42;
}

.rsvp-tab:not(.active):hover {
  background: rgba(255, 255, 255, 0.25);
  color: #3d4a42;
}

.rsvp-form {
  text-align: left;
}

.form-group {
  margin-bottom: 1.25rem;
}

.rsvp-section .form-group label {
  color: #3d4a42;
}

.rsvp-section .required {
  color: #8a7350;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.required {
  color: var(--gold-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #c0392b;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-message {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
}

.form-message.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ─── Footer ─── */
.footer {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  background-color: var(--intro-green-light);
  background-image:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 255, 255, 0.45) 0%, transparent 55%),
    linear-gradient(180deg, #dceee3 0%, #cce5d4 100%);
}

.footer p {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: normal;
  color: #6a7d70;
  letter-spacing: 0.05em;
}

/* ─── Responsive ─── */
@media (max-width: 400px) {
  .countdown-item {
    min-width: 52px;
  }

  .countdown-sep {
    font-size: 1.5rem;
  }

  .schedule-item {
    flex-direction: column;
    gap: 0.25rem;
  }
}
