:root {
  --ink: #17231f;
  --muted: #61706a;
  --deep: #17352d;
  --deep-2: #0f2822;
  --cream: #fbf7ef;
  --paper: #fffaf2;
  --sand: #e5d6c5;
  --rose: #c98776;
  --sage: #8fa486;
  --gold: #b88b4f;
  --line: rgba(23, 35, 31, .13);
  --glass: rgba(255, 250, 242, .68);
  --shadow: 0 24px 80px rgba(23, 35, 31, .16);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 32px));
  color-scheme: light;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(135deg, rgba(143, 164, 134, .12), transparent 26%),
    linear-gradient(315deg, rgba(201, 135, 118, .12), transparent 30%),
    var(--cream);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(184, 139, 79, .65);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  width: var(--container);
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  background: rgba(255, 250, 242, .7);
  box-shadow: 0 16px 50px rgba(23, 35, 31, .12);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  transition: background .25s ease, box-shadow .25s ease, top .25s ease;
}

.site-header.is-scrolled {
  top: 8px;
  background: rgba(255, 250, 242, .9);
  box-shadow: 0 18px 60px rgba(23, 35, 31, .18);
}

.brand {
  width: 44px;
  height: 44px;
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  place-content: center;
  gap: 2px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .85rem;
  letter-spacing: .04em;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  color: var(--deep);
  background: rgba(23, 53, 45, .08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav {
  position: fixed;
  inset: 82px 16px auto;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 18px;
  background: rgba(255, 250, 242, .94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .2s ease;
}

.nav-open .site-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 650;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--deep);
  background: rgba(23, 53, 45, .08);
}

.site-nav .nav-cta {
  color: var(--paper);
  background: var(--deep);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--paper);
  background: var(--deep-2);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 120px max(16px, calc((100vw - 1120px) / 2)) 34px;
  overflow: hidden;
  color: var(--paper);
  background: var(--deep) url("../img/couple-hero.jpeg") center / cover fixed no-repeat;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  opacity: 0;
}

@media (max-width: 759px) {
  .hero {
    background-image: url("../img/couple-story-4-clean.jpeg");
  }
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(15, 40, 34, .25), rgba(15, 40, 34, .82)),
    linear-gradient(90deg, rgba(15, 40, 34, .82), rgba(15, 40, 34, .08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.1rem, 19vw, 10.5rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 8vw, 5rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-date {
  margin-bottom: 16px;
  color: #f8e7ca;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 3.4vw, 1.45rem);
  color: rgba(255, 250, 242, .88);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(23, 35, 31, .16);
}

.button-primary {
  color: var(--deep);
  background: linear-gradient(135deg, #fff7df, #d7a85e);
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(255, 250, 242, .38);
  background: rgba(255, 250, 242, .08);
  backdrop-filter: blur(14px);
}

.button-secondary {
  color: var(--paper);
  background: var(--deep);
}

.button:disabled {
  cursor: not-allowed;
  opacity: .62;
  transform: none;
  box-shadow: none;
}

.countdown {
  position: relative;
  z-index: 1;
  width: min(100%, 310px);
  margin-top: 40px;
  padding: 18px;
  border-radius: var(--radius);
}

.countdown span {
  display: block;
  color: rgba(255, 250, 242, .72);
  font-size: .9rem;
}

.countdown strong {
  display: block;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
}

.glass {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 250, 242, .14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
  backdrop-filter: blur(22px);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0;
}

.split {
  display: grid;
  gap: 26px;
}

.rich-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.couple-grid,
.schedule-grid,
.gift-grid,
.highlight-grid {
  display: grid;
  gap: 16px;
}

.person-card,
.schedule-item,
.gift-card,
.highlight-card,
.note-panel,
.upload-placeholder,
.success-message,
.anmeldung-form,
.location-panel,
.faq-grid details {
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, .76);
  box-shadow: 0 18px 60px rgba(23, 35, 31, .08);
  backdrop-filter: blur(18px);
}

.person-card {
  min-height: 300px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}

.person-card::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 135, 118, .28), transparent 68%);
}

.person-initial {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-bottom: 50px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
}

.person-card p,
.schedule-item p,
.gift-card p,
.highlight-card p,
.note-panel p,
.upload-placeholder p,
.success-message p {
  color: var(--muted);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--line);
}

.timeline li {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 0 0 32px 28px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 7px rgba(201, 135, 118, .16);
}

.timeline time,
.schedule-item time {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
}

.schedule-item {
  padding: 24px;
}

.location-panel {
  display: grid;
  gap: 22px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 250, 242, .86), rgba(230, 214, 197, .56));
}

address {
  margin-bottom: 18px;
  color: var(--deep);
  font-style: normal;
  font-weight: 800;
}

.map-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(23, 53, 45, .88), rgba(23, 53, 45, .62)),
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(255, 255, 255, .12) 24px 25px);
  overflow: hidden;
}

.map-placeholder span {
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-grid details {
  padding: 18px 20px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--deep);
  font-weight: 850;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-band {
  width: min(1120px, calc(100vw - 32px));
  margin-bottom: 70px;
  padding: 42px 22px;
  border-radius: var(--radius);
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 0, rgba(201, 135, 118, .38), transparent 30%),
    linear-gradient(135deg, var(--deep), #10231f);
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 760px;
  margin-inline: auto;
}

.page-hero {
  min-height: 58svh;
  display: grid;
  align-items: end;
  padding: 128px 0 54px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(15, 40, 34, .88), rgba(15, 40, 34, .44)),
    url("../img/hero-wedding.svg") center / cover;
}

.gifts-hero {
  background:
    linear-gradient(135deg, rgba(23, 53, 45, .9), rgba(184, 139, 79, .35)),
    url("../img/gallery-04.svg") center / cover;
}

.gallery-hero {
  background:
    linear-gradient(135deg, rgba(15, 40, 34, .88), rgba(201, 135, 118, .32)),
    url("../img/gallery-02.svg") center / cover;
}

.anmeldung-hero {
  background:
    linear-gradient(135deg, rgba(15, 40, 34, .9), rgba(143, 164, 134, .35)),
    url("../img/gallery-05.svg") center / cover;
}

.page-hero-inner {
  width: var(--container);
  margin: 0 auto;
  max-width: 840px;
}

