/* ================================================================
   GROWING UP IN LOVE — Wedding Website Styles
   Janja & Tasos · 14.06.2026
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS VARIABLES & RESET
   ---------------------------------------------------------------- */
:root {
  --peach:       #EFA48E;
  --sage:        #7D9B7A;
  --cream:       #D4C9A0;
  --ivory:       #F8F4EC;
  --terracotta:  #B8613A;
  --dark:        #3A2A1E;
  --mid:         #7A6255;
  --light:       #FDF9F4;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Josefin Sans', 'Helvetica Neue', sans-serif;

  --radius:  12px;
  --radius-sm: 6px;
  --transition: 0.35s ease;
  --shadow: 0 4px 30px rgba(58, 42, 30, 0.1);
  --shadow-lg: 0 12px 50px rgba(58, 42, 30, 0.15);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ----------------------------------------------------------------
   2. TYPOGRAPHY HELPERS
   ---------------------------------------------------------------- */
.section-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--mid);
  margin-top: -0.5rem;
  margin-bottom: 2.5rem;
}

.section-divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--peach), var(--sage));
  margin-bottom: 2.5rem;
  border-radius: 2px;
}

/* ----------------------------------------------------------------
   3. LAYOUT
   ---------------------------------------------------------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 720px;
}

.section {
  padding: 5rem 0;
}

/* ----------------------------------------------------------------
   4. NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(253, 249, 244, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(58, 42, 30, 0.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ivory);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 249, 244, 0.9);
  transition: color var(--transition);
  font-weight: 400;
}

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

.nav-links a:hover,
.nav.scrolled .nav-links a:hover {
  color: var(--terracotta);
}

.nav-rsvp {
  border: 1px solid rgba(253, 249, 244, 0.5);
  padding: 0.4rem 1rem !important;
  border-radius: 20px;
  transition: all var(--transition) !important;
}

.nav.scrolled .nav-rsvp {
  border-color: var(--peach);
  color: var(--terracotta) !important;
}

.nav-rsvp:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

.nav.scrolled .nav-rsvp:hover {
  background: var(--peach) !important;
  color: white !important;
}

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

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: background var(--transition);
  border-radius: 2px;
}

.nav.scrolled .nav-burger span {
  background: var(--dark);
}

.nav-mobile {
  display: none;
  background: rgba(253, 249, 244, 0.98);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(58, 42, 30, 0.06);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  padding: 0.5rem 0;
}

/* ----------------------------------------------------------------
   5. HERO
   ---------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: 65% center !important;
  background:
    url('../assets/hero.webp') center/cover no-repeat,
    linear-gradient(160deg, #3A2A1E 0%, #7A5C4A 25%, #B8937A 50%, #EFA48E 75%, #B8613A 100%);
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 20, 12, 0.6) 0%,
    rgba(30, 20, 12, 0.5) 50%,
    rgba(30, 20, 12, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 2rem;
}

.hero-pre {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.hero-site {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: white;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.hero-names {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: white;
  letter-spacing: -0.01em;
}

.hero-names em {
  font-style: italic;
  color: var(--peach);
}

.hero-divider {
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto 1.5rem;
}

.hero-date {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.hero-location {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scroll-arrow {
  display: block;
  width: 14px;
  height: 14px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

/* ----------------------------------------------------------------
   6. COUNTDOWN
   ---------------------------------------------------------------- */
.countdown-section {
  background: var(--dark);
  padding: 4rem 0 1rem 0;
  text-align: center;
}

.countdown-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 1rem;
  opacity: 0.8;
}

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

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
  padding: 0 1.5rem;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300;
  color: var(--peach);
  line-height: 1;
  letter-spacing: -0.02em;
}

.countdown-unit {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(212, 201, 160, 0.6);
  margin-top: 0.35rem;
}

.countdown-sep {
  font-size: 2rem;
  color: rgba(212, 201, 160, 0.3);
  line-height: 1;
  align-self: flex-start;
  padding-top: 0.5rem;
}

.drone-video-section {
  padding: 1rem 0 4rem 0;
  background: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
}

.drone-video {
  width: 85%;
  max-width: 1000px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}


