/* ── WEDDINGS PAGE ─────────────────────────────────────────────── */
/* Owns: /weddings page — hero, venue, ceremony, reception,
   packages, gallery, inquiry form.                            */
/* Does NOT own: global nav (.wd-nav), footer, or theme vars.   */

.wd-page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}

/* ── NAV (uses ev-page nav structure) ── */
.wd-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(245,239,230,0.92);
  border-bottom: 1px solid rgba(44,24,16,0.06);
  backdrop-filter: blur(8px);
}

.wd-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.wd-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wd-nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.wd-nav-links a:hover,
.wd-nav-links a.active {
  color: var(--mahogany);
  border-bottom-color: var(--brass);
}

/* ── HERO ── */
.wd-hero {
  background: var(--mahogany);
  position: relative;
  overflow: hidden;
}

.wd-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--brass) 0px,
    var(--brass) 48px,
    transparent 48px,
    transparent 64px
  );
  opacity: 0.2;
}

/* Decorative diamond ornament in hero */
.wd-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%) rotate(45deg);
  width: 320px;
  height: 320px;
  border: 1px solid rgba(196,149,106,0.08);
  pointer-events: none;
}

.wd-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 40px 88px;
  position: relative;
}

.wd-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 20px;
  display: block;
}

.wd-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 78px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.wd-hero-lede {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(245,239,230,0.6);
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
}

/* ── BRASS RULE ── */
.wd-brass-rule {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(196,149,106,0.35) 20%,
    rgba(196,149,106,0.35) 80%,
    transparent 100%
  );
  margin: 0 40px;
}

/* ── SECTION SCAFFOLDING ── */
.wd-section {
  padding: 88px 40px;
}

.wd-cream-bg    { background: var(--cream); }
.wd-mahogany-bg { background: var(--mahogany); }
.wd-deep-bg     { background: var(--cream-deep); }

.wd-inner {
  max-width: 960px;
  margin: 0 auto;
}

.wd-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Two-column layout */
.wd-two-col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── SECTION TYPOGRAPHY ── */
.wd-section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 12px;
  display: block;
}

.wd-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--mahogany);
  font-weight: 700;
  line-height: 1.2;
}

.wd-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
  font-weight: 300;
}

.wd-text-light {
  color: rgba(245,239,230,0.65);
}

.wd-label-col {
  position: sticky;
  top: 88px;
}

.wd-body-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── PACKAGES ── */
.wd-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.wd-package-card {
  background: rgba(196,149,106,0.05);
  border: 1px solid rgba(196,149,106,0.15);
  border-radius: 6px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wd-package-name {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 10px;
}

.wd-package-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--mahogany);
  line-height: 1.2;
  margin-bottom: 16px;
}

.wd-package-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
  flex: 1;
}

.wd-package-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(196,149,106,0.12);
  padding-top: 20px;
  margin-bottom: 24px;
}

.wd-package-items li {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 300;
  display: flex;
  gap: 10px;
}

.wd-package-items li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--brass);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.wd-package-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--mahogany);
  border-top: 1px solid rgba(196,149,106,0.12);
  padding-top: 16px;
  margin-top: auto;
}

/* ── GALLERY ── */
.wd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.wd-gallery-slot {
  aspect-ratio: 3 / 4;
  background: rgba(196,149,106,0.07);
  border: 1px dashed rgba(196,149,106,0.22);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.wd-gallery-slot span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(196,149,106,0.4);
  padding: 0 12px;
  line-height: 1.5;
}

/* ── INQUIRY FORM ── */
.wd-form-section {
  background: var(--cream-deep);
  border-top: 2px solid rgba(196,149,106,0.1);
  border-bottom: 2px solid rgba(196,149,106,0.1);
}

.wd-form-header {
  text-align: center;
  margin-bottom: 48px;
}

.wd-form-intro {
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.75;
  font-weight: 300;
}

.wd-inquiry-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wd-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wd-form-group label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}

.wd-form-group input,
.wd-form-group select,
.wd-form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(196,149,106,0.3);
  border-radius: 4px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.wd-form-group input:focus,
.wd-form-group select:focus,
.wd-form-group textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(196,149,106,0.1);
}

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

.wd-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23C4956A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.wd-radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wd-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  padding: 10px 16px;
  border: 1px solid rgba(196,149,106,0.25);
  border-radius: 4px;
  transition: all 0.2s;
}

.wd-radio-label:hover {
  border-color: var(--brass);
  background: rgba(196,149,106,0.04);
}

.wd-radio-label input[type="radio"] {
  accent-color: var(--brass);
  width: auto;
  margin: 0;
  padding: 0;
}

