@import url("variables.css");
@import url("fonts.css");

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

html {
  scroll-behavior: smooth;
  color-scheme: light only;
}

body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

.font-display,
.hero__name,
.hero__amp,
.section-title,
.countdown-item .number,
.venue-card h3,
.venue-meta .time,
.dress-card h3,
.event-card h3,
.footer__names,
.modal-content h2 {
  font-family: var(--font-display);
  font-weight: var(--font-display-weight);
  font-synthesis: none;
}

.font-body { font-family: var(--font-body); }

.section-padding {
  padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
  .section-padding { padding: 5rem 2rem; }
}

.paper-bg {
  background-image: url("../assets/white-textured-paper-KasY8RAJ.png");
  background-size: cover;
  background-position: center;
}

.bg-ivory { background-color: var(--color-ivory); }

/* ── Intro / Envelope ── */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  cursor: pointer;
  background: var(--color-white);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#intro-overlay img,
#intro-overlay video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.05s ease-out;
}

#intro-overlay .intro-reveal { opacity: 0; }
#intro-overlay .intro-reveal.playing { opacity: 1; }

#intro-watermark {
  position: fixed;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1001;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#intro-watermark.hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}

#intro-watermark .glow {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#intro-watermark img {
  position: relative;
  width: min(840px, 90vw);
  animation: float 3s ease-in-out infinite;
}

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

/* ── Music toggle ── */
#music-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-olive-dark);
  transition: var(--transition-smooth);
}

#music-toggle:hover {
  color: var(--color-accent);
  border-color: var(--border-accent);
}

#music-toggle svg { width: 1.25rem; height: 1.25rem; }

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

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5rem 1.5rem 0;
}

@media (min-width: 768px) {
  .hero__top { padding-top: 7rem; }
}

.hero__subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .hero__subtitle { font-size: 1rem; }
}

.hero__names {
  margin: 0;
}

.hero__name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  color: var(--color-white);
  line-height: 0.9;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero__amp {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-white);
  margin: 1rem 0;
  font-style: italic;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem 2rem;
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero__divider span:first-child,
.hero__divider span:last-child {
  height: 1px;
  width: 3rem;
  background: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .hero__divider span:first-child,
  .hero__divider span:last-child { width: 6rem; }
}

.hero__divider .star {
  color: var(--color-white);
  font-size: 1.25rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__date {
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  letter-spacing: 0.15em;
  color: var(--color-white);
  font-weight: 300;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__rsvp-btn {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 2rem;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.hero__rsvp-btn:hover { color: var(--color-accent); }

.hero__rsvp-btn span {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__rsvp-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  animation: bounce 2s ease-in-out infinite;
}

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

/* ── Section headings ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.section-title--light { color: var(--text-on-accent); }

.section-subtitle {
  color: var(--text-body);
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 2.5rem;
}

.section-subtitle--light {
  color: var(--text-on-accent);
  opacity: 0.85;
}

.section-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--text-body);
  opacity: 0.9;
}

/* ── Countdown ── */
.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .countdown-item { padding: 0 1.75rem; }
}

.countdown-item .number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 3.75rem);
  color: var(--text-heading);
  line-height: 1;
}

.countdown-item .label {
  margin-top: 0.5rem;
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.8;
}

.countdown-sep {
  width: 1px;
  height: 2rem;
  background: var(--border-subtle);
  margin-bottom: 1rem;
}

/* ── Marquee gallery ── */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
}

.marquee {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

@media (min-width: 768px) {
  .marquee { gap: 1rem; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  flex-shrink: 0;
  width: 240px;
  height: 340px;
  overflow: hidden;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Divider ornaments ── */
.ornament-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 0;
}

.ornament-divider .line {
  width: 6rem;
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 2.5rem;
}

.ornament-divider img {
  opacity: 0.8;
}

/* ── Venue card ── */
.section-warm {
  background: var(--bg-section-warm);
}

.venue-card {
  background: var(--color-white);
  border-radius: var(--radius-card-lg);
  border: 1px solid var(--border-accent);
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.venue-card img.venue-illustration {
  width: 100%;
  max-width: 32rem;
  height: auto;
  margin: 0 auto 0.5rem;
}

.venue-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-accent);
}

.venue-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
}