.page-hero h1 {
  font-size: clamp(3.3rem, 15vw, 8rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 250, 242, .86);
  font-size: 1.12rem;
}

.filter-bar {
  display: flex;
  gap: 10px;
  padding-bottom: 26px;
  overflow-x: auto;
}

.filter-bar a {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, .72);
  color: var(--deep);
  font-weight: 800;
}

.gift-groups {
  display: grid;
  gap: 44px;
}

.gift-group h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.gift-card {
  min-height: 205px;
  padding: 22px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.gift-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(23, 35, 31, .13);
}

.status {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status.free {
  color: #17352d;
  background: rgba(143, 164, 134, .26);
}

.status.reserved {
  color: #70421f;
  background: rgba(216, 173, 100, .28);
}

.status.done {
  color: #6f3c34;
  background: rgba(201, 135, 118, .24);
}

.note-panel {
  margin-top: 44px;
  padding: 24px;
}

.highlight-card {
  padding: 22px;
}

.highlight-card span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 270px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 18px 52px rgba(23, 35, 31, .12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.upload-placeholder {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 40, 34, .88);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: min(82vh, 900px);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 255, 255, .1);
  font-size: 2rem;
  line-height: 1;
}

.anmeldung-section {
  display: grid;
  gap: 20px;
}

.anmeldung-form,
.success-message {
  padding: 20px;
}

.choice-fieldset {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.choice-fieldset legend {
  margin-bottom: 10px;
  color: var(--deep);
  font-weight: 900;
}

.choice-card {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px 14px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .46);
  font-weight: 850;
}

.choice-card input {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  accent-color: var(--deep);
}

.choice-card:has(input:checked) {
  border-color: rgba(23, 53, 45, .42);
  background: rgba(143, 164, 134, .18);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  color: var(--deep);
  font-weight: 850;
}

.field label span {
  color: var(--muted);
  font-weight: 650;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .68);
  color: var(--ink);
}

.field input,
.field select {
  min-height: 50px;
  padding: 12px 14px;
}

.field textarea {
  resize: vertical;
  padding: 13px 14px;
}

.guest-list {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.guest-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .42);
}

.guest-card h3 {
  margin-bottom: 16px;
}

.guest-card fieldset.field {
  margin: 0;
  padding: 0;
  border: 0;
}

.guest-card legend {
  margin-bottom: 8px;
  color: var(--deep);
  font-weight: 850;
}

.meal-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.meal-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .44);
  font-weight: 750;
}

.meal-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--deep);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.success-message {
  align-self: start;
}

.site-footer {
  width: var(--container);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--deep);
  font-weight: 850;
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 680px) {
  :root {
    --container: min(1120px, calc(100vw - 56px));
  }

  .hero {
    align-items: center;
    padding-bottom: 54px;
  }

  .countdown {
    position: absolute;
    right: max(28px, calc((100vw - 1120px) / 2));
    bottom: 54px;
  }

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

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

  .location-panel {
    grid-template-columns: .9fr 1.1fr;
    padding: 26px;
  }

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

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

  .upload-placeholder {
    grid-template-columns: 1fr auto;
    padding: 28px;
  }

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

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

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .site-header {
    padding: 10px 10px 10px 16px;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    backdrop-filter: none;
  }

  .site-nav a:hover {
    transform: translateY(-1px);
  }

  .split {
    grid-template-columns: .9fr 1.1fr;
    align-items: start;
  }

  .section {
    padding: 96px 0;
  }

  .schedule-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gift-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
  }

  .gallery-item {
    min-height: auto;
  }

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

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

  .anmeldung-section {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
  }

  .anmeldung-form,
  .success-message {
    padding: 28px;
  }
}

/* Visual upgrade layer */
body {
  background:
    linear-gradient(120deg, rgba(23, 53, 45, .08), transparent 22%),
    linear-gradient(300deg, rgba(184, 139, 79, .13), transparent 28%),
    linear-gradient(180deg, #fbf7ef 0%, #eee1d2 54%, #f8f3eb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .48;
  background-image:
    linear-gradient(rgba(23, 35, 31, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 35, 31, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.hero {
  min-height: 100svh;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 250, 242, .22);
  border-radius: 18px;
  pointer-events: none;
}

.hero-media {
  transform: scale(1.05);
  animation: heroDrift 16s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  z-index: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(236, 180, 112, .22), transparent 28%),
    linear-gradient(90deg, rgba(10, 27, 23, .93) 0%, rgba(10, 27, 23, .68) 38%, rgba(10, 27, 23, .18) 78%),
    linear-gradient(180deg, rgba(10, 27, 23, .16), rgba(10, 27, 23, .86));
}

.hero-content {
  padding-bottom: 58px;
}

.hero-content h1 {
  max-width: 920px;
  text-wrap: balance;
  text-shadow: 0 22px 70px rgba(0, 0, 0, .32);
}

.hero-date {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid rgba(255, 250, 242, .22);
  border-radius: 999px;
  background: rgba(255, 250, 242, .1);
  backdrop-filter: blur(16px);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 4;
  width: 34px;
  height: 54px;
  display: none;
  place-items: start center;
  padding-top: 10px;
  border: 1px solid rgba(255, 250, 242, .38);
  border-radius: 999px;
  background: rgba(255, 250, 242, .1);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.scroll-cue span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--paper);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.editorial-split {
  margin-bottom: 34px;
}

.editorial-collage {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.editorial-collage figure {
  margin: 0;
}

.editorial-collage img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(23, 35, 31, .17);
}

.collage-main {
  min-height: 420px;
}

.collage-side {
  min-height: 280px;
}

.collage-note {
  position: relative;
  z-index: 3;
  padding: 22px;
  color: var(--paper);
  background: rgba(15, 40, 34, .72);
}

.collage-note span {
  display: block;
  margin-bottom: 12px;
  color: #f4d194;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.collage-note strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 10vw, 5.8rem);
  font-weight: 500;
  line-height: .9;
}

.collage-note p {
  margin: 0;
  color: rgba(255, 250, 242, .78);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform .45s ease, filter .45s ease;
  will-change: transform;
}

.tilt-card:hover {
  filter: saturate(1.08) contrast(1.04);
}

.marquee {
  width: 100%;
  overflow: hidden;
  padding: 22px 0;
  border-block: 1px solid rgba(23, 35, 31, .12);
  background: var(--deep);
  color: rgba(255, 250, 242, .9);
}

.marquee div {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: marquee 24s linear infinite;
}

.marquee span {
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 9vw, 6.5rem);
  line-height: .9;
  white-space: nowrap;
}

.person-card,
.schedule-item,
.gift-card,
.highlight-card,
.faq-grid details {
  position: relative;
  overflow: hidden;
}

.person-card::after,
.schedule-item::after,
.gift-card::after,
.highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .38) 48%, transparent 62%);
  transform: translateX(-130%);
  transition: transform .75s ease;
}

