:root {
  --teal: #0a5961;
  --teal-deep: #043c43;
  --teal-ink: #022f35;
  --teal-soft: #7fb2b1;
  --aqua: #dceceb;
  --aqua-2: #edf6f5;
  --gold: #c79e64;
  --gold-soft: #ead8bb;
  --ink: #26262b;
  --muted: #6a7175;
  --paper: #fbfcfa;
  --white: #ffffff;
  --radius-lg: 42px;
  --radius-md: 28px;
  --shadow: 0 28px 90px rgba(5, 55, 62, .14);
  --bg-image: url('../assets/wedding-background.png');
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  min-height: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 13% 15%, rgba(10, 89, 97, .10), transparent 22rem),
    radial-gradient(circle at 92% 10%, rgba(127, 178, 177, .23), transparent 24rem),
    radial-gradient(circle at 84% 72%, rgba(199, 158, 100, .11), transparent 25rem),
    linear-gradient(135deg, #ffffff 0%, #eef5f4 56%, #faf7ef 100%);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: auto;
}
body::before,
body::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
}
body::before {
  width: min(560px, 44vw);
  height: min(560px, 44vw);
  left: -220px;
  top: 48vh;
  border: 1px solid rgba(199,158,100,.42);
  animation: orbit 26s linear infinite;
}
body::after {
  width: min(440px, 36vw);
  height: min(440px, 36vw);
  right: -165px;
  top: 8vh;
  border: 1px solid rgba(199,158,100,.34);
  animation: orbit 31s linear infinite reverse;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }

.preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(127,178,177,.22), transparent 14rem),
    linear-gradient(135deg, #f9fbfb 0%, #eef6f5 58%, #fbf8f1 100%);
  transform: translateZ(0);
  transition: opacity .72s ease, visibility .72s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
body.is-loading {
  overflow: hidden;
}
body.is-loading .page-shell {
  opacity: 0;
  visibility: hidden;
}
.preloader__monogram {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: .8;
  color: var(--teal-deep);
  letter-spacing: -.10em;
  animation: revealScale 1.05s cubic-bezier(.2,.8,.2,1) both;
}
.preloader__monogram span { color: var(--teal-soft); font-size: .62em; }

.page-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
.page-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.80)),
    var(--bg-image) center top / cover no-repeat;
  opacity: .58;
}