.venue-meta .time {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.venue-meta .dot { opacity: 0.4; }

.venue-address {
  color: var(--text-heading);
  margin-bottom: 1.5rem;
}

.venue-address span {
  display: block;
  font-size: 0.875rem;
  opacity: 0.7;
}

.venue-map {
  width: 100%;
  height: 240px;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 0;
  filter: sepia(0.15) saturate(0.7) hue-rotate(5deg) brightness(1.05);
}

.link-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-heading);
  opacity: 0.7;
  border-bottom: 1px solid var(--border-accent);
  padding-bottom: 0.25rem;
  transition: var(--transition-smooth);
}

.link-maps:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.link-maps svg { width: 0.875rem; height: 0.875rem; }

/* ── Programme timeline ── */
.timeline {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 1px;
  background: var(--border-subtle);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1px;
  background: var(--border-subtle);
}

.timeline-item .left,
.timeline-item .right {
  width: 50%;
}

.timeline-item .left { padding-right: 2rem; text-align: right; }
.timeline-item .right { padding-left: 2rem; text-align: left; }

.timeline-item .time {
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  color: var(--text-heading);
}

@media (min-width: 768px) {
  .timeline-item .time { font-size: 1rem; }
}

.timeline-item .event {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--text-heading);
  opacity: 0.8;
  margin-top: 0.125rem;
}

@media (min-width: 768px) {
  .timeline-item .event { font-size: 0.875rem; }
}

/* ── Dress code overlay ── */
.dress-section {
  position: relative;
  overflow: hidden;
}

.dress-section > img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dress-card {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-card-lg);
  border: 1px solid var(--border-subtle);
  padding: 2rem 3rem;
  box-shadow: var(--shadow-elegant);
  text-align: center;
  max-width: 42rem;
  margin: 2.5rem auto;
}

@media (min-width: 768px) {
  .dress-card { padding: 3rem; margin: 4rem auto; }
}

.dress-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.dress-card p {
  color: var(--text-heading);
  opacity: 0.7;
  font-size: 0.875rem;
  font-style: italic;
  max-width: 28rem;
  margin: 0 auto;
}

.dress-card .sep {
  width: 4rem;
  height: 1px;
  background: var(--border-subtle);
  margin: 2rem auto;
}

/* ── Pre-wedding events ── */
.event-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

.event-card {
  background: var(--color-white);
  border-radius: var(--radius-card-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-elegant);
  text-align: center;
}

@media (min-width: 768px) {
  .event-card { padding: 2rem; }
}

.event-card img {
  width: 5rem;
  height: auto;
  margin: 0 auto 0.75rem;
  opacity: 0.9;
}

.event-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-olive-dark);
  margin-bottom: 0.75rem;
}

.event-card .sep {
  width: 2.5rem;
  height: 1px;
  background: var(--border-subtle);
  margin: 0 auto 0.75rem;
}

.event-card p {
  font-size: 0.875rem;
  color: var(--color-olive-dark);
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.event-card p.muted { opacity: 0.6; font-style: italic; }

/* ── Info card ── */
.info-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-card-lg);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-elegant);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.info-card svg.icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-accent);
  margin: 0 auto 0.5rem;
}

.info-card p {
  color: var(--text-heading);
  font-size: 1rem;
  line-height: 1.7;
}

.info-card .sep {
  width: 3rem;
  height: 1px;
  background: var(--border-accent);
  margin: 1.5rem auto;
}

.info-card .directions {
  font-size: 0.875rem;
  color: var(--text-heading);
  opacity: 0.7;
  white-space: pre-line;
  line-height: 1.8;
}