.person-card:hover::after,
.schedule-item:hover::after,
.gift-card:hover::after,
.highlight-card:hover::after {
  transform: translateX(130%);
}

.person-card {
  color: var(--paper);
  background:
    linear-gradient(160deg, rgba(15, 40, 34, .94), rgba(23, 53, 45, .62)),
    url("../img/photo-details-toast.png") center / cover;
}

.person-card:nth-child(2) {
  background:
    linear-gradient(160deg, rgba(15, 40, 34, .92), rgba(201, 135, 118, .42)),
    url("../img/photo-party.png") center / cover;
}

.person-card p {
  color: rgba(255, 250, 242, .8);
}

.person-initial {
  color: var(--deep);
  background: rgba(255, 250, 242, .88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.timeline {
  border-left: 0;
  counter-reset: story;
}

.timeline li {
  min-height: 120px;
  margin-bottom: 14px;
  padding: 22px 22px 22px 82px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, .68);
  box-shadow: 0 18px 60px rgba(23, 35, 31, .08);
  backdrop-filter: blur(18px);
}

.timeline li::before {
  counter-increment: story;
  content: counter(story, decimal-leading-zero);
  left: 20px;
  top: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--deep);
  box-shadow: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.schedule-grid {
  counter-reset: schedule;
}

.schedule-item {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-color: rgba(23, 53, 45, .16);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .62), rgba(255, 250, 242, .9)),
    linear-gradient(135deg, rgba(143, 164, 134, .18), rgba(201, 135, 118, .12));
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.schedule-item::before {
  counter-increment: schedule;
  content: counter(schedule, decimal-leading-zero);
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(23, 53, 45, .12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  line-height: 1;
}

.schedule-item:hover {
  transform: translateY(-8px) rotate(-.7deg);
  box-shadow: 0 30px 90px rgba(23, 35, 31, .16);
}

.photo-break {
  position: relative;
  width: min(1180px, calc(100vw - 24px));
  min-height: 620px;
  display: grid;
  align-items: end;
  margin: 40px auto 10px;
  overflow: hidden;
  border-radius: 18px;
  color: var(--paper);
  box-shadow: 0 34px 100px rgba(23, 35, 31, .26);
}

.photo-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.photo-break:hover img {
  transform: scale(1.04);
}

.photo-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(10, 27, 23, .86)),
    radial-gradient(circle at 70% 25%, rgba(244, 209, 148, .22), transparent 28%);
}

.photo-break div {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 28px;
}

.photo-break p:not(.eyebrow) {
  color: rgba(255, 250, 242, .8);
  font-size: 1.1rem;
}

.page-hero {
  min-height: 68svh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(255, 250, 242, .2);
  border-radius: 18px;
}

.gifts-hero {
  background:
    linear-gradient(110deg, rgba(10, 27, 23, .9), rgba(10, 27, 23, .2)),
    url("../img/photo-details-toast.png") center / cover;
}

.gallery-hero {
  background:
    linear-gradient(110deg, rgba(10, 27, 23, .88), rgba(10, 27, 23, .12)),
    url("../img/photo-party.png") center / cover;
}

.anmeldung-hero {
  background:
    linear-gradient(110deg, rgba(10, 27, 23, .9), rgba(10, 27, 23, .18)),
    url("../img/photo-hero-couple.png") center / cover;
}

.gift-card,
.highlight-card,
.note-panel,
.upload-placeholder,
.success-message,
.anmeldung-form,
.location-panel,
.faq-grid details {
  background: rgba(255, 250, 242, .78);
}

.gallery-item {
  transform: translateZ(0);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(10, 27, 23, .38)),
    radial-gradient(circle at 70% 10%, rgba(255, 250, 242, .22), transparent 28%);
  opacity: 0;
  transition: opacity .35s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.reveal {
  transform: translateY(34px) scale(.98);
  filter: blur(6px);
}

.reveal.is-visible {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.05) translate3d(-1%, -1%, 0);
  }
  to {
    transform: scale(1.1) translate3d(1.4%, 1%, 0);
  }
}

@keyframes scrollDot {
  0%, 100% {
    transform: translateY(0);
    opacity: .45;
  }
  50% {
    transform: translateY(22px);
    opacity: 1;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 680px) {
  .scroll-cue {
    display: grid;
  }

  .editorial-collage {
    grid-template-columns: 1.15fr .85fr;
    align-items: end;
  }

  .collage-main {
    grid-row: span 2;
    min-height: 640px;
  }

  .collage-side {
    min-height: 330px;
  }

  .collage-note {
    margin-left: -90px;
  }

  .photo-break div {
    padding: 52px;
  }
}

@media (min-width: 920px) {
  .hero-content {
    padding-bottom: 0;
  }

  .timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .timeline li {
    margin: 0;
  }

  .timeline li:nth-child(even) {
    transform: translateY(46px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .marquee div,
  .scroll-cue span {
    animation: none;
  }

  .reveal {
    filter: none;
  }
}

/* Local fonts + Lucide icon layer */
body {
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
}

h1,
h2,
.countdown strong,
.collage-note strong,
.marquee span {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
}

h1 {
  letter-spacing: 0;
}

h3,
.button,
.site-nav a,
.eyebrow,
  .section-kicker,
  .hero-date,
  .timeline time,
  .schedule-item time {
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
}

.site-header {
  min-height: 68px;
}

.brand {
  width: auto;
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  border: 1px solid rgba(23, 53, 45, .12);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 250, 242, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 12px 32px rgba(23, 35, 31, .08);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.brand-icon {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .34), transparent 28%),
    linear-gradient(135deg, var(--deep), #0c1f1a);
  box-shadow: 0 12px 28px rgba(23, 35, 31, .18);
}

.brand-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid rgba(184, 139, 79, .45);
  border-radius: inherit;
  opacity: .8;
}

.brand-icon img {
  width: 19px;
  height: 19px;
  filter: invert(100%) sepia(16%) saturate(748%) hue-rotate(322deg) brightness(109%) contrast(97%);
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
}

.brand-word span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25em;
  font-weight: 600;
  transform: translateY(1px);
}

.nav-icon,
.button-icon,
.inline-icon,
.card-icon {
  flex: 0 0 auto;
  display: inline-block;
  width: 1.08em;
  height: 1.08em;
  object-fit: contain;
}

.nav-icon,
.button-icon {
  filter: brightness(0) saturate(100%) invert(17%) sepia(23%) saturate(705%) hue-rotate(111deg) brightness(92%) contrast(91%);
}

.nav-cta .nav-icon,
.button-primary .button-icon,
.button-ghost .button-icon,
.button-secondary .button-icon {
  filter: brightness(0) saturate(100%) invert(99%) sepia(12%) saturate(575%) hue-rotate(314deg) brightness(108%) contrast(97%);
}

.button-primary .button-icon {
  filter: brightness(0) saturate(100%) invert(15%) sepia(20%) saturate(899%) hue-rotate(111deg) brightness(95%) contrast(91%);
}

.site-nav a {
  gap: 8px;
}

.inline-icon {
  margin-right: 8px;
  vertical-align: -2px;
  filter: brightness(0) saturate(100%) invert(54%) sepia(20%) saturate(922%) hue-rotate(358deg) brightness(91%) contrast(85%);
}

.card-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30px;
  height: 30px;
  padding: 7px;
  border-radius: 50%;
  background: rgba(23, 53, 45, .1);
  filter: brightness(0) saturate(100%) invert(19%) sepia(18%) saturate(1060%) hue-rotate(112deg) brightness(92%) contrast(91%);
}

