@font-face {
  font-family: "JetourEN";
  src: url("NormalidadCompact-Bold.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #0e0c10;
  --ink-soft: #1a1620;

  --cream: #f7f3ee;
  --cream-warm: #faf7f2;
  --cream-deep: #ede8e0;

  --text: #1a1620;
  --muted: rgba(26, 22, 32, 0.58);
  --faint: rgba(26, 22, 32, 0.32);

  /* JETOUR carrot accent */
  --accent: #D06F3C;
  --accent-soft: #E09A67;
  --accent-light: #F1C29C;
  --accent-dark: #A94F25;
  --line: rgba(208, 111, 60, 0.42);
  --line-med: rgba(208, 111, 60, 0.64);

  /* old variable names kept for compatibility */
  --violet: var(--accent-light);
  --violet-dk: var(--accent-soft);
  --violet-mid: var(--accent);
  --violet-dp: var(--accent-dark);
  --gold: var(--accent);

  --white: #fffcf8;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "FiraGO", "Noto Sans Georgian", Arial, sans-serif;
  --tech: "Orbitron", "Noto Sans Georgian", sans-serif;
  --sharp: "Rajdhani", "Noto Sans Georgian", sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);

  --sat: env(safe-area-inset-top, 0px);
  --sab: env(safe-area-inset-bottom, 0px);
}


body:not(.ka) {
  --sans: "JetourEN", "DM Sans", Arial, sans-serif;
}

/* RESET */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.lock {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font-family: inherit;
  border: 0;
  border-radius: 0;
  background: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

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

::selection {
  background: var(--violet);
  color: var(--white);
}

main {
  opacity: 0;
}

section {
  position: relative;
}

.container {
  width: min(1120px, 88vw);
  margin: 0 auto;
}

.narrow {
  width: min(740px, 88vw);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(30px, 5vw, 62px);
}

p {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.82;
}

/* PROGRESS + PARTICLES */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  height: 1.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--violet-mid), var(--violet), var(--gold));
  transition: width .12s linear;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s ease;
}

/* NAV */

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1400;

  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 72px; /* ფიქსირებული სიმაღლე */
  padding: 0 40px; /* ზედა/ქვედა padding მოვხსენით */

  background: rgba(247, 243, 238, 0.82);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease);
}

.nav-logo {
  height: 56px; /* სურვილისამებრ 52px-მდეც შეგიძლია გაზარდო */
  width: auto;
}

.nav-bar.scrolled {
  background: rgba(17, 17, 17, 0.96);
}

.nav-brand {
  display: flex;
  align-items: center;
}



.lang-switch {
  display: flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line-med);
  background: rgba(247, 243, 238, 0.6);
}

.lang {
  width: 33px;
  height: 27px;
  color: var(--muted);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .3s var(--ease);
}

.lang.active,
.lang:hover {
  background: var(--violet-dp);
  color: var(--white);
}

/* MUSIC BUTTON */

.music-btn {
  position: fixed;
  right: 50px;
  top: 90px;
  bottom: auto;
  z-index: 1600;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: .3s var(--ease);
}

.music-btn:hover {
  background: rgba(0, 0, 0, 0.45);
  transform: scale(1.05);
}

/* INTRO */

.intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  overflow: hidden;
  background: #06040a;
}

.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.intro-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 15% 80%, rgba(208, 111, 60, 0.14), transparent 40%),
    linear-gradient(to right, rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.38) 50%, rgba(0, 0, 0, 0.08)),
    linear-gradient(to top, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.04));
}

.intro-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(ellipse at center, transparent 48%, rgba(0, 0, 0, 0.48));
}

.intro-brand {
  position: absolute;
  top: calc(var(--sat) + 26px);
  left: 50%;
  z-index: 6;
  transform: translateX(-50%);
  white-space: nowrap;
}

