:root {
  --cream: #faf7f2;
  --parchment: #ede5d4;
  --rose: #c07a85;
  --rose-light: #d8a4ac;
  --rose-pale: #f2d8db;
  --dusty-green: #7a9187;
  --green-pale: #d4e2db;
  --brown: #6b4f3a;
  --brown-light: #a07c63;
  --text: #3a2e26;
  --text-light: #7a6a5e;
  --gold: #b8924e;
  --gold-light: #dcc99a;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,146,78,0.2);
}
.nav-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose); }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.lang-sep {
  font-size: 0.65rem;
  color: var(--gold);
  opacity: 0.6;
}
.lang-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.1rem 0;
  transition: color 0.2s;
}
.lang-btn:hover { color: var(--brown); }
.lang-btn.active {
  color: var(--brown);
  font-weight: 500;
}
.lang-toggle-mobile {
  margin-top: 1.5rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brown);
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.08em;
}
.mobile-menu .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown);
}

/* ── HERO ── */
#hero {
  display: flex;
  flex-direction: column;
}

.hero-photo-wrap {
  width: 100%;
  height: 85vh;
  position: relative;
  overflow: hidden;
  background: var(--parchment);
  flex-shrink: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(10%) brightness(0.97) contrast(1.03);
  display: block;
}

.hero-no-photo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #d4c5b5 0%, #b8a898 50%, #c9a96e22 100%);
}

.photo-icon {
  width: 52px;
  height: 52px;
  opacity: 0.35;
  color: var(--brown);
}
.photo-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--brown-light);
  opacity: 0.7;
  margin-top: 10px;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 3rem 4.5rem;
  position: relative;
  background: var(--cream);
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(184,146,78,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: var(--brown);
  line-height: 1.05;
  margin-bottom: 0.3rem;
}
.hero-ampersand {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--rose);
  display: block;
  margin: -0.2rem 0;
}
.hero-date-bar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 2rem 0;
}
.hero-date-bar .line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-date {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-light);
  font-weight: 400;
}
.hero-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: transparent;
  border: 1px solid var(--rose);
  color: var(--rose);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover span { color: var(--white); }


/* ── DIVIDER ── */
.section-divider {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
  position: relative;
}
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.divider-ornament .line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider-ornament .line.right {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.divider-ornament .diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── SECTION BASE ── */
section {
  padding: 6rem 0;
  position: relative;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.section-title {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

/* ── INVITATION SECTION ── */
#invitation {
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}
#invitation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,146,78,0.1) 0%, transparent 60%);
}
.invitation-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 4rem;
  border: 1px solid rgba(184,146,78,0.3);
  position: relative;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.invitation-card::before,
.invitation-card::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.4;
}
.invitation-card::before {
  top: 12px; left: 12px;
  border-width: 1px 0 0 1px;
}
.invitation-card::after {
  bottom: 12px; right: 12px;
  border-width: 0 1px 1px 0;
}
.inv-request {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
}
.inv-names {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.inv-conjunction {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--rose);
  font-style: italic;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.inv-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.inv-details {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  margin-top: 2rem;
}
.inv-detail-col {
  padding: 1.5rem 2rem;
}
.inv-detail-col:nth-child(2) {
  background: linear-gradient(180deg, transparent, rgba(184,146,78,0.3), transparent);
  width: 1px;
  padding: 0;
}
.detail-icon {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.detail-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.detail-primary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0.2rem;
}
.detail-secondary {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── SCHEDULE SECTION ── */
#schedule {
  background: var(--cream);
}
.timeline {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 5.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-light) 15%, var(--gold-light) 85%, transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 5rem 2.5rem 1fr;
  gap: 0 1rem;
  align-items: flex-start;
  margin-bottom: 2.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-time {
  text-align: right;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 400;
  padding-top: 0.15rem;
  text-transform: uppercase;
}
.timeline-dot {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.3rem;
}
.timeline-dot::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose-light);
  border: 2px solid var(--rose);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0.3rem;
}
.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}
.timeline-content .venue-tag {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dusty-green);
  background: var(--green-pale);
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
}

