:root {
  color-scheme: light;
  --frosted: #f5cec7;
  --sunset: #ffca8c;
  --rose: #eba5a5;
  --sprout: #c7c19d;
  --peach: #fabb92;
  --meadow: #a4bda8;
  --paper: #fdf6ee;
  --gilt: #d8b27d;
  --gilt-deep: #b48b5b;
  --ink: #3b2f2a;
  --cream: var(--frosted);
  --beige: var(--sunset);
  --terracotta: var(--rose);
  --sage: var(--meadow);
  --deep: var(--ink);
  --muted: #6e5d52;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(59, 47, 42, 0.14);
  --radius: 30px;
  --font-body: "Garamond", "Palatino Linotype", "Book Antiqua", "Georgia", serif;
  --font-script: "Segoe Script", "Lucida Handwriting", "Brush Script MT",
    "Segoe Print", "Palatino Linotype", "Georgia", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--deep);
  min-height: 100vh;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  stroke: var(--deep);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--soft {
  stroke: var(--muted);
}

.icon--button {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(164, 189, 168, 0.25),
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(235, 165, 165, 0.22),
      transparent 48%
    ),
    radial-gradient(
      circle at 20% 90%,
      rgba(255, 202, 140, 0.2),
      transparent 50%
    ),
    linear-gradient(180deg, #fff8ef 0%, #f6eadb 100%);
}


.lottie-hero {
  position: absolute;
  width: min(220px, 46vw);
  height: min(220px, 46vw);
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: multiply;
}

.lottie-hero--primary {
  right: 12vw;
  top: 8%;
}

.lottie-section-wrap {
  display: grid;
  place-items: center;
  margin: 6px 0 14px;
}

.lottie-section {
  width: 120px;
  height: 120px;
  opacity: 0.45;
  pointer-events: none;
  mix-blend-mode: multiply;
}


.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.35;
}

.orb--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(235, 165, 165, 0.6) 0%, transparent 70%);
  top: -120px;
  right: -80px;
}

.orb--2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(164, 189, 168, 0.65) 0%, transparent 70%);
  bottom: -140px;
  left: -120px;
}

.orb--3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 202, 140, 0.55) 0%, transparent 70%);
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.2'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero {
  position: relative;
  padding: 104px 8vw 84px;
  overflow: hidden;
}

.hero__content {
  max-width: 720px;
  text-align: center;
}

.hero__eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 12px;
}

.hero__title {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.7);
}

.hero__date {
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gilt-deep);
  margin: 0 0 16px;
}

.hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 auto 32px;
  max-width: 520px;
}

.hero__card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 2px solid rgba(216, 178, 125, 0.6);
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.hero__label {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(216, 178, 125, 0.5);
  background: rgba(255, 255, 255, 0.7);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(60px, 1fr));
  gap: 16px;
}

.countdown__block {
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(216, 178, 125, 0.5);
  padding: 10px 6px;
  background: rgba(255, 255, 255, 0.85);
}

.countdown__value {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--deep);
}

.countdown__label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__frame {
  position: absolute;
  right: 6vw;
  top: 50%;
  --float: 0px;
  transform: translateY(-55%) translateY(var(--float));
  width: min(300px, 60vw);
  height: min(420px, 70vw);
  border-radius: 200px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(216, 178, 125, 0.7), rgba(180, 139, 91, 0.9));
  box-shadow: 0 24px 40px rgba(59, 47, 42, 0.2);
  display: none;
  z-index: 1;
  will-change: transform;
}

.hero__frame-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 6px solid rgba(255, 255, 255, 0.6);
  background-image: url("images/20250920_161158.jpg");
  background-size: cover;
  background-position: center;
}

.hero__frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.hero__frame--alt {
  right: 28vw;
  top: 16%;
  width: min(220px, 48vw);
  height: min(300px, 52vw);
  --float: 0px;
  transform: rotate(-2deg) translateY(var(--float));
  z-index: 0;
}

.hero__frame-inner--alt {
  background-image: url("images/20250804_210403.jpg");
}

main {
  padding: 0 8vw 90px;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  margin: 72px 0;
  padding: 40px 38px;
  border-radius: var(--radius);
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    linear-gradient(135deg, rgba(216, 178, 125, 0.95), rgba(180, 139, 91, 0.9))
      border-box;
  border: 8px solid transparent;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: calc(var(--radius) - 12px);
  border: 1px solid rgba(216, 178, 125, 0.65);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 0;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 32px 32px, rgba(164, 189, 168, 0.35) 0 22px, transparent 24px),
    radial-gradient(circle at calc(100% - 32px) 32px, rgba(235, 165, 165, 0.35) 0 22px, transparent 24px),
    radial-gradient(circle at 32px calc(100% - 32px), rgba(255, 202, 140, 0.35) 0 22px, transparent 24px),
    radial-gradient(circle at calc(100% - 32px) calc(100% - 32px), rgba(164, 189, 168, 0.32) 0 22px, transparent 24px),
    linear-gradient(90deg, rgba(216, 178, 125, 0.12) 0%, transparent 20%, transparent 80%, rgba(216, 178, 125, 0.12) 100%);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
  background-size: 200% 200%;
  background-position: 0% 0%;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section.is-visible::after {
  animation: section-wash 8s ease-in-out infinite;
}