.intro-brand-text {
  color: rgba(255, 252, 248, 0.72);
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.intro-copy {
  position: absolute;
  left: clamp(24px, 7vw, 96px);
  bottom: clamp(96px, 14vh, 148px);
  z-index: 6;
  width: min(780px, 88vw);
}

.intro-stat {
  display: inline-block;
  font-family: var(--tech);
  font-weight: 700;
  font-size: clamp(46px, 7vw, 82px);
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.intro-unit {
  margin-left: 10px;
  font-family: var(--sharp);
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--violet);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--sharp);
  color: rgba(255, 252, 248, 0.68);
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.intro-stat-mid {
  font-family: var(--tech);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1;
}

.intro-unit-mid {
  font-family: var(--sharp);
  font-size: 0.46em;
  font-weight: 700;
  color: var(--violet);
  vertical-align: super;
  letter-spacing: 0.08em;
}

.intro-accent-line {
  width: 0;
  height: 1px;
  margin: 22px 0 18px;
  background: linear-gradient(90deg, transparent, rgba(208, 111, 60, 0.95), transparent);
  opacity: 0;
}

.intro-line.line-3 {
  color: rgba(255, 252, 248, 0.82);
  font-family: var(--sharp);
  font-size: clamp(11px, 1.2vw, 15px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.7;
}

.intro-line.line-3 span {
  color: var(--violet);
  font-weight: 700;
}
.skip-intro {
  position: absolute;
  right: 24px;
  bottom: 24px;
  top: auto;

  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;

  background: rgba(255, 252, 248, 0.07);
  color: rgba(255, 252, 248, 0.68);

  font-size: 7px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .4s var(--ease);
}

.skip-intro:hover {
  border-color: rgba(208, 111, 60, 0.52);
  color: var(--white);
  background: rgba(208, 111, 60, 0.14);
}

/* HERO */

.hero-after-intro {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 8vw clamp(64px, 11vh, 112px);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("cover.jpg") center / cover no-repeat;
  animation: heroBreath 24s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to top, rgba(14, 12, 16, 0.72), rgba(14, 12, 16, 0.08) 65%, rgba(14, 12, 16, 0.02)),
    linear-gradient(to right, rgba(14, 12, 16, 0.48), transparent 70%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.03;
  pointer-events: none;
}

@keyframes heroBreath {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-content {
position: relative;
  z-index: 2;
  width: min(920px, 86vw);
  max-width: 920px;
  text-align: left;
}

.hero-eyebrow {
  display: none;
}

.hero-headline {
  width: 100%;
  max-width: 920px;
  font-family: var(--tech);
  font-size: clamp(38px, 5.8vw, 78px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: rgba(255, 252, 248, 0.96);
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.56);
  text-align: left;
  margin-top: 12px;
  display: block;
  white-space: normal;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px 52px;
  margin-top: 34px;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-meta-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.hero-meta-val {
  font-family: var(--tech);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.hero-meta-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.25);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 34px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.88);
  transition: .3s var(--ease);
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.cta-arrow {
  display: none;
}

.scroll-hint {
  position: absolute;
  right: 28px;
  bottom: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-hint-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, var(--violet), transparent);
}

/* INVITATION */

.invitation {
  padding: clamp(72px, 12vh, 136px) 0;
  background:
    radial-gradient(ellipse at 78% 12%, rgba(208, 111, 60, 0.10), transparent 40%),
    radial-gradient(ellipse at 16% 88%, rgba(208, 111, 60, 0.07), transparent 36%),
    var(--cream-warm);
}

.invitation-title {
  margin-bottom: 48px;
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.invitation-title span {
  font-weight: 700;
  text-transform: uppercase;
}

.invitation-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.invitation-body p {
  max-width: 590px;
  font-family: var(--sans);
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.85;
  color: rgba(26, 22, 32, 0.70);
}

/* COUNTDOWN */

.countdown-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 12vh, 150px) 0 clamp(92px, 13vh, 160px);
  background:
    radial-gradient(ellipse at 50% -12%, rgba(208, 111, 60, 0.12), transparent 44%),
    linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 58%, var(--cream-deep) 100%);
  isolation: isolate;
}

.countdown-wrap {
  position: relative;
  text-align: center;
}

.countdown-title {
  width: min(720px, 90vw);
  margin: 0 auto clamp(38px, 5vw, 64px);
  color: var(--text);
  font-size: clamp(34px, 5.4vw, 74px);
  font-weight: 700;
}