/* ── DRESS CODE SECTION ── */
#dresscode {
  background: var(--parchment);
}

/* Block 1 — Attire */
.dc-attire {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 4rem;
}
.dc-style {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  color: var(--rose);
  display: block;
  margin: 0.2rem 0 1.4rem;
}
.dc-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 2.5rem;
}
.dc-guidance {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  border-top: 1px solid rgba(184,146,78,0.25);
  padding-top: 2rem;
  text-align: left;
}
.dc-gender {
  padding: 0 2rem;
}
.dc-gender:first-child { padding-left: 0; }
.dc-gender:last-child { padding-right: 0; }
.dc-gender-divider {
  background: linear-gradient(180deg, transparent, rgba(184,146,78,0.3), transparent);
}
.dc-gender-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.dc-gender p:not(.dc-gender-label) {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Block 2 — Colour Palette */
.dc-palette-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  border-top: 1px solid rgba(184,146,78,0.2);
  padding-top: 4rem;
}
.dc-palette-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 1rem;
}
.dc-palette-text > p:not(.section-label):not(.dc-palette-heading):not(.dresscode-avoid-note) {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
  font-style: italic;
}
.dresscode-visual {
  position: relative;
  align-self: stretch;
  min-height: 480px;
}
.dresscode-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  display: block;
}

.dresscode-note {
  background: rgba(107,79,58,0.1);
  padding: 0.9rem 1.2rem;
  border-left: 3px solid var(--brown);
  margin: 1rem 0;
}
.dresscode-note p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  font-style: normal;
  color: var(--brown);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.dresscode-note p:last-child { margin-bottom: 0; }
.dresscode-avoid-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  font-style: normal;
  color: var(--brown-light);
  line-height: 1.7;
}

/* ── RSVP SECTION ── */
#rsvp {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#rsvp::before {
  content: '';
  position: absolute;
  bottom: 0; right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(192,122,133,0.06) 0%, transparent 70%);
}

.rsvp-form-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.form-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(184,146,78,0.4), transparent);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.form-row.single { grid-template-columns: 1fr; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-light);
  font-weight: 400;
}
.form-group label .req { color: var(--rose); margin-left: 2px; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(107,79,58,0.2);
  background: rgba(255,255,255,0.7);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 2px;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose);
  background: rgba(255,255,255,0.95);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b4f3a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.attendance-options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.5);
  transition: border-color 0.2s, background 0.2s;
  border-radius: 2px;
}
.radio-option:hover {
  border-color: rgba(192,122,133,0.3);
  background: rgba(255,255,255,0.8);
}
.radio-option input[type="radio"] { display: none; }
.radio-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(107,79,58,0.3);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}
.radio-custom::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
}
.radio-option.selected {
  border-color: rgba(192,122,133,0.5);
  background: var(--rose-pale);
}
.radio-option.selected .radio-custom {
  border-color: var(--rose);
}
.radio-option.selected .radio-custom::after {
  opacity: 1;
  transform: scale(1);
}
.radio-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text);
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 1.5rem 0;
  cursor: pointer;
}
.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(107,79,58,0.3);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.checkbox-custom.checked {
  background: var(--rose);
  border-color: var(--rose);
}
.checkbox-custom.checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
  font-weight: 500;
}
.checkbox-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.plus-one-section {
  background: rgba(250,246,240,0.8);
  border: 1px solid rgba(184,146,78,0.2);
  padding: 1.8rem;
  margin-top: 1rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.4s;
  opacity: 0;
  border-radius: 2px;
  box-sizing: border-box;
  width: 100%;
}
.plus-one-section textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.plus-one-section.open {
  max-height: 1200px;
  overflow: visible;
  opacity: 1;
}
.plus-one-section .section-inner { padding-top: 0.5rem; }

.dietary-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.dietary-chip {
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(107,79,58,0.2);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  letter-spacing: 0.04em;
}
.dietary-chip.active {
  border-color: var(--dusty-green);
  background: var(--green-pale);
  color: var(--dusty-green);
}