.schedule-item {
  padding-top: 82px;
}

.schedule-item time,
.schedule-item h3,
.schedule-item p {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
}

.page-hero .eyebrow,
.hero .eyebrow,
.photo-break .eyebrow,
.cta-band .eyebrow {
  color: #f4d194;
}

.page-hero .inline-icon,
.hero .inline-icon,
.photo-break .inline-icon,
.cta-band .inline-icon {
  filter: brightness(0) saturate(100%) invert(88%) sepia(40%) saturate(597%) hue-rotate(339deg) brightness(103%) contrast(91%);
}

.button {
  letter-spacing: .01em;
}

.hero-copy,
.rich-text,
.page-hero p:not(.eyebrow) {
  font-weight: 400;
}

@media (max-width: 919px) {
  .brand-word {
    display: none;
  }

  .brand {
    width: 48px;
    padding: 5px;
  }
}

/* Anmeldung experience */
.anmeldung-experience {
  gap: 22px;
}

.anmeldung-aside {
  display: grid;
  gap: 14px;
}

.aside-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, .8);
  box-shadow: 0 18px 60px rgba(23, 35, 31, .08);
  backdrop-filter: blur(18px);
}

.aside-card > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 9vw, 4rem);
  font-weight: 600;
  line-height: .9;
}

.aside-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.aside-dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 0, rgba(244, 209, 148, .18), transparent 28%),
    linear-gradient(145deg, rgba(15, 40, 34, .95), rgba(23, 53, 45, .82));
}

.aside-dark .eyebrow,
.aside-dark p,
.aside-dark dt {
  color: rgba(255, 250, 242, .72);
}

.anmeldung-summary {
  display: grid;
  gap: 12px;
  margin: 0;
}

.anmeldung-summary div {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 250, 242, .14);
}

.anmeldung-summary div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.anmeldung-summary dt {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.anmeldung-summary dd {
  margin: 0;
  color: var(--paper);
  font-weight: 800;
  text-align: right;
}

.anmeldung-form {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .94), rgba(255, 250, 242, .72)),
    radial-gradient(circle at 100% 0, rgba(201, 135, 118, .15), transparent 32%);
}

.anmeldung-form::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--gold), var(--rose), var(--sage));
}

.form-progress {
  position: sticky;
  top: 84px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, .9);
  backdrop-filter: blur(18px);
}

.form-progress span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.form-progress span.is-active {
  color: var(--paper);
  border-color: transparent;
  background: var(--deep);
}

.form-step {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(23, 35, 31, .1);
}

.step-heading {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.step-heading > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
}

.step-heading h2 {
  margin-bottom: 6px;
  font-size: clamp(2rem, 7vw, 3.4rem);
}

.step-heading p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.attendance-options {
  gap: 12px;
  margin-bottom: 0;
}

.attendance-options .choice-card {
  align-items: flex-start;
  min-height: 118px;
  padding: 20px 18px 20px 54px;
  background: rgba(255, 255, 255, .5);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.attendance-options .choice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(23, 35, 31, .1);
}

.attendance-options .choice-card input {
  top: 24px;
}

.attendance-options strong {
  display: block;
  margin-bottom: 6px;
  color: var(--deep);
  font-size: 1.08rem;
}

.attendance-options small {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.floating-field {
  position: relative;
  margin-bottom: 0;
}

.floating-field input,
.floating-field textarea {
  min-height: 62px;
  padding: 24px 16px 10px;
  background: rgba(255, 255, 255, .66);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.floating-field textarea {
  min-height: 150px;
}

.floating-field label {
  position: absolute;
  left: 16px;
  top: 19px;
  color: var(--muted);
  pointer-events: none;
  transition: transform .16s ease, color .16s ease, font-size .16s ease;
}

.floating-field input:focus,
.floating-field textarea:focus {
  border-color: rgba(23, 53, 45, .42);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 0 0 4px rgba(143, 164, 134, .14);
}

.floating-field input:focus + label,
.floating-field input:not(:placeholder-shown) + label,
.floating-field textarea:focus + label,
.floating-field textarea:not(:placeholder-shown) + label {
  color: var(--gold);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateY(-12px);
}

.attending-panel {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(23, 53, 45, .13);
  border-radius: var(--radius);
  background: rgba(143, 164, 134, .12);
}

.guest-count-row {
  display: grid;
  gap: 14px;
  align-items: center;
}

.guest-count-row label {
  color: var(--deep);
  font-weight: 900;
}

.guest-count-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.stepper-control {
  width: 100%;
  max-width: 250px;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, .82);
  overflow: hidden;
}

.stepper-control button,
.stepper-control input {
  height: 52px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.stepper-control button {
  color: var(--deep);
  font-size: 1.35rem;
  font-weight: 900;
}

.stepper-control button:hover:not(:disabled) {
  background: rgba(23, 53, 45, .08);
}

.stepper-control button:disabled {
  cursor: not-allowed;
  color: rgba(23, 35, 31, .25);
}

.stepper-control input {
  border-inline: 1px solid var(--line);
  color: var(--deep);
  font-weight: 900;
}

.guest-list {
  gap: 14px;
}

.guest-card {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .88), rgba(255, 250, 242, .68)),
    radial-gradient(circle at 100% 0, rgba(184, 139, 79, .14), transparent 30%);
}