.countdown-grid {
  width: min(880px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
}

.countdown-item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: clamp(126px, 14vw, 178px);
  padding: clamp(26px, 4vw, 46px) 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.countdown-number {
  font-family: var(--tech);
  font-weight: 600;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;

  background: linear-gradient(
    180deg,
    #111111 0%,
    #2b1a10 55%,
    var(--accent-soft) 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.countdown-label {
  display: block;
  margin-top: 18px;
  font-family: var(--sharp);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}


.countdown-note {
  font-size: 15px;
  font-weight: 900;
  color: #2a2522; }

.countdown-subtitle { 
  font-size: 15px;
  font-weight: 900;
  color: #2a2522;
}

.countdown-confirm {
  display: block;
  width: fit-content;
  margin: 8px auto 0;

  padding-bottom: 4px;
  border-bottom: 1px solid rgba(208, 111, 60, 0.64);
}
/* DESIGN IMAGE */

.chapter {
  min-height: 90svh;
  display: flex;
  align-items: flex-end;
  padding: 0 7vw clamp(56px, 9vh, 96px);
  overflow: hidden;
  isolation: isolate;
}

.chapter-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.chapter-presence .chapter-bg {
  background: url("3.JPG") center / cover no-repeat;
}


/* PROGRAM */

.event-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(76px, 9vh, 110px) 0;
  overflow: hidden;
  isolation: isolate;
}

.event-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(to top, rgba(247, 243, 238, 0.97), rgba(247, 243, 238, 0.34)),
    url("8.png") center / cover no-repeat;
}

.event-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 12% 48%, rgba(208, 111, 60, 0.10), transparent 38%),
    linear-gradient(to right, rgba(247, 243, 238, 0.92), rgba(247, 243, 238, 0.58) 62%, transparent),
    linear-gradient(to top, rgba(247, 243, 238, 0.88), transparent 66%);
}

.event-content h2 {
  max-width: 760px;
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.program-layout {
  display: block;
  margin-top: clamp(40px, 5vw, 58px);
}
.program-section {
  position: relative;
  border-bottom: 1px solid rgba(208, 111, 60, 0.48);
}

.timeline-list {
  position: relative;
  width: 100%;
  padding-left: 42px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 20px;
  width: 1px;
  background: var(--accent);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
  padding-bottom: 24px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  display: none;
}

.timeline-time {
  font-family: var(--tech);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1;
  color: rgba(26, 22, 32, 0.92);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.timeline-info {
  position: relative;
  padding-left: clamp(20px, 2.5vw, 30px);
}

.timeline-info::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 1px;
  height: calc(100% + 8px);
  background: rgba(26, 22, 32, 0.14);
}

.timeline-info p {
  margin: 0;
  color: rgba(26, 22, 32, 0.92);
  font-family: var(--sans);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 700;
  line-height: 1.55;
}

.timeline-info span {
  display: block;
  margin-top: 8px;
}

.timeline-info span a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  padding: 4px 0 4px;
  color: #1a1620;
  font-family: var(--sharp);
  font-size: clamp(12px, .9vw, 14px);
  font-weight: 700;
  letter-spacing: 0.10em;
  line-height: 1.45;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid var(--accent-soft);
  transition: color .25s ease, border-color .25s ease, transform .25s ease;
}

.timeline-info span a::before,
.timeline-info span a::after {
  display: none;
}

.timeline-info span a:hover {
  color: var(--accent-soft);
  border-bottom-color: var(--accent-soft);
  transform: translateY(-2px);
}

.route-note {
  margin-top: 56px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.route-note p {
  margin-bottom: 20px;
  color: #1a1620;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
}

.route-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-note li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  color: rgba(26, 22, 32, 0.88);
  line-height: 1.8;
}

.route-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-light);
}
/* ROUTE / EVENT CONCEPT */

.sunset-message {
  flex: 0 0 auto;
  width: 100%;
  max-width: 780px;
  margin: 34px auto 18px;
  padding: 0 32px;
  text-align: center;
  white-space: normal;
  color: rgba(26, 22, 32, 0.72);
  font-family: var(--sans);
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.7;
}

.route-experience {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 0;
  background: var(--cream);
}

.split-visual {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding-top: 0;
}


.intelligence-photo {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
.split-copy {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 5vw, 76px) clamp(44px, 5vw, 72px);
}

.split-copy h2 {
  margin-bottom: 26px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
}

.dress-note {
  max-width: 560px;
  margin: 22px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(208, 111, 60, 0.42);

}

.dress-note span {
  display: block;
  max-width: 520px;
  color: rgba(26, 22, 32, 0.82);
  font-family: var(--sans);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 500;
  line-height: 1.85;
}

.dress-photo {
  width: 100%;
  max-width: none;
  margin-top: 30px;
  margin-bottom: 34px;
}