.section__header {
  margin-bottom: 20px;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.section__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(245, 236, 221, 0.9));
  border: 1px solid rgba(216, 178, 125, 0.7);
  box-shadow: 0 10px 24px rgba(59, 47, 42, 0.12);
}

.section__icon .icon {
  stroke: var(--gilt-deep);
}

.section__eyebrow {
  margin: 0 0 6px;
  color: var(--muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.75rem;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(216, 178, 125, 0.6);
  background: rgba(255, 255, 255, 0.6);
}

.section__title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.section__title::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, rgba(216, 178, 125, 0.2), rgba(216, 178, 125, 0.9), rgba(216, 178, 125, 0.2));
  transition: width 0.8s ease;
}

.section.is-visible .section__title::after {
  width: 120px;
}

.section__text {
  margin: 0 0 18px;
  line-height: 1.8;
  color: var(--muted);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 28px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(216, 178, 125, 0.8), rgba(164, 189, 168, 0.6));
  opacity: 0.6;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s ease;
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
  padding-left: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline__item::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid rgba(216, 178, 125, 0.9);
  margin-top: 6px;
  box-shadow: 0 0 0 6px rgba(216, 178, 125, 0.18);
  grid-column: 1;
  grid-row: 1 / span 2;
  justify-self: center;
  align-self: start;
}

.timeline__time {
  font-size: 0.9rem;
  color: var(--muted);
  min-width: 120px;
  font-style: italic;
  grid-column: 2;
  grid-row: 1;
}

.timeline__title {
  margin: 0 0 6px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-script);
  font-weight: 400;
}

.timeline__content {
  grid-column: 2;
  grid-row: 2;
}

.timeline__title .icon {
  flex-shrink: 0;
}

.section--timeline.is-visible .timeline::before {
  transform: scaleY(1);
}

.section--timeline.is-visible .timeline__item {
  opacity: 1;
  transform: translateY(0);
}

.section--timeline.is-visible .timeline__item:nth-child(1) {
  transition-delay: 0.1s;
}

.section--timeline.is-visible .timeline__item:nth-child(2) {
  transition-delay: 0.22s;
}

.section--timeline.is-visible .timeline__item:nth-child(3) {
  transition-delay: 0.34s;
}

.timeline__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cards {
  display: grid;
  gap: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 24px;
  border: 2px solid rgba(216, 178, 125, 0.6);
  box-shadow: 0 18px 36px rgba(59, 47, 42, 0.12);
}

.card__title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-script);
  font-weight: 400;
}

.card__text {
  margin: 0 0 8px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(120deg, rgba(216, 178, 125, 0.9), rgba(255, 202, 140, 0.85));
  color: var(--deep);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-script);
  font-weight: 400;
  border: 1px solid rgba(180, 139, 91, 0.6);
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% 0 auto -60%;
  height: 180%;
  width: 40%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(180, 139, 91, 0.25);
}

.button:hover::after,
.button:focus-visible::after {
  animation: button-shimmer 1s ease;
}

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

.card,
.gallery__item,
.domain__media,
.map-card,
.gift__iban,
.hero__card,
.practical__group {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:hover,
.card:focus-within,
.gallery__item:hover,
.gallery__item:focus-within,
.domain__media:hover,
.domain__media:focus-within,
.map-card:hover,
.map-card:focus-within,
.gift__iban:hover,
.gift__iban:focus-within,
.hero__card:hover,
.hero__card:focus-within,
.practical__group:hover,
.practical__group:focus-within {
  transform: translateY(-4px);
  border-color: rgba(216, 178, 125, 0.9);
  box-shadow: 0 20px 40px rgba(59, 47, 42, 0.18);
}

.domain {
  display: grid;
  gap: 24px;
}

.domain__media {
  border-radius: 26px;
  overflow: hidden;
  border: 2px solid rgba(216, 178, 125, 0.6);
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(59, 47, 42, 0.12);
}

.domain__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
}

.practical {
  display: grid;
  gap: 28px;
}

.practical__column {
  display: grid;
  gap: 24px;
}

.practical__group {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(216, 178, 125, 0.55);
  background: rgba(255, 255, 255, 0.9);
}

.practical__heading {
  margin: 0;
  font-size: 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1.3;
}

.practical__item {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(216, 178, 125, 0.35);
}

.practical__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.practical__label {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  line-height: 1.4;
}