.topbar {
  position: fixed;
  top: calc(18px + env(safe-area-inset-top));
  left: 50%;
  z-index: 30;
  width: min(1120px, calc(100vw - 32px));
  min-height: 64px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.82);
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 44px rgba(5,55,62,.10);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.brand {
  width: 44px;
  height: 44px;
  min-width: 44px;
  flex: 0 0 44px;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #08717a);
  color: #fff;
  font-family: var(--serif);
  box-shadow: 0 10px 22px rgba(10,89,97,.23);
}
.brand__yu,
.brand__amp,
.brand__ya {
  position: absolute;
  display: block;
  line-height: 1;
  letter-spacing: 0;
  user-select: none;
  pointer-events: none;
}
.brand__yu { top: 7px; left: 9px; font-size: 1.05rem; font-weight: 600; }
.brand__amp { top: 16px; left: 18px; font-size: .86rem; color: var(--gold-soft); font-weight: 500; }
.brand__ya { right: 9px; bottom: 7px; font-size: 1.05rem; font-weight: 600; }
.nav { display: flex; align-items: center; gap: clamp(12px, 3vw, 32px); padding-right: 10px; }
.nav a {
  position: relative;
  padding: 8px 0;
  color: var(--teal-deep);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .28s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.hero {
  position: relative;
  width: min(1280px, calc(100vw - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 112px 0 44px;
  display: grid;
  align-items: center;
}
.hero__frame {
  position: relative;
  min-height: min(760px, calc(100svh - 156px));
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(330px, .74fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.78);
  background:
    linear-gradient(117deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 44%, rgba(255,255,255,.78) 100%),
    var(--bg-image) center center / cover no-repeat;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero__frame::before,
.hero__frame::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}
.hero__frame::before {
  width: 680px;
  height: 680px;
  left: -250px;
  bottom: -340px;
  border: 1px solid rgba(199,158,100,.42);
  animation: slowRotate 34s linear infinite;
}
.hero__frame::after {
  width: 560px;
  height: 560px;
  right: 20%;
  top: -350px;
  border: 1px solid rgba(199,158,100,.30);
  animation: slowRotate 44s linear infinite reverse;
}
.hero__copy {
  position: relative;
  z-index: 2;
  padding: clamp(58px, 7vw, 94px) clamp(24px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow,
.chapter {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 710px;
  display: grid;
  font-family: var(--serif);
  font-size: clamp(6.3rem, 11vw, 10.8rem);
  font-weight: 500;
  line-height: .68;
  letter-spacing: -.075em;
  color: var(--teal-deep);
  text-shadow: 0 18px 36px rgba(5,55,62,.08);
}
.hero h1 i {
  padding-left: .54em;
  color: var(--teal-soft);
  font-style: normal;
  font-size: .44em;
  line-height: .48;
  letter-spacing: -.04em;
}
.hero__lead {
  width: min(620px, 100%);
  margin: 34px 0 0;
  color: #454b4f;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.82;
  letter-spacing: .018em;
}
.hero__facts {
  width: min(760px, 100%);
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(220px, 1.05fr) minmax(145px, .72fr) minmax(220px, 1fr);
  gap: 12px;
}
.hero__facts div {
  min-width: 0;
  padding: 18px 16px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(10,89,97,.10);
  box-shadow: 0 14px 34px rgba(5,55,62,.06);
}
.hero__facts small {
  display: block;
  margin-bottom: 7px;
  color: var(--teal);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.hero__facts strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.72rem, 2.55vw, 2.45rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.hero__facts div:nth-child(3) strong {
  white-space: normal;
}
.hero__actions,
.location__buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #08717a);
  box-shadow: 0 16px 34px rgba(10,89,97,.22);
}
.button--ghost {
  color: var(--teal-deep);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(10,89,97,.18);
}
.button--wide { width: 100%; }

.hero__poster {
  position: relative;
  z-index: 2;
  min-height: 100%;
  overflow: hidden;
  border-radius: 38px 0 0 38px;
  isolation: isolate;
}
.hero__poster::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.02) 34%, rgba(8,69,76,.10) 100%),
    radial-gradient(circle at 45% 14%, rgba(5,55,62,.18), transparent 7rem);
  mix-blend-mode: normal;
}
.hero__poster::after {
  content: '';
  position: absolute;
  z-index: 3;
  width: 380px;
  height: 380px;
  right: -130px;
  bottom: -118px;
  border-radius: 50%;
  border: 1px solid rgba(199,158,100,.55);
  animation: slowRotate 32s linear infinite;
}
.hero__poster-surface {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.08)),
    var(--bg-image) 62% center / cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.01);
}
.scroll-hint {
  position: absolute;
  right: 34px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  font-size: .70rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.scroll-hint::after {
  content: '';
  width: 56px;
  height: 1px;
  background: var(--teal);
  animation: hint 1.8s ease-in-out infinite;
}

.section {
  position: relative;
  width: 100%;
  padding: clamp(74px, 9vw, 124px) 20px;
}
.section__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}
.narrow {
  width: min(780px, 100%);
  text-align: center;
}
.section h2,
.modal h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.045em;
  color: var(--teal-deep);
}
.section p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.82;
}
.intro .section__inner {
  position: relative;
  padding: clamp(36px, 7vw, 72px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.80);
  background: rgba(255,255,255,.62);
  box-shadow: 0 24px 70px rgba(5,55,62,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.intro .section__inner::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -120px;
  border-radius: 50%;
  border: 1px solid rgba(199,158,100,.34);
}
.section-heading {
  margin-bottom: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.section-heading h2 { max-width: 700px; }

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.detail-card,
.map-card,
.survey-form {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.78);
  background: rgba(255,255,255,.70);
  box-shadow: 0 22px 60px rgba(5,55,62,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.detail-card {
  position: relative;
  overflow: hidden;
  min-height: 225px;
  padding: 30px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.detail-card:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(5,55,62,.11); }
.detail-card::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  right: -72px;
  top: -76px;
  border-radius: 50%;
  border: 1px solid rgba(199,158,100,.36);
}
.detail-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #08717a);
  font-size: .72rem;
  letter-spacing: .12em;
  box-shadow: inset 0 0 0 1px rgba(234,216,187,.55), 0 12px 24px rgba(10,89,97,.18);
}
.detail-card p {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.detail-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4vw, 3.45rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.04em;
}
.countdown {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.countdown div {
  min-height: 142px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 26px;
  border: 1px solid rgba(10,89,97,.10);
  background: linear-gradient(135deg, rgba(10,89,97,.075), rgba(255,255,255,.62));
  text-align: center;
}
.countdown strong {
  display: block;
  color: var(--teal-deep);
  font-family: var(--serif);
  font-size: clamp(2.55rem, 5.2vw, 4.25rem);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.countdown span {
  display: block;
  color: var(--muted);
  font-size: .70rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.location { overflow: hidden; }
.location::before {
  content: '';
  position: absolute;
  right: -18vw;
  top: 8%;
  width: 52vw;
  height: 76%;
  background:
    linear-gradient(180deg, rgba(10,89,97,.10), rgba(220,236,235,.48));
  border-left: 1px solid rgba(10,89,97,.12);
  transform: skewX(-8deg);
  opacity: .8;
}
.location__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(300px, .72fr);
  gap: 40px;
  align-items: center;
}
.address {
  margin: 22px 0 !important;
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.75rem) !important;
  line-height: .96 !important;
  letter-spacing: -.035em;
}
.location__panel {
  min-height: 380px;
  display: grid;
  place-items: center;
}
.map-card {
  position: relative;
  width: min(430px, 100%);
  padding: 46px;
  overflow: hidden;
  text-align: center;
}
.map-card::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(199,158,100,.34);
  border-radius: 24px;
  pointer-events: none;
}
.map-pin {
  position: relative;
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  display: inline-block;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--teal), #08717a);
  transform: rotate(-45deg);
  box-shadow: 0 18px 35px rgba(10,89,97,.22);
}
.map-pin::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  left: 27px;
  top: 27px;
  border-radius: 50%;
  background: #fff;
}
.map-card p {
  margin: 0;
  color: var(--teal);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.map-card h3 {
  margin: 14px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.map-card small { color: var(--muted); line-height: 1.6; }

.survey__inner {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .98fr);
  gap: 42px;
  align-items: start;
}
.survey__copy { position: sticky; top: 118px; }
.survey-form { padding: clamp(22px, 4vw, 42px); }
.field { display: grid; gap: 10px; margin-bottom: 22px; }
.field span,
.field legend {
  color: var(--teal-deep);
  font-size: .80rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.field input[type="text"],
textarea {
  width: 100%;
  border: 1px solid rgba(10,89,97,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  padding: 17px 18px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input[type="text"]:focus,
textarea:focus {
  border-color: var(--teal-soft);
  box-shadow: 0 0 0 4px rgba(127,178,177,.18);
}
.fieldset { border: 0; padding: 0; }
.fieldset legend { margin-bottom: 12px; }
.radio-card,
.drink-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 14px 16px;
  border: 1px solid rgba(10,89,97,.13);
  background: rgba(255,255,255,.56);
  border-radius: 18px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.radio-card + .radio-card { margin-top: 10px; }
.radio-card:hover,
.drink-grid label:hover { transform: translateY(-1px); border-color: rgba(10,89,97,.34); }
.radio-card input,
.drink-grid input { width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--teal); }
.radio-card span,
.drink-grid span { color: var(--ink); font-size: .96rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.drink-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .86rem !important; text-align: center; }

.footer {
  padding: 50px 20px 64px;
  text-align: center;
  color: var(--teal-deep);
}
.footer p { margin: 0; font-family: var(--serif); font-size: 3rem; letter-spacing: -.05em; }
.footer span { color: var(--muted); font-size: .75rem; letter-spacing: .22em; }

.modal {
  width: min(560px, calc(100% - 28px));
  border: 0;
  padding: 0;
  border-radius: 28px;
  background: transparent;
  color: var(--ink);
}
.modal::backdrop { background: rgba(4,26,30,.55); backdrop-filter: blur(5px); }
.modal__content { position: relative; padding: 34px; border-radius: 28px; background: #fbfcfa; box-shadow: var(--shadow); }
.modal__content h2 { font-size: clamp(2.6rem, 8vw, 4rem); }
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(10,89,97,.10);
  color: var(--teal-deep);
  font-size: 1.7rem;
}
.modal__content--thanks { text-align: center; }
.modal__content--thanks .chapter { margin-bottom: 12px; }
.modal__content--thanks #modalText { margin: 18px 0 0; color: var(--muted); line-height: 1.7; }

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
.topbar[data-animate] { opacity: 0; transform: translateX(-50%) translateY(-12px); }
.topbar[data-animate].is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
body.page-ready .hero__copy > *,
body.page-ready .hero__poster,
body.page-ready .scroll-hint {
  animation: heroReveal .9s cubic-bezier(.2,.8,.2,1) both;
}
body.page-ready .hero__copy > *:nth-child(1) { animation-delay: .10s; }
body.page-ready .hero__copy > *:nth-child(2) { animation-delay: .22s; }
body.page-ready .hero__copy > *:nth-child(3) { animation-delay: .34s; }
body.page-ready .hero__copy > *:nth-child(4) { animation-delay: .46s; }
body.page-ready .hero__copy > *:nth-child(5) { animation-delay: .58s; }
body.page-ready .hero__poster { animation-delay: .46s; }
body.page-ready .scroll-hint { animation-delay: .80s; }

@keyframes revealScale {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hint {
  0%,100% { opacity: .55; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(10px); }
}
@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .hero {
    width: min(860px, calc(100vw - 28px));
    padding-top: 104px;
  }
  .hero__frame {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .hero__copy { padding: clamp(36px, 7vw, 64px); }
  .hero h1 { font-size: clamp(5.2rem, 18vw, 9.5rem); }
  .hero__poster {
    min-height: 430px;
    border-radius: 0 0 38px 38px;
  }
  .hero__poster-surface { min-height: 430px; background-position: center center; }
  .scroll-hint { display: none; }
}

@media (max-width: 900px) and (min-width: 781px) {
  .hero__facts {
    width: 100%;
    grid-template-columns: minmax(210px, 1fr) minmax(130px, .7fr) minmax(200px, 1fr);
  }
  .hero__facts div {
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero__facts strong {
    font-size: clamp(1.55rem, 3.1vw, 2.15rem);
  }
}

@media (max-width: 780px) {
  .topbar {
    top: calc(10px + env(safe-area-inset-top));
    width: calc(100vw - 16px);
    min-height: 56px;
    padding: 8px 10px;
    gap: 8px;
  }
  .brand { width: 40px; height: 40px; min-width: 40px; flex-basis: 40px; }
  .brand__yu { top: 6px; left: 8px; font-size: 1rem; }
  .brand__amp { top: 15px; left: 16px; font-size: .78rem; }
  .brand__ya { right: 8px; bottom: 6px; font-size: 1rem; }
  .nav { gap: 9px; padding-right: 2px; }
  .nav a { font-size: .61rem; letter-spacing: .08em; padding: 8px 0; }

  .hero {
    width: calc(100vw - 16px);
    min-height: auto;
    padding: 84px 0 30px;
  }
  .hero__frame {
    border-radius: 30px;
    display: flex;
    flex-direction: column;
  }
  .hero__copy {
    order: 2;
    padding: 30px 18px 28px;
  }
  .hero__poster {
    order: 1;
    min-height: 330px;
    border-radius: 30px 30px 0 0;
  }
  .hero__poster::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.44) 72%, rgba(255,255,255,.82) 100%),
      radial-gradient(circle at 58% 12%, rgba(5,55,62,.18), transparent 7rem);
  }
  .hero__poster-surface {
    min-height: 330px;
    height: 330px;
    background-position: center top;
    transform: scale(1.03);
  }
  .eyebrow, .chapter { font-size: .70rem; letter-spacing: .28em; }
  .hero h1 { font-size: clamp(4.2rem, 24vw, 7.1rem); }
  .hero__lead { margin-top: 24px; font-size: .98rem; line-height: 1.72; }
  .hero__facts { margin-top: 26px; grid-template-columns: 1fr; gap: 10px; }
  .hero__facts div { padding: 14px 16px 16px; border-radius: 18px; }
  .hero__facts strong { font-size: 2rem; }
  .hero__actions, .location__buttons { gap: 10px; }
  .button { width: 100%; min-height: 50px; padding: 0 16px; font-size: .73rem; }

  .section { padding: 70px 16px; }
  .section h2 { font-size: clamp(2.65rem, 12vw, 3.4rem); }
  .intro .section__inner { padding: 30px 22px; border-radius: 28px; }
  .section-heading { display: block; }
  .details-grid { grid-template-columns: 1fr; }
  .detail-card { min-height: auto; padding: 28px; }
  .countdown { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .countdown div { min-height: 118px; padding: 16px 8px; gap: 10px; }
  .countdown strong { font-size: 2.35rem; }
  .countdown span { font-size: .64rem; letter-spacing: .18em; }
  .location__inner, .survey__inner { grid-template-columns: 1fr; gap: 28px; }
  .location::before { display: none; }
  .location__panel { min-height: auto; }
  .map-card { padding: 34px 24px; }
  .map-card h3 { font-size: 1.85rem; }
  .survey__copy { position: static; }
  .drink-grid { grid-template-columns: 1fr; }
  .survey-form { border-radius: 24px; }
  .modal__content { padding: 28px 20px; }
}

@media (max-width: 380px) {
  .nav a { font-size: .56rem; letter-spacing: .06em; }
  .hero__poster { min-height: 300px; }
  .hero__poster-surface { height: 300px; min-height: 300px; }
  .hero h1 { font-size: 4rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  [data-animate] { opacity: 1; transform: none; }
  .topbar[data-animate] { opacity: 1; transform: translateX(-50%) !important; }
}