.form-divider {
  border: none;
  border-top: 1px solid rgba(184,146,78,0.2);
  margin: 2rem 0;
}

.submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--brown);
  color: var(--cream);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 2px;
  margin-top: 0.5rem;
  font-weight: 400;
}
.submit-btn:hover { background: var(--rose); }
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  display: none;
}
.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.form-success h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  color: var(--brown);
  margin-bottom: 0.8rem;
}
.form-success p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.7;
}

.form-error-msg {
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  display: none;
}
.form-error-msg.show { display: block; }

/* ── GIFTS SECTION ── */
#gifts {
  background: var(--parchment);
}
.gifts-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.gifts-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.gift-options {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  border: 1px solid rgba(184,146,78,0.3);
  background: rgba(255,255,255,0.5);
}
.gift-option {
  padding: 2.5rem 2rem;
  text-align: center;
}
.gift-option-divider {
  background: linear-gradient(180deg, transparent, rgba(184,146,78,0.35), transparent);
}
.gift-option-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}
.gift-option h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}
.gift-option p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
}

/* ── FAQ SECTION ── */
#faq {
  background: var(--cream);
}
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(184,146,78,0.2);
}
.faq-item:first-child {
  border-top: 1px solid rgba(184,146,78,0.2);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon::before {
  width: 100%; height: 1.5px;
  top: 50%; left: 0;
  transform: translateY(-50%);
}
.faq-icon::after {
  width: 1.5px; height: 100%;
  left: 50%; top: 0;
  transform: translateX(-50%);
}
.faq-item.open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.4rem;
}
.faq-answer p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ── COMMUNICATION SECTION ── */
#communication {
  background: var(--brown);
  color: var(--cream);
  text-align: center;
  padding: 5rem 0;
}
#communication .section-label { color: var(--gold-light); }
#communication .section-title { color: var(--cream); }
#communication p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(250,246,240,0.75);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}
#communication .divider-ornament .line {
  background: linear-gradient(90deg, transparent, rgba(184,146,78,0.5));
  max-width: 80px;
}
#communication .divider-ornament .line.right {
  background: linear-gradient(90deg, rgba(184,146,78,0.5), transparent);
}
#communication .divider-ornament .diamond {
  background: var(--gold);
}

/* ── FOOTER ── */
footer {
  background: #2e231a;
  color: rgba(250,246,240,0.5);
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
footer .footer-script {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: rgba(184,146,78,0.6);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── STATUS BADGE (form submission) ── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.status-badge.saving {
  background: var(--gold-light);
  color: var(--brown);
}
.status-badge.saved {
  background: var(--green-pale);
  color: var(--dusty-green);
}
.status-badge.error {
  background: #fce8e6;
  color: #c0392b;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-photo-wrap { height: 55vw; min-height: 280px; }
  .hero-content { padding: 3rem 2rem 3.5rem; }
  .hero-intro { max-width: 100%; }

  .inv-details { grid-template-columns: 1fr; }
  .inv-detail-col:nth-child(2) { display: none; }
  .invitation-card { padding: 2.5rem 1.5rem; }

  .dc-guidance {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .dc-gender-divider { display: none; }
  .dc-gender { padding: 0; }
  .dc-palette-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3rem;
  }
  .dresscode-visual { min-height: 360px; }
  .gift-options { grid-template-columns: 1fr; }
  .gift-option-divider { display: none; }
  .gift-option { border-bottom: 1px solid rgba(184,146,78,0.2); }
  .gift-option:last-child { border-bottom: none; }
  .timeline::before { left: 4.5rem; }
  .timeline-item { grid-template-columns: 4rem 2rem 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-photo-wrap { height: 60vw; min-height: 240px; }
  .hero-script { font-size: 2.8rem; }
  .timeline::before { display: none; }
  .timeline-item {
    grid-template-columns: 3.5rem 1fr;
    gap: 0 0.8rem;
  }
  .timeline-dot { display: none; }
  .dc-attire { margin-bottom: 3rem; }
  section { padding: 4rem 0; }
}