/* ── Accommodation ── */
.hotel-list .hotel-item {
  text-align: center;
  padding: 1.5rem 0;
}

.hotel-list .hotel-item:not(:first-child)::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--border-accent);
  margin: 0 auto 1.5rem;
}

.hotel-list h3 {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-heading);
}

.hotel-list .location {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-heading);
  opacity: 0.6;
  margin-top: 0.25rem;
}

.hotel-list .detail {
  font-size: 0.75rem;
  color: var(--text-heading);
  opacity: 0.5;
  margin-top: 0.375rem;
}

.hotel-list a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.3s;
}

.hotel-list a:hover { color: var(--text-heading); }

/* ── Gifts ── */
.gifts-card {
  background: var(--color-white);
  border-radius: 0.5rem;
  border: 1px solid var(--border-subtle);
  padding: 2.5rem 3.5rem;
  box-shadow: var(--shadow-soft);
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .gifts-card { padding: 3.5rem; }
}

.gift-account {
  background: var(--color-ivory);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: left;
  margin-bottom: 1rem;
}

.gift-account:last-child { margin-bottom: 0; }

.gift-account h3 {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-heading);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.gift-account p {
  font-size: 0.875rem;
  color: var(--text-heading);
  opacity: 0.7;
  white-space: pre-line;
  line-height: 1.7;
}

/* ── RSVP form ── */
.rsvp-form {
  background: var(--color-white);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .rsvp-form { padding: 2rem; }
}

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

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.form-group label.small {
  font-size: 0.875rem;
  color: var(--text-heading);
  opacity: 0.8;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  appearance: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  margin-top: 0.125rem;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}

.radio-option input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--color-accent);
}

.radio-option span {
  font-size: 0.875rem;
  color: var(--text-heading);
  line-height: 1.4;
}

.guest-counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guest-counter button {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--border-accent);
  border-radius: 0.375rem;
  background: transparent;
  color: var(--text-heading);
  cursor: pointer;
  font-size: 1.125rem;
  transition: var(--transition-smooth);
}

.guest-counter button:hover:not(:disabled) {
  background: var(--color-accent-light);
}

.guest-counter button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.guest-counter .count {
  width: 2.5rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-heading);
}

.guest-card {
  padding: 1rem;
  background: var(--color-accent-light);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.guest-card:last-child { margin-bottom: 0; }

.form-input,
.form-textarea {
  width: 100%;
  height: 2.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-accent);
  border-radius: 0.375rem;
  background: var(--color-ivory);
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-heading);
  opacity: 0.5;
}

.form-textarea {
  height: auto;
  min-height: 6rem;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--color-olive);
  color: var(--color-white);
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  background: var(--color-olive-dark);
}

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

/* ── Footer ── */
.footer {
  padding: 3rem 1.5rem;
  text-align: center;
  background-image: url("../assets/white-textured-paper-KasY8RAJ.png");
  background-size: cover;
}

.footer__names {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.footer__date {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--text-heading);
  opacity: 0.6;
  margin-bottom: 2rem;
}

.footer__rings {
  width: 8rem;
  margin: 0 auto 2rem;
  opacity: 0.8;
}

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RSVP confirmation modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--color-white);
  border-radius: var(--radius-card-lg);
  padding: 2.5rem;
  max-width: 28rem;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lifted);
  transform: scale(0.95);
  transition: transform 0.4s ease;
}

.modal-overlay.open .modal-content {
  transform: scale(1);
}

.modal-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--text-heading);
  opacity: 0.8;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.modal-content .btn-close {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: var(--color-olive);
  color: var(--color-white);
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  transition: var(--transition-smooth);
}

.modal-content .btn-close:hover {
  background: var(--color-olive-dark);
}

.max-w-xl { max-width: 36rem; margin: 0 auto; }
.max-w-2xl { max-width: 42rem; margin: 0 auto; }
.max-w-3xl { max-width: 48rem; margin: 0 auto; }
.text-center { text-align: center; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
