/* ═══════════════════════════════════════════
   Tanya & Vivaan Wedding — Main Stylesheet
   ═══════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8D08A;
  --gold-pale: #F5EDD0;
  --ivory: #FAF6EE;
  --ivory-dark: #F0E8D5;
  --cream: #FDF8F0;
  --brown-dark: #2C1A0E;
  --brown: #4A2E14;
  --text: #3A2410;
  --text-light: #7A5C3A;
  --white: #FFFDF8;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--ivory);
  color: var(--text);
  font-family: 'EB Garamond', Georgia, serif;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--ivory-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  transition: all 0.5s ease;
}

nav.scrolled {
  background: rgba(250, 246, 238, 0.97);
  backdrop-filter: blur(12px);
  padding: 14px 60px;
  box-shadow: 0 1px 30px rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.5s;
}

nav.scrolled .nav-logo {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s;
}

nav.scrolled .nav-links a {
  color: var(--text-light);
}

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

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: all 0.3s;
}

nav.scrolled .nav-hamburger span {
  background: var(--text);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--brown-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a0f05 0%, #2C1A0E 30%, #4A2E14 60%, #2C1A0E 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 168, 76, 0.18) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='1'%3E%3Cpath d='M40 0 L42 38 L80 40 L42 42 L40 80 L38 42 L0 40 L38 38Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-ornament {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 4s ease-in-out infinite;
}

.hero-ornament:nth-child(3) {
  width: 500px;
  height: 500px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.hero-ornament:nth-child(4) {
  width: 650px;
  height: 650px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  animation-delay: 1s;
}

.hero-ornament:nth-child(5) {
  width: 800px;
  height: 800px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  animation-delay: 2s;
}

@keyframes pulse-ring {

  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.03);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 1.2s 0.6s forwards;
}

.hero-names .ampersand {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.55em;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}

.hero-divider-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-date {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}

.hero-venue {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  /* left: 50%;
  transform: translateX(-50%); */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 2s forwards;
  z-index: 2;
}

.hero-scroll span {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.6), transparent);
  animation: scroll-grow 1.5s ease-in-out infinite;
}

@keyframes scroll-grow {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 0;
  }
}

/* ─── COUNTDOWN ─── */
#countdown {
  background: var(--brown-dark);
  padding: 60px 40px;
  text-align: center;
}

.countdown-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}

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

.countdown-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.countdown-item:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: -6px;
  top: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
}

.countdown-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  min-width: 80px;
  display: block;
}

.countdown-unit {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
  display: block;
}

/* ─── SHARED SECTION STYLES ─── */
section {
  padding: 120px 40px;
}

.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--brown-dark);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.gold-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
}

.gold-rule-center {
  justify-content: center;
}

.gold-rule-line {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  width: 60px;
}

.gold-rule-line-sym {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 80px;
}

.gold-rule-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.body-text {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-light);
  max-width: 560px;
}

/* ─── STORY ─── */
#story {
  background: var(--cream);
}

.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-images {
  position: relative;
  height: 560px;
}

.story-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--ivory-dark) 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.story-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.img-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(201, 168, 76, 0.5);
  text-align: center;
  padding: 20px;
}

.img-placeholder-dark {
  color: rgba(201, 168, 76, 0.4);
}

.story-badge {
  position: absolute;
  top: 40%;
  left: 55%;
  background: var(--gold);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
}

.story-badge span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: white;
  line-height: 1;
}

.story-badge span:nth-child(2) {
  font-family: 'Jost', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
}

.story-badge-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: white;
}

/* ─── EVENTS ─── */
#events {
  background: var(--ivory);
}

.events-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.events-header {
  text-align: center;
  margin-bottom: 80px;
}

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

.event-card {
  position: relative;
  padding: 52px 40px 48px;
  background: var(--cream);
  border: 1px solid rgba(201, 168, 76, 0.2);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.18);
  z-index: 1;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.event-card:hover::before {
  transform: scaleX(1);
}

.event-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 30px;
}

.event-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--gold-pale), var(--ivory-dark));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.event-name {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

.event-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.event-detail-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.event-detail-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
}

.event-detail-text strong {
  display: block;
  font-weight: 500;
  color: var(--text);
}

.event-dress {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-dress-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.event-dress-color {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  display: inline-block;
  flex-shrink: 0;
}

.event-dress-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ─── COUPLE ─── */
#couple {
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

#couple::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.couple-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

#couple .section-eyebrow {
  color: var(--gold-light);
}

#couple .section-title {
  color: var(--white);
}

.couple-verse {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 680px;
  margin: 40px auto;
  padding: 40px;
  position: relative;
}