.guest-card-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.guest-card-head span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--deep);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.guest-card-head h3 {
  margin: 0;
}

.meal-field {
  display: block;
}

.meal-field legend {
  margin-bottom: 8px;
  color: var(--deep);
  font-weight: 900;
}

.meal-options label {
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.meal-options label:has(input:checked) {
  border-color: rgba(23, 53, 45, .38);
  background: rgba(143, 164, 134, .18);
}

.meal-options label:hover {
  transform: translateY(-1px);
}

.form-submit-panel {
  display: grid;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: rgba(23, 53, 45, .06);
}

.form-submit-panel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--deep);
  font-size: 1.05rem;
}

.form-submit-panel p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.form-submit {
  width: 100%;
}

.success-message {
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 0, rgba(244, 209, 148, .24), transparent 30%),
    linear-gradient(145deg, rgba(15, 40, 34, .96), rgba(23, 53, 45, .84));
}

.success-message h2 {
  color: var(--paper);
}

.success-message p:not(.eyebrow) {
  color: rgba(255, 250, 242, .78);
}

@media (min-width: 680px) {
  .guest-count-row {
    grid-template-columns: 1fr auto;
  }

  .form-submit-panel {
    grid-template-columns: 1fr auto;
  }

  .form-submit {
    width: auto;
  }
}

@media (min-width: 920px) {
  .anmeldung-experience {
    grid-template-columns: 360px minmax(0, 1fr);
  }

  .anmeldung-aside {
    position: sticky;
    top: 98px;
    align-self: start;
  }

  .form-step {
    padding: 34px;
  }

  .form-submit-panel {
    padding: 28px 34px 34px;
  }
}

/* Responsive hardening for the Anmeldung page */
.anmeldung-section.anmeldung-experience {
  width: min(1120px, calc(100vw - 24px));
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.anmeldung-experience *,
.anmeldung-experience *::before,
.anmeldung-experience *::after {
  min-width: 0;
}

.anmeldung-aside,
.anmeldung-form,
.success-message {
  width: 100%;
}

.anmeldung-form {
  padding: 0;
}

.form-progress {
  position: static;
  grid-template-columns: 1fr;
  padding: 12px;
}

.form-step,
.form-submit-panel {
  padding-inline: clamp(16px, 5vw, 24px);
}

.step-heading {
  grid-template-columns: 38px minmax(0, 1fr);
}

.step-heading > span {
  width: 38px;
  height: 38px;
}

.attendance-options {
  grid-template-columns: minmax(0, 1fr);
}

.form-grid,
.meal-options,
.guest-card .form-grid {
  grid-template-columns: minmax(0, 1fr);
}

.stepper-control {
  max-width: none;
}

.anmeldung-summary div {
  align-items: flex-start;
}

.anmeldung-summary dd {
  max-width: 58%;
  overflow-wrap: anywhere;
}

@media (min-width: 520px) {
  .form-progress {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stepper-control {
    max-width: 250px;
  }
}

@media (min-width: 760px) {
  .anmeldung-section.anmeldung-experience {
    width: min(1120px, calc(100vw - 56px));
  }

  .attendance-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .guest-card .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 1060px) {
  .anmeldung-section.anmeldung-experience {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  }

  .anmeldung-aside {
    position: sticky;
    top: 98px;
    align-self: start;
  }

  .form-progress {
    position: sticky;
    top: 84px;
  }

  .form-step {
    padding: 34px;
  }

  .form-submit-panel {
    padding: 28px 34px 34px;
  }
}

@media (min-width: 1180px) {
  .guest-card .form-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr);
  }
}

/* Stable form progress */
.form-progress {
  position: static;
  display: flex;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, .92);
  scrollbar-width: none;
}

.form-progress::-webkit-scrollbar {
  display: none;
}

.form-progress span {
  position: relative;
  flex: 1 0 104px;
  min-width: 104px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, .5);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.form-progress span::before {
  content: attr(data-progress-step);
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: rgba(23, 53, 45, .09);
  font-size: .7rem;
}

.form-progress span.is-done {
  color: var(--deep);
  border-color: rgba(23, 53, 45, .2);
  background: rgba(143, 164, 134, .14);
}

.form-progress span.is-done::before {
  content: "✓";
  color: var(--paper);
  background: var(--sage);
}

.form-progress span.is-active {
  color: var(--paper);
  border-color: transparent;
  background: var(--deep);
  box-shadow: 0 12px 30px rgba(23, 35, 31, .16);
}

.form-progress span.is-active::before {
  color: var(--deep);
  background: var(--paper);
}

@media (min-width: 760px) {
  .form-progress {
    padding: 14px 18px;
  }

  .form-progress span {
    flex-basis: 0;
    min-width: 0;
  }
}

@media (min-width: 1060px) {
  .form-progress {
    position: static;
    top: auto;
  }
}

/* Final direction: red-led, cleaner mobile, no red-green gradients */
.wedding-v2 {
  --rose: #b91524;
  --rose-2: #d83a46;
  --deep: #382321;
  --deep-2: #251615;
  --sage: #dce9dc;
  --sage-strong: #b8d2bc;
  --cream: #fff9f6;
  --paper: #ffffff;
  --muted: #6f625f;
  background:
    radial-gradient(circle at 16% 0, rgba(185, 21, 36, .12), transparent 30%),
    linear-gradient(180deg, #fff9f6 0%, #fff 46%, #fff7f5 100%);
}

.wedding-v2 body::before,
.wedding-v2::before {
  opacity: .18;
}

.wedding-v2 img[src*="couple-"] {
  filter: contrast(1.1) saturate(1.06);
}

.wedding-v2 .hero-v2 .hero-media {
  animation: none;
  transform: scale(1.01);
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.12) saturate(1.06) brightness(1.02);
}