.dress-photo img {
  display: block;
  width: 100%;
  height: clamp(360px, 34vw, 470px);
  max-height: none;
  object-fit: cover;
  object-position: center 62%;
  border-radius: 0;
  box-shadow: none;
}

.recommendation {
  max-width: 560px;
  padding-top: 24px;
  border-top: 1px solid rgba(208, 111, 60, 0.42);
}

.recommendation strong {
  display: block;
  margin-bottom: 18px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.recommendation ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.recommendation li {
  position: relative;
  padding-left: 22px;
  color: rgba(26, 22, 32, 0.76);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
}

.recommendation li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet-dk);
}

.recommendation a {
  color: #1a1620;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-soft);
  padding-bottom: 2px;
  transition: color .25s ease, border-color .25s ease;
  cursor: pointer;
}

.recommendation a:hover {
  color: var(--accent-soft);
  border-bottom-color: var(--accent-soft);
}

/* RSVP */

.rsvp {
  padding: clamp(80px, 13vh, 140px) 0;
  background:
    radial-gradient(ellipse at 82% 10%, rgba(208, 111, 60, 0.10), transparent 40%),
    radial-gradient(ellipse at 12% 90%, rgba(208, 111, 60, 0.07), transparent 36%),
    var(--cream-warm);
}

.rsvp h2 {
  margin-bottom: 24px;
  color: var(--text);
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
}

.rsvp-subtext {
  max-width: 480px;
  margin-bottom: 0;
}

.rsvp-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.rsvp-accept,
.rsvp-decline,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .35s var(--ease);
}

.rsvp-accept,
.submit-btn {
  background: var(--violet-dp);
  color: var(--white);
  border: 1px solid rgba(208, 111, 60, 0.18);
  box-shadow: 0 10px 36px rgba(208, 111, 60, 0.20);
}

.rsvp-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line-med);
}

.rsvp-accept:hover,
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(208, 111, 60, 0.25);
}

.rsvp-decline:hover {
  border-color: rgba(208, 111, 60, 0.30);
  color: var(--violet-mid);
}
.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}


.hidden-form {
  display: none;
  margin-top: 48px;
}

.hidden-form.active {
  display: block;
  animation: formDrop .45s var(--ease) forwards;
}

@keyframes formDrop {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-field {
  position: relative;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line-med);
  transition: .3s var(--ease);
}

.form-field:focus-within {
  border-bottom-color: var(--violet-mid);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 22px 0 10px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  background: transparent;
  line-height: 1.5;
  resize: none;
}

.form-field label {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--faint);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  transition: .25s var(--ease);
}

.form-field input:not(:placeholder-shown) ~ label,
.form-field input:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label {
  top: 0;
  font-size: 8px;
  color: var(--violet-dk);
  letter-spacing: 0.12em;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: transparent;
}

.form-field select {
  width: 100%;
  min-height: 54px;
  padding: 18px 0 10px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  background: transparent;
  cursor: pointer;
}

.form-field select option {
  color: var(--text);
  background: var(--cream-warm);
}

.form-field:has(select) {
  padding-top: 18px;
}