.couple-verse::before,
.couple-verse::after {
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.2);
  position: absolute;
  font-family: Georgia;
  line-height: 1;
}

.couple-verse::before {
  content: '\201C';
  top: 0;
  left: 10px;
}

.couple-verse::after {
  content: '\201D';
  bottom: -20px;
  right: 10px;
}

.couple-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 70px;
}

.couple-card {
  text-align: center;
}

.couple-portrait {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.3), rgba(201, 168, 76, 0.1));
  border: 2px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: rgba(201, 168, 76, 0.5);
  font-style: italic;
  position: relative;
  overflow: hidden;
}

.couple-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.couple-portrait::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
}

.couple-person-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}

.couple-person-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

.couple-bio {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  max-width: 300px;
  margin: 0 auto;
}

/* ─── GALLERY ─── */
#gallery {
  background: var(--cream);
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 6px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--ivory-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.3;
  transition: transform 0.6s ease;
}

.gallery-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

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

.gi-1 {
  background: linear-gradient(135deg, #e8d5b7, #d4b896);
}

.gi-2 {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.13), rgba(232, 208, 138, 0.2));
}

.gi-3 {
  background: linear-gradient(135deg, rgba(74, 46, 20, 0.13), rgba(44, 26, 14, 0.27));
}

.gi-4 {
  background: linear-gradient(135deg, #f5edd0, #e8d5b7);
}

.gi-5 {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.27), rgba(74, 46, 20, 0.13));
}

.gi-6 {
  background: linear-gradient(135deg, rgba(232, 208, 138, 0.13), rgba(201, 168, 76, 0.2));
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 14, 0);
  transition: background 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(44, 26, 14, 0.3);
}

.gallery-overlay-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: white;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay-text {
  opacity: 1;
}

/* ─── RSVP ─── */
#rsvp {
  background: var(--ivory);
}

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

.rsvp-intro {
  margin: 0 auto 50px;
  text-align: center;
}

.rsvp-form {
  margin-top: 50px;
  text-align: left;
}

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

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

.form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.required {
  color: #c9624c;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--text);
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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

.form-full {
  grid-column: span 2;
}

.rsvp-radio-group {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.rsvp-radio {
  flex: 1;
  padding: 16px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: var(--cream);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.rsvp-radio:hover,
.rsvp-radio.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.rsvp-radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  flex-shrink: 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rsvp-radio.selected .rsvp-radio-dot {
  border-color: var(--gold);
  background: var(--gold);
}

.rsvp-radio.selected .rsvp-radio-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

.rsvp-radio-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 52px;
  background: var(--gold);
  color: var(--brown-dark);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: var(--brown-dark);
  color: var(--gold);
  box-shadow: 0 8px 32px rgba(44, 26, 14, 0.3);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.rsvp-success {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.08);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  text-align: center;
}

.rsvp-error {
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 14px 18px;
  border: 1px solid rgba(201, 80, 60, 0.4);
  background: rgba(201, 80, 60, 0.07);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  color: #c9503c;
}

/* ─── TRAVEL ─── */
#travel {
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}

#travel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 0% 100%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
}

.travel-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#travel .section-eyebrow {
  color: var(--gold);
}

#travel .section-title {
  color: var(--white);
}

.travel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.travel-card {
  padding: 40px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease;
}

.travel-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.travel-card-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.travel-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 16px;
}

.travel-card-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
}

.travel-card-text strong {
  color: rgba(255, 255, 255, 0.7);
}

.travel-card-text a {
  color: var(--gold-light);
  text-decoration: none;
}

.travel-card-text a:hover {
  text-decoration: underline;
}

.travel-card-text em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

/* ─── FOOTER ─── */
footer {
  background: #130C04;
  padding: 70px 40px 40px;
  text-align: center;
}

.footer-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-date {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 50px;
}

.footer-divider {
  width: 200px;
  height: 1px;
  margin: 0 auto 40px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 18px 30px;
  }

  nav.scrolled {
    padding: 12px 30px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .story-inner {
    grid-template-columns: 1fr;
  }

  .story-images {
    height: 380px;
    margin-bottom: 20px;
  }

  .couple-cards {
    grid-template-columns: 1fr 1fr;
  }

  .travel-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 680px) {
  section {
    padding: 80px 24px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 2;
  }

  .couple-cards {
    grid-template-columns: 1fr;
  }

  .rsvp-radio-group {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-full {
    grid-column: span 1;
  }

  .hero-ornament {
    display: none;
  }

  .hero-names {
    font-size: clamp(3.5rem, 14vw, 6rem);
  }
}

/* ─── FALLING FLOWERS CANVAS ─── */
#flowerCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  display: block;
}