.wedding-v2 .site-header {
  border-color: rgba(185, 21, 36, .12);
}

.wedding-v2 .brand-icon {
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, .34), transparent 28%),
    linear-gradient(135deg, var(--rose), #7d1018);
}

.wedding-v2 .brand-icon::after {
  border-color: rgba(185, 21, 36, .42);
}

.wedding-v2 .brand-word span,
.wedding-v2 .eyebrow,
.wedding-v2 .section-kicker,
.wedding-v2 .location-card p,
.wedding-v2 .info-tile h3,
.wedding-v2 .story-card time {
  color: var(--rose);
}

.wedding-v2 .language-switch button.is-active,
.wedding-v2 .site-nav .nav-cta,
.wedding-v2 .form-progress span.is-active {
  background: var(--rose);
}

.wedding-v2 .hero-overlay {
  background:
    linear-gradient(90deg, rgba(37, 22, 21, .9), rgba(37, 22, 21, .5) 48%, rgba(37, 22, 21, .12)),
    linear-gradient(180deg, rgba(37, 22, 21, .05), rgba(37, 22, 21, .74));
}

.wedding-v2 .hero-date {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(185, 21, 36, .2);
}

.hero-rsvp-card {
  width: min(100%, 540px);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}

.hero-rsvp-card img {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  filter: brightness(0) invert(1);
}

.hero-rsvp-card strong,
.hero-rsvp-card span {
  display: block;
}

.hero-rsvp-card strong {
  color: var(--paper);
  font-weight: 900;
}

.hero-rsvp-card span {
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
}

.hero-rsvp-card a {
  grid-column: 1 / -1;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--paper);
  background: var(--rose);
  font-weight: 900;
}

.wedding-v2 .button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--rose), var(--rose-2));
}

.wedding-v2 .button-ghost {
  border-color: rgba(255, 255, 255, .42);
}

.wedding-v2 .photo-strip img,
.wedding-v2 .story-card,
.wedding-v2 .location-card,
.wedding-v2 .info-tile,
.wedding-v2 .anmeldung-form,
.wedding-v2 .aside-card {
  box-shadow: 0 18px 58px rgba(89, 30, 28, .12);
}

.wedding-v2 .story-card::after {
  background: linear-gradient(180deg, transparent 35%, rgba(37, 22, 21, .84));
}

.wedding-v2 .location-icon,
.wedding-v2 .info-tile img,
.wedding-v2 .card-icon {
  background: rgba(185, 21, 36, .1);
  filter: brightness(0) saturate(100%) invert(16%) sepia(82%) saturate(2916%) hue-rotate(339deg) brightness(89%) contrast(95%);
}

.wedding-v2 .cta-v2 {
  background:
    linear-gradient(135deg, rgba(185, 21, 36, .93), rgba(77, 27, 25, .86)),
    url("../img/couple-hero.jpeg") center / cover fixed;
}

.wedding-v2 .anmeldung-hero,
.wedding-v2 .page-hero-new {
  background:
    linear-gradient(110deg, rgba(37, 22, 21, .88), rgba(37, 22, 21, .2)),
    url("../img/couple-hero.jpeg") center / cover fixed;
}

.wedding-v2 .aside-dark,
.wedding-v2 .success-message {
  background:
    radial-gradient(circle at 85% 0, rgba(255, 255, 255, .12), transparent 28%),
    linear-gradient(145deg, rgba(185, 21, 36, .96), rgba(77, 27, 25, .92));
}

.wedding-v2 .anmeldung-form::before {
  background: linear-gradient(var(--rose), var(--rose-2));
}

.wedding-v2 .meal-options label:has(input:checked),
.wedding-v2 .choice-card:has(input:checked),
.wedding-v2 .form-progress span.is-done {
  background: rgba(185, 21, 36, .1);
  border-color: rgba(185, 21, 36, .28);
}

.wedding-v2 .form-progress span.is-done::before {
  background: var(--rose);
}

@media (max-width: 759px) {
  .wedding-v2 .hero-v2 {
    min-height: 88svh;
    align-items: end;
    padding-top: 112px;
  }

  .wedding-v2 .hero-v2 .hero-media {
    object-position: 58% center;
  }

  .wedding-v2 .hero-content {
    padding-bottom: 12px;
  }

  .wedding-v2 h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .wedding-v2 .hero-copy {
    max-width: 31ch;
  }

  .wedding-v2 .countdown {
    width: 100%;
    margin-top: 18px;
  }

  .compact-intro,
  .story-compact,
  .locations-v2,
  .info-v2,
  .gift-simple {
    padding-block: 42px;
  }

  .photo-strip {
    min-height: auto;
  }

  .photo-strip img:nth-child(2) {
    transform: none;
  }

  .story-card {
    min-height: 360px;
  }

  .location-card {
    grid-template-columns: 48px 1fr;
    padding: 16px;
  }

  .info-tile {
    padding: 16px;
  }
}

/* Wedding v2: compact Polish-friendly visual direction */
.wedding-v2 {
  --deep: #244034;
  --deep-2: #162d24;
  --cream: #fffaf7;
  --paper: #ffffff;
  --sand: #f5ebe7;
  --rose: #b71f2a;
  --gold: #bd8b69;
  --sage: #c7dccb;
  --muted: #66756d;
  background:
    linear-gradient(135deg, rgba(183, 31, 42, .08), transparent 26%),
    linear-gradient(315deg, rgba(199, 220, 203, .34), transparent 28%),
    #fffaf7;
}

.wedding-v2 .site-header {
  gap: 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  order: 3;
}

.wedding-v2 .site-nav {
  order: 2;
}

.language-switch {
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(36, 64, 52, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
}

.language-switch button {
  min-width: 74px;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  font-size: .78rem;
}

.language-switch button.is-active {
  color: var(--paper);
  background: var(--rose);
}

.wedding-v2 .hero-v2 {
  min-height: 92svh;
  padding-bottom: 28px;
}

.wedding-v2 .hero-v2 .hero-media {
  object-position: center;
}

.wedding-v2 .hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 45, 36, .88), rgba(22, 45, 36, .24) 62%, rgba(183, 31, 42, .18)),
    linear-gradient(180deg, rgba(22, 45, 36, .08), rgba(22, 45, 36, .82));
}