.form-field:has(select) label {
  position: static;
  display: block;
  margin-bottom: 8px;
  color: var(--violet-dk);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field:has(select)::after {
  content: "⌄";
  position: absolute;
  right: 0;
  bottom: 18px;
  color: var(--muted);
  font-size: 18px;
  pointer-events: none;
}

.submit-btn {
  width: 100%;
  margin-top: 32px;
}

.success {
  display: none;
  max-width: 480px;
  margin: 34px auto 0;
  padding: 26px 24px;
  text-align: center;
  background: rgba(255, 252, 248, 0.72);
  border: 1px solid rgba(26, 22, 32, 0.08);
  border-radius: 16px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.success.active {
  display: block;
}

.success:hover {
  transform: translateY(-2px);
  background: rgba(255, 252, 248, 0.92);
  border-color: rgba(208, 111, 60, 0.34);
}

.success p {
  max-width: 360px;
  margin: 0 auto;
  color: rgba(26, 22, 32, 0.68);
  font-size: 13.5px;
  line-height: 1.75;
  font-weight: 400;
}
/* FOOTER */

.site-footer {
  padding: 40px 20px calc(40px + var(--sab));
  text-align: center;
  background: var(--cream);
  border-top: 1px solid rgba(26, 22, 32, .08);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-link {
  color: var(--violet-dk);
  transition: .3s ease;
}

.footer-link:hover {
  color: var(--violet-mid);
}

/* TABLET */

@media (max-width: 980px) {
  .program-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .route-note {
    max-width: 720px;
    margin-left: 42px;
  }

  .route-experience {
    grid-template-columns: 1fr;
  }

  .split-visual {
    height: auto;
    min-height: 0;
  }

  .intelligence-photo {
    height: 56svh;
  }

  .split-copy {
    min-height: auto;
    padding: 56px 22px 82px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .container,
  .narrow {
    width: 90vw;
  }

  .nav-bar {
    padding: calc(var(--sat) + 12px) 16px 12px;
  }

  .nav-logo {
    
  height: 56px;

  }

  .music-btn {
  width: 44px;
  height: 44px;
  right: 26px;

  top: 72px;
  bottom: auto;

  font-size: 18px;
}

  .hero {
    min-height: 100svh;
    padding: calc(86px + var(--sat)) 20px calc(38px + var(--sab));
    align-items: flex-end;
  }

  .hero-bg {
    background-image: url("covermobile.jpg");
    background-size: cover;
    background-position: center;
    transform: none;
    animation: none;
  }

  .hero-content {
    width: 100%;
    max-width: 360px;
    margin-bottom: 0;
    text-align: left;
  }

  .hero-headline {
      width: 100%;
  max-width: 100%;
  margin-top: 12px;
  display: block;
  text-align: left;
  font-size: clamp(28px, 8vw, 36px);
  line-height: 1.03;
  white-space: normal;

  }

  .hero-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-meta-divider,
  .scroll-hint {
    display: none;
  }

  .hero-meta-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: baseline;
    column-gap: 14px;
  }

  .hero-meta-label {
    text-align: left;
  }

  .hero-meta-val {
    font-size: 13px;
  }

  .cta-btn {
    width: fit-content;
    margin-top: 28px;
  }

  .invitation,
  .rsvp {
    padding: 72px 0 84px;
  }

  .invitation-title {
        font-size: clamp(22px, 6vw, 30px);
  }

  .invitation-body p {
    font-size: 16px;
    line-height: 1.8;
  }

  .countdown-section {
    padding: 72px 0 78px;
  }

  .countdown-title {
    width: min(340px, 90vw);
    margin-bottom: 32px;
    font-size: clamp(29px, 8.2vw, 38px);
    line-height: 1.03;
  }

  .countdown-grid {
    width: 100%;
  }

  .countdown-item {
    min-height: 92px;
    padding: 22px 5px 18px;
  }

  .countdown-number {
    font-size: clamp(28px, 8.4vw, 42px);
    letter-spacing: -0.06em;
  }

  .countdown-label {
    margin-top: 10px;
    font-size: 6px;
    letter-spacing: 0.12em;
  }

 .countdown-note {
  width: 100%;
  max-width: 100%;
  margin-top: 28px;
  font-size: 10px;
  line-height: 1.45;
}

.countdown-subtitle {
  display: block;
  width: 100%;
  font-size: 10px;
  line-height: 1.45;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

  .chapter {
    min-height: 75svh;
    padding: 0 20px clamp(48px, 9vh, 72px);
  }

  .chapter-presence .chapter-bg {
    background: url("3mobile.JPG") center / cover no-repeat;
  }

  .event-section {
    min-height: auto;
    padding: 78px 0 86px;
  }

  .event-bg {
    background:
      linear-gradient(to top, rgba(247, 243, 238, 0.98), rgba(247, 243, 238, 0.62)),
      url("8-mobile.png") center / cover no-repeat;
  }

  .event-shade {
    background:
      radial-gradient(ellipse at 50% 10%, rgba(208, 111, 60, 0.10), transparent 40%),
      linear-gradient(to bottom, rgba(247, 243, 238, 0.90), rgba(247, 243, 238, 0.96));
  }

  .event-content h2 {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.15;
  }

  .program-layout {
    display: block;
    margin-top: 40px;
  }

  .timeline-list {
    width: 100%;
    padding-left: 30px;
  }

  .timeline-list::before {
    left: 6px;
    top: 8px;
    bottom: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 30px;
  }

  .timeline-time {
    font-size: clamp(18px, 6vw, 24px);
  }

  .timeline-info {
    padding-left: 0;
  }

  .timeline-info::before {
    display: none;
  }

  .timeline-info p {
    max-width: 310px;
    font-size: 14.5px;
    line-height: 1.65;
  }

  .timeline-info span a {
    font-size: 12px;
    letter-spacing: .08em;
    line-height: 1.5;
  }

  .route-note {
    max-width: none;
    margin: 42px 0 0;
    padding: 24px 20px 26px;
  }

  .route-note p {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .route-note li {
    font-size: 14px;
    line-height: 1.7;
  }

  .route-experience {
    min-height: auto;
    display: block;
  }

.split-visual {
  height: auto;
  min-height: 0;
  padding-top: 72px;

  display: flex;
  flex-direction: column;
  align-items: center;
}
  .sunset-message {
    width: 100%;
    max-width: 330px;
    margin: 0 auto 24px;
    padding: 0 18px;
    text-align: center;
    white-space: normal;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 500;
    letter-spacing: -0.01em;
  }

  .intelligence-photo {
    content: url("view.jpg");
    width: 100%;
    height: 55svh;
    object-fit: cover;
    object-position: center;
  }

  .split-copy {
    min-height: auto;
    padding: 46px 22px 82px;
  }

  .split-copy h2 {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.15;
  }

  .dress-note {
    margin-top: 20px;
    padding-top: 22px;
  }

  .dress-note span {
    font-size: 15px;
    line-height: 1.8;
  }

 .dress-photo {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 28px;
  margin-bottom: 32px;
  overflow: hidden;
}

.dress-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 0;
}
  .recommendation strong {
    font-size: 18px;
  }

  .recommendation li {
    font-size: 14px;
    line-height: 1.75;
  }

  .rsvp h2 {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.15;
  }

  .success {
    margin-top: 28px;
    padding: 22px 18px;
    border-radius: 14px;
  }

  .success p {
    max-width: 300px;
    font-size: 13px;
    line-height: 1.7;
  }

  .rsvp-choice {
    flex-direction: column;
  }

  .rsvp-accept,
  .rsvp-decline,
  .submit-btn {
    width: 100%;
    min-height: 52px;
    font-size: 11px;
  }
}

/* SMALL MOBILE */

@media (max-width: 430px) {
  .hero {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: calc(36px + var(--sab));
  }

  .hero-headline {
    font-size: clamp(29px, 9.4vw, 36px);
  }

  .hero-meta {
    gap: 12px 16px;
  }

  .hero-meta-label {
    font-size: 7.5px;
  }

  .hero-meta-val {
    font-size: 12px;
  }

  .countdown-item {
    min-height: 84px;
    padding: 20px 4px 16px;
  }

  .countdown-number {
    font-size: clamp(25px, 7.8vw, 34px);
  }

  .countdown-label {
    font-size: 5.5px;
    letter-spacing: 0.09em;
  }

  

  .event-content h2,
  .rsvp h2 {
    font-size: clamp(25px, 8vw, 34px);
  }
}

/* EXTRA SMALL */

@media (max-width: 360px) {
  .hero-headline {
    font-size: 28px;
  }

  .countdown-number {
    font-size: 24px;
  }

  .countdown-label {
    font-size: 5px;
    letter-spacing: 0.06em;
  }

  .event-content h2,
  .rsvp h2 {
    font-size: 24px;
  }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none !important; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .hero-bg,
  .scroll-hint-line {
    animation: none;
  }
}
@media (min-width: 981px) {
  .route-experience {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    min-height: 100vh;
  }

 

  .intelligence-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .split-copy {
  
    padding: 42px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  .split-copy h2 {
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.15;
    margin-bottom: 22px;
  }

  .dress-note {
    margin-top: 18px;
    padding-top: 18px;
  }

  .dress-note span {
    font-size: 17px;
    line-height: 1.7;
  }

  .dress-photo {
    max-width: 100%;
    margin-top: 22px;
    margin-bottom: 24px;
  }

  .dress-photo img {
    width: 100%;
    height: 330px;
    max-height: none;
    object-fit: cover;
    object-position: center 64%;
    border-radius: 0;
    box-shadow: none;
  }

  .recommendation {
    padding-top: 20px;
  }

  .recommendation strong {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .recommendation ul {
    gap: 10px;
  }

  .recommendation li {
    font-size: 14px;
    line-height: 1.65;
  }
}