/* ----------------------------------------------------------------
   7. OUR STORY — TIMELINE
   ---------------------------------------------------------------- */
.story-section {
  background: var(--light);
}

.timeline {
  position: relative;
  margin-top: 1rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--cream), var(--peach), var(--sage), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 4rem;
  align-items: start;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-side {
  padding: 0.5rem 2rem;
}

.timeline-side--left {
  text-align: right;
}

.timeline-side--right {
  text-align: left;
}

.timeline-center {
  display: flex;
  justify-content: center;
  padding-top: 0.75rem;
  position: relative;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--peach);
  border: 3px solid var(--light);
  box-shadow: 0 0 0 2px var(--peach);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.timeline-dot--proposal {
  width: 22px;
  height: 22px;
  background: var(--terracotta);
  box-shadow: 0 0 0 2px var(--terracotta), 0 0 20px rgba(184, 97, 58, 0.3);
}

.timeline-date-block {
  display: flex;
  flex-direction: column;
  padding-top: 0.4rem;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
}

.timeline-day {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 0.2rem;
}

.timeline-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 201, 160, 0.3);
}

.timeline-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.timeline-card p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.75;
}

/* Video */
.video-wrap {
  margin-top: 1.25rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark) 0%, #6B4E3D 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-sm);
  gap: 0.75rem;
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(239, 164, 142, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
}

.play-btn:hover {
  background: var(--peach);
  transform: scale(1.08);
}

.play-icon {
  font-size: 1.4rem;
  color: white;
  margin-left: 4px;
}

.video-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 249, 244, 0.7);
}

#storyVideo {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: none;
}

/* ----------------------------------------------------------------
   8. THE DAY — AGENDA
   ---------------------------------------------------------------- */
.day-section {
  background: var(--ivory);
}

.agenda {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.agenda-item {
  display: grid;
  grid-template-columns: 80px 40px 1fr;
  align-items: start;
  gap: 0;
}

.agenda-time {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  padding-top: 0.3rem;
  text-align: right;
  padding-right: 1rem;
}

.agenda-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.agenda-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--peach);
  border: 2px solid var(--ivory);
  box-shadow: 0 0 0 1.5px var(--peach);
  margin-top: 0.3rem;
  flex-shrink: 0;
  z-index: 1;
}

.agenda-line {
  width: 1px;
  flex: 1;
  min-height: 60px;
  background: linear-gradient(var(--cream), var(--cream));
  margin: 4px 0;
}

.agenda-detail {
  padding: 0.2rem 0 2rem 1rem;
}

.agenda-detail strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
}

.agenda-detail span {
  font-size: 0.85rem;
  color: var(--mid);
  font-style: italic;
}

/* ----------------------------------------------------------------
   9. VENUES
   ---------------------------------------------------------------- */
.venues-section {
  background: var(--light);
}

.venues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.venue-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.venue-img {
  height: 260px;
  background-color: var(--cream);
  background-size: cover;
  background-position: center;
  position: relative;
  /* Gradient placeholder until real photos are added */
  background-image: linear-gradient(135deg, var(--sage) 0%, var(--cream) 100%);
}

.venue-img:nth-of-type(2) {
  background-image: linear-gradient(135deg, var(--peach) 0%, var(--cream) 100%);
}

.venue-tag-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: white;
  color: var(--terracotta);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
}

.venue-info {
  padding: 1.75rem;
}

.venue-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.venue-time,
.venue-address {
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 0.4rem;
}

.venue-map-btn {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  border-bottom: 1px solid var(--peach);
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

.venue-map-btn:hover {
  color: var(--dark);
  border-color: var(--terracotta);
}

/* ----------------------------------------------------------------
   10. TRAVEL & ACCOMMODATION
   ---------------------------------------------------------------- */
.travel-section {
  background: var(--ivory);
}

.travel-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.travel-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--sage);
}

.travel-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.travel-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--peach);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.travel-link:hover {
  color: var(--dark);
  border-color: var(--terracotta);
}

.travel-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.travel-card p {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.travel-list {
  list-style: none;
  margin: 0.5rem 0;
  padding-left: 0;
}

.travel-list li {
  font-size: 0.9rem;
  color: var(--mid);
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.travel-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.acc-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.acc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.acc-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 201, 160, 0.4);
  position: relative;
}