.wedding-v2 h1,
.wedding-v2 h2 {
  line-height: .94;
}

.wedding-v2 .hero-copy,
.wedding-v2 .page-hero p:not(.eyebrow),
.wedding-v2 .short-copy p {
  max-width: 620px;
  font-size: clamp(1rem, 3vw, 1.25rem);
}

.compact-intro {
  display: grid;
  gap: 22px;
  padding-block: 58px;
}

.short-copy {
  max-width: 720px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  min-height: 320px;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(36, 64, 52, .13);
}

.photo-strip img:nth-child(2) {
  transform: translateY(24px);
}

.story-compact {
  padding-top: 54px;
}

.story-grid {
  display: grid;
  gap: 14px;
}

.story-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 20px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--deep);
  box-shadow: 0 24px 80px rgba(36, 64, 52, .16);
}

.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.story-grid .story-card:nth-child(2) img,
.story-grid .story-card:nth-child(4) img {
  object-position: center top;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(22, 45, 36, .86));
}

.story-card:hover img {
  transform: scale(1.04);
}

.story-card time,
.story-card p {
  position: relative;
  z-index: 1;
}

.story-card time {
  color: #ffd8d8;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.story-card p {
  max-width: 320px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
}

.locations-v2,
.info-v2 {
  padding-block: 58px;
}

.location-cards,
.info-grid-v2 {
  display: grid;
  gap: 14px;
}

.location-card,
.info-tile {
  border: 1px solid rgba(36, 64, 52, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 60px rgba(36, 64, 52, .09);
  backdrop-filter: blur(18px);
}

.location-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
}

.location-icon,
.info-tile img {
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(183, 31, 42, .09);
  filter: brightness(0) saturate(100%) invert(18%) sepia(69%) saturate(2638%) hue-rotate(342deg) brightness(88%) contrast(94%);
}

.location-card p,
.info-tile h3 {
  margin-bottom: 4px;
  color: var(--rose);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.location-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.location-card address {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.info-tile {
  padding: 20px;
}

.info-tile img {
  margin-bottom: 28px;
}

.info-tile p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.cta-v2 {
  background:
    linear-gradient(135deg, rgba(183, 31, 42, .94), rgba(36, 64, 52, .92)),
    url("../img/couple-hero.jpeg") center / cover fixed;
}

.cta-v2 p:not(.eyebrow) {
  max-width: 620px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .82);
}

.page-hero-new,
.wedding-v2 .anmeldung-hero {
  background:
    linear-gradient(110deg, rgba(22, 45, 36, .86), rgba(22, 45, 36, .24)),
    url("../img/couple-hero.jpeg") center / cover fixed;
}

.wedding-v2 .gifts-hero {
  background:
    linear-gradient(110deg, rgba(22, 45, 36, .86), rgba(183, 31, 42, .18)),
    url("../img/couple-story-1.jpeg") center / cover;
}

.wedding-v2 .gallery-hero {
  background:
    linear-gradient(110deg, rgba(22, 45, 36, .86), rgba(183, 31, 42, .18)),
    url("../img/couple-story-3.jpeg") center / cover;
}

.gallery-grid-new .gallery-item img {
  object-position: center;
}

.gift-simple {
  padding-block: 58px;
}

.wedding-v2 .anmeldung-experience {
  padding-top: 46px;
}

.wedding-v2 .aside-dark {
  background: linear-gradient(145deg, rgba(183, 31, 42, .96), rgba(36, 64, 52, .9));
}

.wedding-v2 .button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--rose), #d64a55);
}

.wedding-v2 .button-primary .button-icon {
  filter: brightness(0) invert(1);
}

@media (max-width: 520px) {
  .wedding-v2 .site-header {
    width: calc(100vw - 20px);
  }

  .language-switch button {
    min-width: auto;
    padding: 0 9px;
    font-size: .72rem;
  }

  .photo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .photo-strip img {
    min-height: 220px;
  }

  .photo-strip img:nth-child(3) {
    grid-column: span 2;
    max-height: 260px;
  }
}

@media (min-width: 760px) {
  .compact-intro {
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
  }

  .story-grid,
  .location-cards,
  .info-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1060px) {
  .story-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .story-card:nth-child(2),
  .story-card:nth-child(4) {
    transform: translateY(36px);
  }

  .location-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-grid-v2 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Final override: red first, green only as a quiet accent */
.wedding-v2 {
  --rose: #b91524;
  --rose-2: #d83a46;
  --deep: #382321;
  --deep-2: #251615;
  --sage: #dce9dc;
  --sage-strong: #b8d2bc;
  --cream: #fff9f6;
  --paper: #ffffff;
  --muted: #6f625f;
  background:
    radial-gradient(circle at 16% 0, rgba(185, 21, 36, .12), transparent 30%),
    linear-gradient(180deg, #fff9f6 0%, #fff 46%, #fff7f5 100%);
}

.wedding-v2 img[src*="couple-"] {
  filter: contrast(1.06) saturate(1.05);
}

.wedding-v2 .brand-icon,
.wedding-v2 .language-switch button.is-active,
.wedding-v2 .site-nav .nav-cta,
.wedding-v2 .form-progress span.is-active {
  background: var(--rose);
}

.wedding-v2 .brand-word span,
.wedding-v2 .eyebrow,
.wedding-v2 .section-kicker,
.wedding-v2 .location-card p,
.wedding-v2 .info-tile h3,
.wedding-v2 .story-card time {
  color: var(--rose);
}

.wedding-v2 .hero-overlay {
  background:
    linear-gradient(90deg, rgba(37, 22, 21, .9), rgba(37, 22, 21, .5) 48%, rgba(37, 22, 21, .12)),
    linear-gradient(180deg, rgba(37, 22, 21, .05), rgba(37, 22, 21, .74));
}

.wedding-v2 .button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--rose), var(--rose-2));
}

.wedding-v2 .cta-v2 {
  background:
    linear-gradient(135deg, rgba(185, 21, 36, .93), rgba(77, 27, 25, .86)),
    url("../img/couple-hero.jpeg") center / cover fixed;
}

.wedding-v2 .anmeldung-hero,
.wedding-v2 .page-hero-new {
  background:
    linear-gradient(110deg, rgba(37, 22, 21, .88), rgba(37, 22, 21, .2)),
    url("../img/couple-hero.jpeg") center / cover fixed;
}