.wd-radio-label input[type="radio"]:checked + span {
  color: var(--mahogany);
  font-weight: 500;
}

.wd-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--mahogany);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: 8px;
}

.wd-submit-btn:hover {
  background: #3d1f12;
}

.wd-submit-btn svg {
  transition: transform 0.2s;
}

.wd-submit-btn:hover svg {
  transform: translateX(4px);
}

.wd-error-msg {
  background: rgba(139, 35, 21, 0.06);
  border: 1px solid rgba(139, 35, 21, 0.2);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 13px;
  color: #8b2323;
  font-weight: 400;
}

/* ── STORY LINK BANNER ── */
.wd-story-banner {
  background: var(--mahogany-deep);
  padding: 28px 40px;
  text-align: center;
}

.wd-story-banner p {
  font-size: 13px;
  color: rgba(245,239,230,0.5);
  font-weight: 300;
  margin: 0 0 12px;
}

.wd-story-banner a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,149,106,0.4);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.wd-story-banner a:hover {
  color: #d4a87a;
}

/* ── HERO BADGES ── */
.wd-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.wd-badge {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.65);
  background: rgba(196,149,106,0.12);
  border: 1px solid rgba(196,149,106,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

/* ── WHAT'S INCLUDED GRID ── */
.wd-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.wd-include-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.wd-include-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,149,106,0.07);
  border-radius: 6px;
  border: 1px solid rgba(196,149,106,0.12);
}

.wd-include-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--mahogany);
  margin-bottom: 6px;
}

.wd-include-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
}

/* ── LOGISTICS GRID ── */
.wd-logistics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.wd-logistics-item {
  border-left: 2px solid rgba(196,149,106,0.25);
  padding-left: 20px;
}

.wd-logistics-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 8px;
}

.wd-logistics-value {
  font-size: 13px;
  color: rgba(245,239,230,0.55);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

/* ── WHO BOOKS HERE LIST ── */
.wd-who-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wd-who-list li {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
  padding-left: 20px;
  position: relative;
}

.wd-who-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--brass);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

/* ── FAQ GRID ── */
.wd-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.wd-faq-item {
  background: rgba(196,149,106,0.04);
  border: 1px solid rgba(196,149,106,0.1);
  border-radius: 6px;
  padding: 24px 20px;
}

.wd-faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--mahogany);
  margin-bottom: 12px;
  line-height: 1.3;
}

.wd-faq-a {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}

/* ── TODO NOTE ── */
.wd-todo-note {
  font-size: 11px;
  color: rgba(196,149,106,0.5);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-weight: 400;
}

.wd-todo-dark {
  color: rgba(196,149,106,0.4);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--mahogany-deep);
  padding: 28px 40px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(245,239,230,0.5);
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--cream);
}

.footer-sep {
  color: rgba(196,149,106,0.3);
}

.footer-address {
}

.footer-meta {
  font-size: 12px;
  color: rgba(245,239,230,0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-meta a {
  color: rgba(245,239,230,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-meta a:hover {
  color: rgba(245,239,230,0.65);
}

/* ── HAMBURGER / DRAWER ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 4px;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,24,16,0.4);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.25s;
}

.nav-overlay.visible {
  display: block;
  opacity: 1;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: var(--cream);
  z-index: 201;
  padding: 24px;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -4px 0 24px rgba(44,24,16,0.15);
}

.nav-drawer.open {
  display: flex;
  transform: translateX(0);
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.nav-drawer-close {
  background: none;
  border: none;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 4px;
}

.nav-drawer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.nav-drawer-links a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(44,24,16,0.06);
  transition: color 0.2s;
}

.nav-drawer-links a:hover,
.nav-drawer-links a.active {
  color: var(--mahogany);
}

.nav-drawer-waitlist {
  display: inline-block;
  padding: 12px 20px;
  background: var(--mahogany);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  margin-top: 24px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .wd-nav {
    padding: 0 24px;
  }

  .wd-nav-links {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .wd-hero-inner {
    padding: 56px 24px 64px;
  }

  .wd-hero::before {
    display: none;
  }

  .wd-section {
    padding: 56px 24px;
  }

  .wd-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wd-label-col {
    position: static;
  }

  .wd-packages-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .wd-includes-grid {
    grid-template-columns: 1fr;
  }

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

  .wd-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wd-nav-links {
    gap: 14px;
  }

  .wd-nav-links a {
    font-size: 12px;
  }

  .wd-hero-title {
    font-size: 36px;
  }

  .wd-section-title {
    font-size: 22px;
  }

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

  .wd-brass-rule {
    margin: 0 24px;
  }
}