.acc-card--highlight {
  border-top: 3px solid var(--terracotta);
}

.acc-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.acc-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.acc-card p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.7;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.placeholder-note {
  font-size: 0.88rem;
  color: var(--mid);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.hotel-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.placeholder-card {
  opacity: 0.5;
  pointer-events: none;
}

.hotel-img-ph {
  height: 160px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--peach) 100%);
}

.hotel-info {
  padding: 1rem;
}

.hotel-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.hotel-meta {
  font-size: 0.78rem;
  color: var(--mid);
}

/* ----------------------------------------------------------------
   11. RSVP FORM
   ---------------------------------------------------------------- */
.rsvp-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.rsvp-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(239, 164, 142, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(125, 155, 122, 0.06) 0%, transparent 50%);
}

.rsvp-section .section-tag {
  color: var(--peach);
}

.rsvp-section .section-title {
  color: var(--ivory);
}

.rsvp-section .section-subtitle {
  color: rgba(248, 244, 236, 0.6);
}

.rsvp-section .section-divider-line {
  background: linear-gradient(90deg, var(--peach), var(--sage));
}

.rsvp-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

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

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

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.7);
  margin-bottom: 0.6rem;
}

.required {
  color: var(--peach);
}

.optional {
  color: rgba(248, 244, 236, 0.4);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85em;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ivory);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-input::placeholder {
  color: rgba(248, 244, 236, 0.3);
}

.form-input:focus {
  border-color: var(--peach);
  background: rgba(255, 255, 255, 0.09);
}

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

.form-hint {
  font-size: 0.78rem;
  color: rgba(248, 244, 236, 0.35);
  margin-top: 0.4rem;
}

/* Radio cards */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.radio-card {
  position: relative;
  cursor: pointer;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  color: rgba(248, 244, 236, 0.7);
  transition: all 0.2s ease;
  text-align: center;
}

.radio-emoji {
  font-size: 1.5rem;
}

.radio-card input:checked + .radio-inner {
  border-color: var(--peach);
  background: rgba(239, 164, 142, 0.12);
  color: var(--ivory);
}

.radio-card:hover .radio-inner {
  border-color: rgba(239, 164, 142, 0.4);
}

/* Submit */
.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: #A05230;
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-success {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(125, 155, 122, 0.15);
  border: 1px solid rgba(125, 155, 122, 0.3);
  border-radius: var(--radius-sm);
  color: #A8C5A4;
  font-size: 0.9rem;
  text-align: center;
}

.form-error {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(184, 97, 58, 0.1);
  border: 1px solid rgba(184, 97, 58, 0.3);
  border-radius: var(--radius-sm);
  color: var(--peach);
  font-size: 0.85rem;
  text-align: center;
}

.form-error a {
  color: var(--peach);
  text-decoration: underline;
}

/* ----------------------------------------------------------------
   12. FAQ / Q&A
   ---------------------------------------------------------------- */
.faq-section {
  background: var(--light);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 201, 160, 0.5);
}

.faq-item:first-child {
  border-top: 1px solid rgba(212, 201, 160, 0.5);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--terracotta);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--peach);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 1000px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.75;
  padding-bottom: 1.5rem;
}

.faq-answer p + p {
  margin-top: -0.5rem;
}

.faq-list-items {
  list-style: none;
  margin: 0.5rem 0 1rem 0;
  padding: 0;
}

.faq-list-items li {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.75;
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
}

.faq-list-items li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* ----------------------------------------------------------------
   13. GALLERY
   ---------------------------------------------------------------- */
.gallery-section {
  background: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream);
  position: relative;
  transition: transform var(--transition);
}

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

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

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

.gallery-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--peach) 100%);
  font-size: 2rem;
  opacity: 0.4;
}