.practical__address {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

.practical__address a,
.info-list a {
  color: var(--gilt-deep);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.practical__address a:hover,
.practical__address a:focus-visible,
.info-list a:hover,
.info-list a:focus-visible {
  text-decoration: underline;
}

.practical__note {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.practical__contact,
.practical__contact a {
  overflow-wrap: anywhere;
}

.practical__contact a {
  color: var(--gilt-deep);
  text-decoration: none;
}

.practical__contact a:hover,
.practical__contact a:focus-visible {
  text-decoration: underline;
}

.map-card {
  border-radius: 26px;
  border: 2px solid rgba(216, 178, 125, 0.6);
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(59, 47, 42, 0.12);
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
}

.map-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

[data-lightbox-image] {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(22, 16, 14, 0.65);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
}

.lightbox__content {
  position: relative;
  max-width: min(900px, 92vw);
  max-height: 90vh;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid rgba(216, 178, 125, 0.65);
  box-shadow: 0 20px 60px rgba(22, 16, 14, 0.3);
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.lightbox__image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 18px;
  border: 1px solid rgba(216, 178, 125, 0.4);
}

.lightbox__close {
  justify-self: end;
  border: 1px solid rgba(216, 178, 125, 0.6);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  font-family: var(--font-script);
  color: var(--deep);
}

.lightbox__caption {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

.lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox.is-active .lightbox__content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.info-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.info-list__text {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}

.practical__heading .icon,
.practical__label .icon,
.info-list .icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.gift {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.gift__iban {
  display: grid;
  gap: 6px;
  padding: 16px 22px;
  border-radius: 18px;
  border: 1px solid rgba(216, 178, 125, 0.6);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(59, 47, 42, 0.12);
  font-family: var(--font-script);
}

.gift__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.gift__value {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--deep);
}

.gift__note {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

.contact {
  display: grid;
  gap: 24px;
  align-items: center;
}

.contact__media {
  border-radius: 26px;
  border: 2px dashed rgba(216, 178, 125, 0.6);
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.9);
}

.contact__content {
  display: grid;
  gap: 12px;
}

.contact__details {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(216, 178, 125, 0.6);
  background: rgba(255, 255, 255, 0.92);
}

.contact__name {
  margin: 0;
  font-family: var(--font-script);
  font-size: 1.15rem;
}

.contact__item {
  margin: 0;
  color: var(--muted);
}

.contact__item a {
  color: var(--gilt-deep);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact__item a:hover,
.contact__item a:focus-visible {
  text-decoration: underline;
}

.poll-form {
  display: grid;
  gap: 18px;
}

.form__grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(216, 178, 125, 0.6);
  background: rgba(255, 255, 255, 0.92);
  font-family: inherit;
  font-size: 1rem;
  color: var(--deep);
  box-shadow: inset 0 1px 4px rgba(63, 58, 54, 0.06);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.input:focus {
  outline: none;
  border-color: var(--gilt-deep);
  box-shadow: 0 0 0 3px rgba(216, 178, 125, 0.25);
}

.input--area {
  resize: vertical;
}

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

.radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(216, 178, 125, 0.5);
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep);
  cursor: pointer;
}

.radio input {
  accent-color: var(--meadow);
}

.field--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form__status.is-success {
  color: var(--meadow);
}

.form__status.is-error {
  color: var(--terracotta);
}

.parking {
  display: grid;
  gap: 24px;
}

.parking__media {
  border-radius: 24px;
  border: 2px dashed rgba(180, 139, 91, 0.6);
  min-height: 220px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(164, 189, 168, 0.18));
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

.gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery__item {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 2px solid rgba(216, 178, 125, 0.6);
  padding: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(59, 47, 42, 0.12);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
}

.footer {
  text-align: center;
  padding: 32px 16px 48px;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid rgba(216, 178, 125, 0.45);
  background: rgba(255, 255, 255, 0.5);
}

.footer__note {
  margin: 8px 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-script);
}

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

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

[data-animate="rise"] {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 1.2s ease forwards;
  animation-delay: 0.4s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes section-wash {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@keyframes button-shimmer {
  0% {
    opacity: 0;
    transform: translateX(-120%) skewX(-20deg);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(260%) skewX(-20deg);
  }
}

@media (min-width: 900px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: center;
  }

  .hero__content {
    text-align: left;
  }

  .hero__subtitle {
    margin-left: 0;
  }

  .hero__card {
    margin: 0;
  }

  .hero__frame,
  .hero__frame--alt {
    display: block;
  }

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

  .parking {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .domain {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .practical {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .contact {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

@media (max-width: 899px) {
  .hero {
    padding-bottom: 64px;
  }

  .hero__frame,
  .hero__frame--alt {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    display: block;
    margin: 28px auto 0;
  }

  .hero__frame {
    width: min(260px, 70vw);
    height: min(360px, 90vw);
  }

  .hero__frame--alt {
    width: min(230px, 62vw);
    height: min(310px, 80vw);
    transform: rotate(-1deg);
  }

  .lottie-hero--primary {
    right: 6vw;
    top: 2%;
    width: min(180px, 55vw);
    height: min(180px, 55vw);
    opacity: 0.35;
  }

  .lottie-section {
    width: 90px;
    height: 90px;
    opacity: 0.35;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 28px 22px;
    border-width: 6px;
  }

  .section::before {
    inset: 12px;
  }

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

  .timeline__item {
    grid-template-columns: 26px 1fr;
    gap: 12px;
  }

  .timeline__time {
    min-width: auto;
  }

  .lottie-hero--primary {
    right: 4vw;
    top: 0;
    width: min(150px, 60vw);
    height: min(150px, 60vw);
    opacity: 0.3;
  }

  .lottie-section {
    width: 72px;
    height: 72px;
  }
}
