:root {
  --black: #0a0a0a;
  --white: #ffffff; /* PURE WHITE ONLY */
  --blue: #96DBFF;
  --blue-ink: #143847;
  --wine: #6e1f2a;

  --font-display: 'Rubik Mono One', sans-serif;
  --font-sans: 'Spectral SC', serif;
  --font-serif: 'Spectral SC', serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: #ffffff;
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; color: var(--black); }

img {
  max-width: 100%;
  display: block;
  border: 0 !important;
  border-style: none !important;
  box-shadow: none !important;
  outline: none !important;
  filter: grayscale(100%) contrast(110%);
}

a { color: inherit; }

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 5vw;
}

.faq-container-wide {
  max-width: 1400px;
}

.section { position: relative; padding: 80px 0; }
.center { text-align: center; }

:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 4px;
}

.kicker {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 16px;
  display: block;
}
.kicker.center { text-align: center; }
.kicker--wine { color: var(--wine); }
.kicker--blue { color: var(--blue-ink); }
.kicker--white { color: #ffffff; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.ornament-rule, .ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px auto;
  width: min(320px, 80vw);
}
.ornament-rule::before, .ornament-rule::after,
.ornament-divider::before, .ornament-divider::after {
  content: "";
  flex: 1;
  height: 6px;
  background: var(--black);
  clip-path: polygon(0% 20%, 15% 0%, 35% 80%, 60% 10%, 85% 90%, 100% 0%, 98% 100%, 0% 80%);
}
.ornament-rule span {
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 30px 0 60px;
  background: var(--blue);
  color: var(--black);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 6px solid var(--black);
}

.hero-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
  z-index: 10;
  background: var(--black);
  color: #ffffff;
  border: 2px solid var(--black);
}
.hero-nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 4px 8px;
}
.hero-nav a:hover {
  background: #ffffff;
  color: var(--black);
}
.hero-nav-rsvp {
  color: var(--blue) !important;
}

.hero-inner {
  z-index: 5;
  max-width: 1400px; /* Expanded for full cinematic width */
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-names {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4.2vw, 3.8rem);
  line-height: 1.1;
  margin: 12px 0 20px;
  color: var(--black);
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-names span {
  font-family: var(--font-serif);
  color: var(--wine);
  font-size: 0.85em;
  padding: 0 6px;
  text-transform: none;
}

.hero-photo-main {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 21 / 9;
  max-height: 480px;
  margin: 10px 0 28px;
  overflow: hidden;
  border: 0 !important;
}
.hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  border: 0 !important;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.hero-date-subtle {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 4px;
}

.hero-sub {
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  color: var(--black);
  margin-top: 4px;
}

/* BUTTONS & STICKY TAB */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 48px;
  background: var(--black);
  color: #ffffff;
  border: 3px solid var(--black);
  box-shadow: none !important;
  transition: opacity 0.15s ease;
}
.btn:hover { opacity: 0.9; }

.btn--wine {
  background: var(--wine);
  color: #ffffff;
  border: 3px solid var(--black);
}

.btn--blue {
  background: var(--blue);
  color: var(--black);
  border: 3px solid var(--black);
}

.sticky-rsvp {
  position: fixed;
  top: 24px;
  right: 0;
  z-index: 50;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background: var(--wine);
  padding: 12px 24px;
  border-left: 3px solid var(--black);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  box-shadow: none !important;
  transition: opacity 0.15s ease;
}
.sticky-rsvp:hover { 
  opacity: 0.9; 
  background: var(--wine); 
}

/* OUR STORY */
.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.story-label {
  display: flex;
  flex-direction: column;
}

.story-media {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: transparent;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0;
}
.story-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0 !important;
}

.story-copy p { margin: 0 0 20px; font-size: 20px; }
.story-lede { font-size: 22px; font-weight: 600; }

.story-quote {
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: #ffffff;
  background: var(--wine);
  padding: 20px 24px;
  border: 3px solid var(--black);
  box-shadow: none !important;
  margin-top: 32px;
}