/* Alternate gallery placeholder gradients */
.gallery-item:nth-child(2) .gallery-ph { background: linear-gradient(135deg, var(--sage) 0%, var(--cream) 100%); }
.gallery-item:nth-child(3) .gallery-ph { background: linear-gradient(135deg, var(--peach) 0%, var(--terracotta) 100%); }
.gallery-item:nth-child(4) .gallery-ph { background: linear-gradient(135deg, var(--cream) 0%, var(--sage) 100%); }
.gallery-item:nth-child(5) .gallery-ph { background: linear-gradient(135deg, var(--terracotta) 0%, var(--peach) 100%); }
.gallery-item:nth-child(6) .gallery-ph { background: linear-gradient(135deg, var(--sage) 0%, var(--dark) 100%); }

/* ----------------------------------------------------------------
   14. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--dark);
  padding: 4rem 2rem;
  text-align: center;
}

.footer-floral {
  font-size: 1.8rem;
  color: var(--peach);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.footer-names {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.footer-date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.footer-email {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--peach);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(239, 164, 142, 0.3);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}

.footer-email:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(212, 201, 160, 0.3);
  letter-spacing: 0.08em;
}

/* ----------------------------------------------------------------
   15. SCROLL REVEAL ANIMATIONS
   ---------------------------------------------------------------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* Hero reveal animations */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.25s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.7s; }

/* Password gate (for future use) */
/* PASSWORD GATE */
.password-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.password-bg {
  position: absolute;
  inset: 0;
  background:
    url('../images/hero.jpg') center/cover no-repeat,
    linear-gradient(160deg, #3A2A1E 0%, #7A5C4A 25%, #B8937A 50%, #EFA48E 75%, #B8613A 100%);
}

.password-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 12, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.password-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: rgba(253, 249, 244, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.password-header {
  margin-bottom: 2rem;
}

.password-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--peach);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.password-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--peach), var(--sage));
  margin: 0 auto 1.25rem;
}

.password-box h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.password-subtitle {
  font-size: 0.82rem;
  color: rgba(248, 244, 236, 0.45);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.password-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.password-field-group {
  text-align: left;
}

.password-field-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.5);
  margin-bottom: 0.4rem;
}

.password-field-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
  margin: 0;
}

.password-field-group input::placeholder {
  color: rgba(248, 244, 236, 0.2);
}

.password-field-group input:focus {
  border-color: var(--peach);
  background: rgba(255, 255, 255, 0.09);
}

.password-btn {
  width: 100%;
  padding: 1rem;
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.password-btn:hover {
  background: #A05230;
  transform: translateY(-1px);
}

.password-btn:active {
  transform: translateY(0);
}

#passwordError {
  font-size: 0.82rem;
  color: var(--peach);
  margin-top: 0.25rem;
}

.password-footer {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(248, 244, 236, 0.25);
  margin-top: 2rem;
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .password-box {
    padding: 2rem 1.5rem;
  }
}

/* ----------------------------------------------------------------
   16. KEYFRAMES
   ---------------------------------------------------------------- */
@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ----------------------------------------------------------------
   17. RESPONSIVE — TABLET
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 32px 1fr;
    margin-bottom: 2rem;
  }

  .timeline-side--left {
    display: none;
  }

  .timeline-side--right {
    text-align: left;
    padding: 0 0 0 1rem;
    grid-column: 2;
  }

  .timeline-center {
    grid-column: 1;
    padding-top: 1.2rem;
  }

  .timeline-card::before {
    content: attr(data-date);
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.6rem;
  }

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

  .hotel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }
}

/* ----------------------------------------------------------------
   18. RESPONSIVE — MOBILE
   ---------------------------------------------------------------- */
@media (max-width: 600px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .countdown-item {
    min-width: 60px;
    padding: 0 0.75rem;
  }

  .countdown-num {
    font-size: 2.2rem;
  }

  .countdown-sep {
    display: none;
  }

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

  .radio-group {
    grid-template-columns: 1fr;
  }

  .rsvp-form {
    padding: 1.5rem;
  }

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

  .gallery-item--wide {
    grid-column: span 1;
  }

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

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

  .agenda-item {
    grid-template-columns: 60px 32px 1fr;
  }

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

  .hero {
    background-position: center center !important;
    background:
      url('../assets/hero-mobile.webp') center/cover no-repeat,
      linear-gradient(160deg, #3A2A1E 0%, #7A5C4A 25%, #B8937A 50%, #EFA48E 75%, #B8613A 100%);
  }
}