.wedding-v2 .aside-dark,
.wedding-v2 .success-message {
  background:
    radial-gradient(circle at 85% 0, rgba(255, 255, 255, .12), transparent 28%),
    linear-gradient(145deg, rgba(185, 21, 36, .96), rgba(77, 27, 25, .92));
}

.wedding-v2 .anmeldung-form::before {
  background: linear-gradient(var(--rose), var(--rose-2));
}

.wedding-v2 .location-icon,
.wedding-v2 .info-tile img,
.wedding-v2 .card-icon {
  background: rgba(185, 21, 36, .1);
  filter: brightness(0) saturate(100%) invert(16%) sepia(82%) saturate(2916%) hue-rotate(339deg) brightness(89%) contrast(95%);
}

.wedding-v2 .meal-options label:has(input:checked),
.wedding-v2 .choice-card:has(input:checked),
.wedding-v2 .form-progress span.is-done {
  background: rgba(185, 21, 36, .1);
  border-color: rgba(185, 21, 36, .28);
}

.wedding-v2 .form-progress span.is-done::before {
  background: var(--rose);
}

@media (max-width: 759px) {
  .wedding-v2 .hero-v2 {
    min-height: 88svh;
    align-items: end;
    padding-top: 112px;
  }

  .wedding-v2 .hero-v2 .hero-media {
    object-position: 58% center;
  }

  .wedding-v2 .hero-content {
    padding-bottom: 12px;
  }

  .wedding-v2 h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .wedding-v2 .hero-copy {
    max-width: 31ch;
  }

  .wedding-v2 .countdown {
    width: 100%;
    margin-top: 18px;
  }

  .compact-intro,
  .story-compact,
  .locations-v2,
  .info-v2,
  .gift-simple {
    padding-block: 42px;
  }

  .photo-strip img:nth-child(2) {
    transform: none;
  }

  .story-card {
    min-height: 360px;
  }
}

/* Polish typography fix: avoid broken-looking display serif diacritics */
html[lang="pl"] .wedding-v2 h1,
html[lang="pl"] .wedding-v2 h2,
html[lang="pl"] .wedding-v2 .step-heading h2,
html[lang="pl"] .wedding-v2 .page-hero h1 {
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.08;
}

html[lang="pl"] .wedding-v2 .hero-content h1 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: .98;
}

.wedding-v2 h1,
.wedding-v2 h2,
.wedding-v2 .step-heading h2 {
  overflow: visible;
}

.story-date {
  position: relative;
  z-index: 1;
  width: fit-content;
  display: inline-flex;
  margin-top: 7px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  background: rgba(0, 0, 0, .22);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

/* Anmeldung hero: keep headline above Nicole on mobile */
.wedding-v2 .anmeldung-hero {
  align-items: start;
  min-height: 58svh;
  padding-top: clamp(150px, 30svh, 230px);
  padding-bottom: 34px;
  background:
    linear-gradient(110deg, rgba(37, 22, 21, .86), rgba(37, 22, 21, .22)),
    url("../img/photo-hero-couple.png") center 42% / cover fixed;
  background-position: center 42%;
}

.wedding-v2 .anmeldung-hero .page-hero-inner {
  max-width: 780px;
}

.wedding-v2 .anmeldung-hero h1 {
  max-width: 7.5ch;
  font-size: clamp(3.6rem, 18vw, 7.2rem);
}

.wedding-v2 .anmeldung-hero p:not(.eyebrow) {
  max-width: 34ch;
}

@media (max-width: 759px) {
  .wedding-v2 .anmeldung-hero {
    min-height: 64svh;
    padding-top: 168px;
    background:
      linear-gradient(110deg, rgba(37, 22, 21, .82), rgba(37, 22, 21, .24)),
      url("../img/couple-story-4-clean.jpeg") center top / cover fixed;
  }

  .wedding-v2 .anmeldung-hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
    line-height: .95;
  }
}

@media (max-width: 759px) {
  .wedding-v2 .hero-v2 .hero-media {
    object-position: center center;
  }
}

@media (min-width: 760px) {
  .wedding-v2 .anmeldung-hero {
    align-items: center;
    min-height: 60svh;
    padding-top: 128px;
  }
}

/* RSVP summary: sit below the form and stay visually quiet */
.wedding-v2 .anmeldung-summary-card {
  color: var(--deep-2);
  border-color: rgba(56, 35, 33, .12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 249, 246, .84)),
    radial-gradient(circle at 100% 0, rgba(185, 21, 36, .055), transparent 34%);
  box-shadow: 0 16px 46px rgba(56, 35, 33, .08);
}

.wedding-v2 .anmeldung-summary-card .eyebrow,
.wedding-v2 .anmeldung-summary-card .eyebrow span {
  color: var(--deep-2);
}

.wedding-v2 .anmeldung-summary-card .inline-icon {
  filter: brightness(0) saturate(100%) invert(10%) sepia(16%) saturate(839%) hue-rotate(321deg) brightness(96%) contrast(91%);
}

.wedding-v2 .anmeldung-summary-card .anmeldung-summary {
  grid-template-columns: 1fr;
}

.wedding-v2 .anmeldung-summary-card .anmeldung-summary div {
  border-bottom-color: rgba(56, 35, 33, .12);
}

.wedding-v2 .anmeldung-summary-card .anmeldung-summary dt {
  color: var(--muted);
}

.wedding-v2 .anmeldung-summary-card .anmeldung-summary dd {
  color: var(--deep-2);
}

@media (min-width: 760px) {
  .wedding-v2 .anmeldung-summary-card .anmeldung-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .wedding-v2 .anmeldung-summary-card .anmeldung-summary div {
    display: grid;
    gap: 6px;
    padding: 0 14px 0 0;
    border-right: 1px solid rgba(56, 35, 33, .12);
    border-bottom: 0;
  }

  .wedding-v2 .anmeldung-summary-card .anmeldung-summary div:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .wedding-v2 .anmeldung-summary-card .anmeldung-summary dd {
    max-width: none;
    text-align: left;
  }
}

@media (min-width: 1060px) {
  .anmeldung-section.anmeldung-experience {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  }

  .wedding-v2 .anmeldung-summary-card,
  .wedding-v2 .success-message {
    grid-column: 2;
  }
}