/* WEDDING PARTY CARDS */
.party { 
  background: var(--black); 
  color: #ffffff;
  padding: 90px 0;
}
.party .kicker { color: var(--blue); }
.party .section-title { color: #ffffff; }

.party-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.party-card {
  background: #ffffff;
  color: var(--black);
  padding: 24px 18px;
  text-align: center;
  border: 3px solid var(--black);
  box-shadow: none !important;
}

.party-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 4px;
  text-transform: uppercase;
}

.party-role {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--wine);
  margin: 0 0 12px;
}

.party-blurb { font-size: 16px; margin: 0; line-height: 1.4; }

/* REGISTRY BANNER */
.registry { 
  background: var(--wine); 
  color: #ffffff;
  padding: 80px 0;
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
}
.registry-title { color: #ffffff; }
.registry-inner { max-width: 640px; margin: 0 auto; }
.registry-copy {
  font-size: 21px;
  margin: 18px 0 32px;
  color: #ffffff;
  text-align: center;
}
.registry .btn { display: block; width: fit-content; margin: 0 auto; }

/* FAQ */
.faq-layout-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr 340px; /* Considerably wider side photo columns */
  gap: 36px;
  align-items: stretch;
  margin-bottom: 48px;
}

.faq-center-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-side-photo {
  width: 100%;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  border: 0 !important;
}
.faq-side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0 !important;
}

.faq-gap-note {
  max-width: 100%;
  margin: 16px 0;
  padding: 20px 24px;
  background: var(--black);
  color: #ffffff;
  border: 3px solid var(--black);
  font-size: 19px;
  box-shadow: none !important;
}
.faq-gap-note strong { color: var(--blue); }
.faq-gap-note p { margin: 0; }

.local-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0 60px;
}

.local-card {
  background: #ffffff;
  padding: 20px 16px;
  text-align: center;
  border: 3px solid var(--black);
  box-shadow: none !important;
}
.local-name { font-family: var(--font-display); font-weight: 800; font-size: 14px; margin: 0 0 8px; text-transform: uppercase; }
.local-desc { font-size: 15px; margin: 0; line-height: 1.4; }

/* ACCORDION */
.accordion {
  max-width: 760px;
  margin: 0 auto;
  border-top: 4px solid var(--black);
}

.accordion-item { border-bottom: 3px solid var(--black); }

.accordion-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 8px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.accordion-item summary::-webkit-details-marker { display: none; }

.accordion-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  background: var(--black);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-item[open] summary::after {
  content: "\2212";
  background: var(--wine);
}

.accordion-body { padding: 0 8px 24px; font-size: 19px; }
.accordion-body p { margin: 0 0 12px; }
.accordion-body a { color: var(--wine); text-decoration: underline; font-weight: 700; }

/* FOOTER */
.site-footer {
  background: var(--black);
  color: #ffffff;
  text-align: center;
  padding: 48px 20px 60px;
  border-top: 6px solid var(--black);
}
.footer-names { 
  font-family: var(--font-display); 
  font-size: 22px; 
  margin: 0 0 12px; 
  color: var(--blue); 
  text-transform: uppercase;
}
.footer-names span {
  font-family: var(--font-serif);
  color: var(--wine);
  font-size: 0.9em;
  padding: 0 4px;
  text-transform: none;
}
.footer-rsvp-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .faq-layout-wrapper { 
    grid-template-columns: 1fr; 
    gap: 24px; 
  }
  .faq-side-photo { 
    min-height: 280px;
    height: 320px;
  }
  .hero-photo-main {
    aspect-ratio: 16 / 9;
    max-height: 380px;
  }
}

@media (max-width: 960px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .party-grid { grid-template-columns: repeat(2, 1fr); }
  .local-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  body { font-size: 18px; }
  .section { padding: 50px 0; }
  .hero-nav { gap: 10px; padding: 10px 14px; font-size: 11px; }
  .hero-photo-main { aspect-ratio: 4 / 3; }
  .party-grid, .local-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; text-align: center; }
  .sticky-rsvp {
    top: auto; bottom: 0; left: 0; right: 0; width: 100%;
    text-align: center; border: none; border-top: 4px solid var(--black);
  }
}