:root {
  --navy-950: #07111f;
  --navy-900: #0a1628;
  --navy-800: #122040;
  --navy-700: #1b2f50;
  --gold-600: #ad7c24;
  --gold-500: #c4973a;
  --gold-300: #e5c06a;
  --gold-100: #f5e6c8;
  --cream-100: #faf8f4;
  --cream-200: #f7f4ee;
  --cream-300: #ede8dc;
  --white: #ffffff;
  --ink: #131926;
  --body: #3e4a5f;
  --muted: #6f7d91;
  --line: rgba(10, 22, 40, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --vermillion: #8f352f;
  --moss: #4f6759;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 80px;
  --max: 1280px;
  --radius-sm: 3px;
  --radius-md: 6px;
  --shadow-1: 0 2px 8px rgba(7, 17, 31, 0.08), 0 1px 2px rgba(7, 17, 31, 0.06);
  --shadow-2: 0 16px 42px rgba(7, 17, 31, 0.12), 0 3px 8px rgba(7, 17, 31, 0.08);
  --shadow-3: 0 28px 90px rgba(7, 17, 31, 0.3), 0 8px 20px rgba(7, 17, 31, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  overflow-anchor: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-200);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open,
body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
  cursor: pointer;
}

button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 6rem;
}

h2 {
  font-size: 3.5rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 1.35rem;
}

svg {
  width: 1em;
  height: 1em;
  stroke-width: 1.8;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: 40px;
}

.measure {
  max-width: 650px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--navy-900);
  background: var(--gold-300);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.icon-button:hover {
  color: var(--gold-600);
  border-color: var(--gold-500);
}

.icon-button:active {
  transform: translateY(1px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 34px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 17, 31, 0.22);
  backdrop-filter: blur(10px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 22, 40, 0.96);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
}

.brand-marks {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand img.brand-crest {
  width: 38px;
  height: 52px;
}

.brand img.brand-region {
  width: 44px;
  height: 44px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.brand-copy span {
  margin-top: 3px;
  color: #afbdd0;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-host {
  max-width: 620px;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.site-nav button,
.footer-links button {
  border: 0;
  background: transparent;
}

.site-nav button {
  position: relative;
  padding: 13px 10px;
  color: #d5deea;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav button::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 7px;
  left: 10px;
  height: 1px;
  background: var(--gold-300);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav button:hover,
.site-nav button.is-active {
  color: var(--gold-300);
}

.site-nav button:hover::after,
.site-nav button.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-register,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-register {
  color: var(--navy-950);
  background: var(--gold-500);
}

.header-register:hover,
.button-primary:hover {
  background: var(--gold-300);
  box-shadow: 0 8px 24px rgba(196, 151, 58, 0.2);
  transform: translateY(-2px);
}

.header-register svg,
.button svg,
.text-command svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.header-register:hover svg,
.button:hover svg {
  transform: translate(2px, -1px);
}

.button:active,
.header-register:active {
  transform: translateY(1px);
}

.button-primary {
  color: var(--navy-950);
  background: var(--gold-500);
}

.button-secondary {
  color: var(--navy-900);
  border-color: rgba(10, 22, 40, 0.26);
  background: transparent;
}

.button-secondary:hover {
  color: var(--vermillion);
  border-color: var(--vermillion);
}

.button-on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(7, 17, 31, 0.22);
  backdrop-filter: blur(8px);
}

.button-on-dark:hover {
  color: var(--gold-300);
  border-color: var(--gold-300);
  background: rgba(7, 17, 31, 0.44);
}

.menu-toggle {
  display: none;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero {
  position: relative;
  height: 82svh;
  min-height: 650px;
  max-height: 860px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy-950);
  isolation: isolate;
  overflow: hidden;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  background-image: url("images/agra-taj-night-hero.webp");
  background-position: center center;
  background-size: cover;
  transform: scale(1.02);
  animation: hero-image-in 1400ms var(--ease) both;
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 10, 20, 0.88) 0%, rgba(4, 10, 20, 0.64) 39%, rgba(4, 10, 20, 0.12) 70%),
    linear-gradient(180deg, rgba(4, 10, 20, 0.48) 0%, rgba(4, 10, 20, 0.03) 52%, rgba(4, 10, 20, 0.56) 100%);
}

.hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 120px 40px 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: end;
  gap: 72px;
}

.hero-copy {
  max-width: 720px;
  animation: hero-copy-in 900ms 180ms var(--ease) both;
}

.hero .eyebrow {
  color: var(--gold-300);
}

.hero-subtitle {
  margin-top: 6px;
  color: #e7edf5;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.hero-intro {
  max-width: 600px;
  margin-top: 22px;
  color: #cbd6e4;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #aebdd0;
  font-size: 0.78rem;
}

.hero-note svg {
  color: var(--gold-300);
}

.hero-date {
  align-self: end;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  padding: 22px 0 8px 22px;
  border-left: 1px solid rgba(229, 192, 106, 0.68);
  color: #dce4ee;
  font-size: 0.82rem;
  line-height: 1.3;
  animation: hero-copy-in 900ms 360ms var(--ease) both;
}

.hero-date-day {
  grid-row: 1 / span 2;
  color: var(--white);
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 0.9;
}

.hero-date strong {
  grid-column: 2;
  color: var(--gold-300);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-cue {
  position: absolute;
  right: 36px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  color: #d9e1ea;
  border: 0;
  background: transparent;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.hero-cue svg {
  animation: cue-bounce 1800ms ease-in-out infinite;
}

.fact-band {
  color: var(--white);
  background: var(--navy-900);
  border-top: 1px solid rgba(229, 192, 106, 0.18);
}

.fact-band-inner {
  width: min(100%, var(--max));
  min-height: 106px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  gap: 2px 12px;
  min-width: 0;
  padding: 22px 26px;
  border-right: 1px solid var(--line-light);
}

.fact-item:first-child {
  border-left: 1px solid var(--line-light);
}

.fact-item svg {
  grid-row: 1 / span 2;
  align-self: center;
  width: 22px;
  height: 22px;
  color: var(--gold-300);
}

.fact-item > img {
  grid-row: 1 / span 2;
  align-self: center;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.fact-item span {
  color: #92a4bb;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fact-item strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.13rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fact-item-regional-host {
  grid-template-columns: 50px 1fr;
}

.fact-item-regional-host strong {
  line-height: 1.18;
  white-space: normal;
}

.meeting-desk {
  padding: 90px 0 110px;
  background: var(--cream-200);
}

.desk-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 52px;
}

.desk-heading h2 {
  max-width: 780px;
}

.desk-heading-support > p,
.view-intro > p,
.compact-heading > p {
  color: var(--body);
  line-height: 1.75;
}

.desk-heading-support {
  display: grid;
  gap: 22px;
  align-self: end;
}

.desk-heading-support img {
  display: block;
  width: min(100%, 420px);
  height: auto;
}

.tab-rail-wrap {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  background: rgba(247, 244, 238, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tab-scroll-control {
  width: 38px;
  height: 38px;
  color: var(--muted);
}

.tab-scroll-control:disabled {
  opacity: 0.28;
  cursor: default;
}

.tab-rail {
  display: grid;
  grid-template-columns: repeat(8, minmax(130px, 1fr));
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.tab-rail::-webkit-scrollbar {
  display: none;
}

.tab-rail button {
  position: relative;
  min-width: 0;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 16px;
  color: var(--muted);
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.tab-rail button:last-child {
  border-right: 0;
}

.tab-label-short {
  display: none;
}

.tab-rail button::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform 220ms var(--ease);
}

.tab-rail button:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
}

.tab-rail button.is-active {
  color: var(--navy-900);
  background: var(--white);
}

.tab-rail button.is-active::after {
  transform: scaleX(1);
}

.desk-content {
  min-height: 720px;
}

.view-panel {
  padding-top: 64px;
}

.view-panel.is-active {
  animation: panel-in 420ms var(--ease) both;
}

.view-intro,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 52px;
}

.view-intro {
  margin-bottom: 44px;
}

.view-intro .button {
  justify-self: end;
}

.view-intro > p {
  max-width: 430px;
}

.panel-section {
  margin-top: 74px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.compact-heading {
  margin-bottom: 34px;
}

.compact-heading > p {
  max-width: 430px;
}

.inline-dialog-link {
  display: inline;
  padding: 0;
  color: var(--vermillion);
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font: inherit;
  font-weight: 700;
  line-height: inherit;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.inline-dialog-link:hover {
  color: var(--navy-900);
}

.inline-dialog-link:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 4px;
}

.overview-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: start;
}

.overview-lead h3 {
  max-width: 540px;
}

.overview-lead .measure > p {
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.82;
}

.notice {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  box-shadow: var(--shadow-1);
}

.notice svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--gold-600);
}

.notice p {
  color: var(--body);
  font-size: 0.88rem;
}

.notice-important {
  margin-top: 24px;
  background: #fffaf6;
}

.notice-important svg {
  color: var(--vermillion);
}

.message-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.message-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow-1);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.message-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.message-author {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 15px;
}

.message-author img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  background: var(--cream-300);
  box-shadow: inset 0 0 0 1px rgba(10, 22, 40, 0.1);
}

.message-author img.is-crest,
.dialog-author img.is-crest {
  padding: 5px;
  object-fit: contain;
  object-position: center;
  background: var(--white);
}

.message-author strong,
.message-author span {
  display: block;
}

.message-author strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.1;
}

.message-author span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.message-card h4 {
  margin-top: 24px;
}

.message-card > p {
  margin-top: 12px;
  color: var(--body);
  font-size: 0.9rem;
  line-height: 1.68;
}

.message-card button {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 20px 0 0;
  color: var(--navy-900);
  border: 0;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
}

.message-card button:hover {
  color: var(--vermillion);
}

.message-card button svg {
  transition: transform 180ms ease;
}

.message-card button:hover svg {
  transform: translateX(3px);
}

.action-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 40px;
  color: var(--white);
  background: var(--navy-900);
}

.action-band h3 {
  max-width: 680px;
  font-size: 2rem;
}

.action-band-buttons {
  display: flex;
  gap: 10px;
}

.action-band .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.action-band .button-secondary:hover {
  color: var(--gold-300);
  border-color: var(--gold-300);
}

.segmented {
  width: fit-content;
  max-width: 100%;
  display: flex;
  padding: 4px;
  overflow-x: auto;
  background: var(--cream-300);
  border-radius: var(--radius-md);
  scrollbar-width: none;
}

.segmented::-webkit-scrollbar {
  display: none;
}

.segmented button {
  min-height: 40px;
  padding: 9px 16px;
  color: var(--body);
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.segmented button:hover {
  color: var(--ink);
}

.segmented button.is-active {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: var(--shadow-1);
}

.schedule-view {
  margin-top: 34px;
}

.schedule-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.schedule-header h4 {
  font-size: 1.55rem;
}

.venue-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: right;
}

.venue-map-link small {
  color: var(--vermillion);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.venue-map-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.venue-map-link:hover {
  color: var(--navy-800);
}

.venue-map-link:hover small {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.schedule-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-item {
  display: grid;
  grid-template-columns: 170px 28px minmax(0, 1fr);
  gap: 20px;
  min-height: 94px;
}

.schedule-time {
  padding-top: 4px;
  color: var(--vermillion);
  font-size: 0.78rem;
  font-weight: 700;
}

.schedule-marker {
  position: relative;
  display: flex;
  justify-content: center;
}

.schedule-marker::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: -12px;
  width: 1px;
  background: var(--line);
}

.schedule-marker::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  background: var(--cream-200);
}

.schedule-item:last-child .schedule-marker::before {
  display: none;
}

.programme-map {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.programme-map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.programme-map-heading h4 {
  font-size: 1.35rem;
}

.programme-map .resource-link {
  margin-top: 0;
  white-space: nowrap;
}

.programme-map iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: 0;
  background: var(--cream-300);
}

.schedule-copy {
  padding-bottom: 26px;
}

.schedule-copy h4 {
  font-size: 1.35rem;
}

.schedule-copy p {
  max-width: 690px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.86rem;
}

.registration-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.registration-step {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
}

.registration-step-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--gold-600);
  background: var(--gold-100);
  border-radius: var(--radius-sm);
}

.registration-step-icon svg {
  width: 21px;
  height: 21px;
}

.registration-step span {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.registration-step h4 {
  margin-top: 5px;
}

.registration-step p {
  margin-top: 10px;
  color: var(--body);
  font-size: 0.86rem;
}

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

.fee-card {
  position: relative;
  min-height: 140px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.fee-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-1);
  transform: translateY(-3px);
}

.fee-card.is-featured {
  color: var(--white);
  background: var(--navy-800);
  border-color: var(--navy-800);
}

.fee-card.is-featured::before {
  content: "Popular";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 7px;
  color: var(--navy-900);
  background: var(--gold-300);
  border-radius: var(--radius-sm);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.fee-card span {
  max-width: 130px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.fee-card.is-featured span {
  color: #aebdd0;
}

.fee-card strong {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 1.8rem;
}

.registration-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.registration-opening-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.registration-opening-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  min-height: 100%;
  padding: 36px;
  color: var(--white);
  background: var(--navy-900);
}

.registration-opening-card > svg {
  width: 30px;
  height: 30px;
  color: var(--gold-300);
}

.registration-opening-card span {
  display: block;
  color: #aebdd0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.registration-opening-card strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
}

.registration-opening-card p {
  max-width: 48ch;
  margin-top: 16px;
  color: #c8d1dd;
  line-height: 1.6;
}

.festival-registration-form {
  padding: 36px;
  background: var(--white);
  scroll-margin-top: calc(var(--header-h) + 100px);
}

.form-section-heading {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.form-section-heading > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--navy-900);
  background: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 700;
}

.form-section-heading h4 {
  font-size: 1.3rem;
}

.form-section-heading p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.registration-choice-heading {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.registration-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.registration-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.registration-field > span {
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
}

.registration-field input,
.registration-field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.8rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.registration-field select {
  appearance: auto;
}

.registration-field input::placeholder {
  color: #9298a1;
}

.registration-field input:focus,
.registration-field select:focus {
  background: var(--white);
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(201, 156, 53, 0.16);
  outline: none;
}

.registration-choice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: end;
  margin-top: 24px;
}

.spouse-choice {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 50px;
  padding: 10px 0;
  cursor: pointer;
}

.spouse-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.spouse-choice-box {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: transparent;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.spouse-choice-box svg {
  width: 15px;
  height: 15px;
}

.spouse-choice input:checked + .spouse-choice-box {
  color: var(--navy-900);
  background: var(--gold-300);
  border-color: var(--gold-500);
  transform: scale(1.04);
}

.spouse-choice input:focus-visible + .spouse-choice-box {
  box-shadow: 0 0 0 3px rgba(201, 156, 53, 0.2);
}

.spouse-choice strong,
.spouse-choice small {
  display: block;
}

.spouse-choice strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.spouse-choice small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.45;
}

.spouse-name-field {
  width: min(520px, 100%);
  margin-top: 18px;
}

.spouse-name-field[hidden] {
  display: none;
}

.registration-form-footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.registration-total span,
.registration-total strong {
  display: block;
}

.registration-total span {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
}

.registration-total strong {
  margin-top: 3px;
  color: var(--navy-800);
  font-family: var(--serif);
  font-size: 1.65rem;
}

.registration-bank-panel {
  grid-column: 1 / -1;
  padding: 38px;
  color: var(--white);
  background: var(--navy-900);
  scroll-margin-top: calc(var(--header-h) + 100px);
}

.registration-bank-panel[hidden] {
  display: none;
}

.registration-bank-panel > header {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.bank-success-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy-900);
  background: var(--gold-300);
}

.bank-success-icon svg {
  width: 22px;
  height: 22px;
}

.registration-bank-panel .eyebrow {
  color: var(--gold-300);
}

.registration-bank-panel h3 {
  color: var(--white);
  font-size: 2rem;
}

.registration-bank-panel header p:last-child {
  max-width: 70ch;
  margin-top: 8px;
  color: #b9c4d3;
  font-size: 0.76rem;
  line-height: 1.55;
}

.bank-detail-list {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.bank-detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.bank-detail-row p span,
.bank-detail-row p strong {
  display: block;
}

.bank-detail-row p span {
  color: #93a3b8;
  font-size: 0.61rem;
  font-weight: 700;
  text-transform: uppercase;
}

.bank-detail-row p strong {
  margin-top: 4px;
  color: var(--white);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.copy-bank-detail {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  color: var(--gold-300);
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
}

.copy-bank-detail:hover,
.copy-bank-detail:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  outline: none;
}

.copy-bank-detail svg {
  width: 15px;
  height: 15px;
}

.bank-panel-note {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  margin-top: 24px;
  color: #b9c4d3;
}

.bank-panel-note svg {
  width: 17px;
  height: 17px;
  color: var(--gold-300);
}

.bank-panel-note p {
  font-size: 0.7rem;
  line-height: 1.55;
}

.registration-bank-panel > .button {
  margin-top: 26px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.souvenir-heading-copy {
  max-width: 48ch;
}

.souvenir-heading-copy > p {
  color: var(--body);
  line-height: 1.65;
}

.souvenir-heading-copy .inline-dialog-link {
  margin-top: 12px;
}

.souvenir-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 50px;
  align-items: start;
}

.souvenir-rates {
  border-top: 1px solid var(--line);
}

.souvenir-rate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 68px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background-color 180ms ease;
}

.souvenir-rate:hover {
  padding-inline: 12px;
  background: var(--cream-200);
}

.souvenir-rate > span,
.souvenir-rate > span strong,
.souvenir-rate > span small {
  display: block;
}

.souvenir-rate > span strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.souvenir-rate > span small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.67rem;
}

.souvenir-rate > b {
  color: var(--navy-800);
  font-family: var(--serif);
  font-size: 1.24rem;
  white-space: nowrap;
}

.souvenir-rate.is-premium > span strong::after {
  content: "Premium placement";
  display: inline-block;
  margin-left: 10px;
  color: var(--vermillion);
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 700;
  text-transform: uppercase;
  vertical-align: 2px;
}

.souvenir-brief {
  padding: 28px;
  color: var(--white);
  background: var(--navy-900);
}

.souvenir-deadline {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.souvenir-deadline > svg {
  width: 22px;
  height: 22px;
  color: var(--gold-300);
}

.souvenir-deadline span,
.souvenir-contact > span,
.souvenir-specifications > span {
  display: block;
  color: #aebdd0;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.souvenir-deadline strong {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.souvenir-specifications {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.souvenir-specifications ul {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-left: 18px;
  color: #d8e0eb;
  font-size: 0.74rem;
  line-height: 1.5;
}

.souvenir-specifications li::marker {
  color: var(--gold-300);
}

.souvenir-contact {
  padding-top: 24px;
}

.souvenir-contact strong,
.souvenir-contact small {
  display: block;
}

.souvenir-contact strong {
  margin-top: 9px;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.souvenir-contact small {
  margin-top: 4px;
  color: #aebdd0;
  font-size: 0.68rem;
}

.souvenir-contact a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  color: var(--gold-300);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.souvenir-contact a:hover {
  color: var(--white);
}

.souvenir-contact a svg {
  width: 16px;
  height: 16px;
}

.enrollment-brief {
  max-width: 760px;
  padding: 30px;
  color: var(--white);
  background: var(--navy-900);
}

.enrollment-brief-header {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.enrollment-brief-header > svg {
  width: 25px;
  height: 25px;
  color: var(--gold-300);
}

.enrollment-brief-header span,
.enrollment-contact-group > span {
  display: block;
  color: #aebdd0;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.enrollment-brief-header strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1.28rem;
}

.enrollment-contact-group {
  padding-top: 22px;
}

.enrollment-contact-group + .enrollment-contact-group {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.enrollment-contact-group > span {
  color: var(--gold-300);
}

.enrollment-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 20px;
  align-items: center;
  padding: 16px 0;
}

.enrollment-contact + .enrollment-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.enrollment-contact strong,
.enrollment-contact small {
  display: block;
}

.enrollment-contact strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.15;
}

.enrollment-contact small {
  margin-top: 5px;
  color: #aebdd0;
  font-size: 0.7rem;
}

.enrollment-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.enrollment-contact-actions a {
  display: inline-flex;
  min-width: 0;
  gap: 7px;
  align-items: center;
  color: var(--gold-300);
  font-size: 0.71rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.enrollment-contact-actions a:hover {
  color: var(--white);
}

.enrollment-contact-actions svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
}

.payment-section {
  margin-top: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  padding: 46px;
  color: var(--white);
  background: var(--navy-900);
}

.payment-section .eyebrow {
  color: var(--gold-300);
}

.bank-details {
  max-width: 620px;
  display: grid;
  grid-template-columns: 150px 1fr;
  margin: 28px 0 0;
  border-top: 1px solid var(--line-light);
}

.bank-details dt,
.bank-details dd {
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-light);
}

.bank-details dt {
  color: #92a4bb;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.bank-details dd {
  color: #edf2f7;
  font-size: 0.88rem;
  font-weight: 600;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.text-command {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--gold-300);
  border: 0;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
}

.text-command:hover {
  color: var(--white);
}

.qr-frame {
  align-self: center;
  justify-self: end;
  width: 280px;
  padding: 16px;
  background: var(--white);
  box-shadow: var(--shadow-3);
}

.qr-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.tally-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 18px;
  background: var(--line);
  border: 1px solid var(--line);
}

.tally-stat {
  padding: 18px 22px;
  background: var(--white);
}

.tally-stat span,
.tally-stat strong {
  display: block;
}

.tally-stat span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tally-stat strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 1.8rem;
}

.table-shell {
  max-height: 430px;
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
}

.data-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.data-table th,
.data-table td {
  padding: 13px 15px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.data-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #c8d3e1;
  background: var(--navy-800);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.data-table tbody tr:hover {
  background: #fbf8f0;
}

.empty-row td {
  padding: 30px;
  color: var(--muted);
  text-align: center;
}

.stay-booking-guide {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  margin-top: 34px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(10, 22, 40, 0.08);
}

.stay-comparison {
  padding: 38px 0 30px;
  color: var(--white);
  background: var(--navy-900);
}

.stay-comparison-heading {
  padding: 0 34px 26px;
}

.stay-comparison-heading .eyebrow {
  color: var(--gold-300);
}

.stay-comparison-heading h4 {
  margin-top: 4px;
  font-size: 2rem;
}

.stay-comparison-heading > p:last-child {
  max-width: 340px;
  margin-top: 10px;
  color: #aebdd0;
  font-size: 0.79rem;
}

.stay-comparison-list {
  display: grid;
}

.stay-comparison-list button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px 72px 18px;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 13px 28px 13px 34px;
  color: #aebdd0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.stay-comparison-list button::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold-400);
  content: "";
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.stay-comparison-list button:hover,
.stay-comparison-list button.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.stay-comparison-list button.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.stay-comparison-list button > span:first-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.stay-comparison-list button > span:first-child strong {
  overflow: hidden;
  color: inherit;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stay-comparison-list button small {
  color: #8191a7;
  font-size: 0.66rem;
}

.stay-comparison-list button > span:nth-child(2),
.stay-comparison-list button > strong {
  color: inherit;
  font-size: 0.7rem;
  text-align: right;
}

.stay-comparison-list button > svg {
  width: 16px;
  height: 16px;
  color: var(--gold-300);
}

.stay-detail-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 38px 42px 0;
}

.stay-picker {
  display: grid;
  gap: 8px;
}

.stay-picker > span:first-child {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.stay-picker .select-shell select {
  border: 1px solid var(--line);
  background: #fbfaf7;
}

.stay-detail {
  flex: 1;
  padding: 32px 0 36px;
}

.stay-detail-title {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
}

.stay-detail-title span {
  color: var(--vermillion);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.stay-detail-title h4 {
  margin-top: 4px;
  font-size: 2.4rem;
  line-height: 1.05;
}

.stay-venue-tag {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex: 0 0 auto;
  padding-top: 4px;
  color: var(--moss);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.stay-venue-tag svg {
  width: 15px;
  height: 15px;
}

.stay-key-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stay-key-facts > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.stay-key-facts dt,
.stay-address span,
.stay-contact > p span {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.stay-key-facts dd {
  margin-top: 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.stay-inventory {
  margin-top: 24px;
  padding: 20px 22px;
  background: var(--cream-200);
}

.stay-inventory-heading {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
}

.stay-inventory-heading > svg {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--gold-600);
}

.stay-inventory-heading span {
  display: block;
  color: var(--vermillion);
  font-size: 0.61rem;
  font-weight: 700;
  text-transform: uppercase;
}

.stay-inventory-heading h5 {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.25;
}

.stay-inventory-nights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 17px;
}

.stay-inventory-nights > div {
  min-width: 0;
}

.stay-inventory-nights span,
.stay-inventory-nights strong {
  display: block;
}

.stay-inventory-nights span {
  color: var(--muted);
  font-size: 0.62rem;
}

.stay-inventory-nights strong {
  margin-top: 2px;
  color: var(--navy-800);
  font-size: 0.77rem;
}

.stay-inventory > p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.stay-address {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.stay-address > svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--gold-600);
}

.stay-address p {
  color: var(--body);
  font-size: 0.8rem;
  line-height: 1.55;
}

.stay-address span,
.stay-contact > p span {
  margin-bottom: 4px;
}

.stay-contact {
  display: flex;
  gap: 14px 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stay-contact > p {
  min-width: 175px;
}

.stay-contact > p strong {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
}

.stay-contact a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--navy-800);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.stay-contact a:hover {
  color: var(--vermillion);
}

.stay-contact a svg {
  width: 15px;
  height: 15px;
  color: var(--gold-600);
}

.stay-contact .stay-email {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.stay-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.stay-actions .button {
  min-height: 46px;
}

.stay-help {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto 38px;
  gap: 13px;
  align-items: center;
  margin: auto -42px 0;
  padding: 20px 42px;
  color: var(--white);
  background: var(--moss);
}

.stay-help > svg {
  width: 22px;
  height: 22px;
  color: var(--gold-300);
}

.stay-help p {
  display: grid;
  gap: 1px;
}

.stay-help p span,
.stay-help p small {
  color: #cbd8cd;
  font-size: 0.63rem;
}

.stay-help p strong {
  font-size: 0.76rem;
}

.stay-help > a {
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
  text-decoration: none;
}

.stay-help .icon-button {
  width: 38px;
  height: 38px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.stay-help .icon-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.stay-card-icon,
.travel-item-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--gold-600);
  background: var(--gold-100);
  border-radius: var(--radius-sm);
}

.travel-item-icon svg {
  width: 22px;
  height: 22px;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.travel-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}

.travel-item h4 {
  font-size: 1.25rem;
}

.travel-item p {
  margin-top: 6px;
  color: var(--body);
  font-size: 0.82rem;
}

.travel-visual-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.travel-visual-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 25, 0.9) 0%, rgba(5, 13, 25, 0.72) 42%, rgba(5, 13, 25, 0.1) 76%),
    linear-gradient(0deg, rgba(5, 13, 25, 0.76) 0%, rgba(5, 13, 25, 0) 62%);
}

.travel-visual-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease);
}

.travel-visual-hero:hover > img {
  transform: scale(1.018);
}

.taj-night-viewing {
  margin-top: 28px;
  padding: 38px 42px 34px;
  color: var(--white);
  background: var(--navy-900);
}

.taj-night-heading {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  max-width: 880px;
}

.taj-night-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy-900);
  background: var(--gold-300);
}

.taj-night-icon svg {
  width: 23px;
  height: 23px;
}

.taj-night-heading .eyebrow {
  color: var(--gold-300);
}

.taj-night-heading h3 {
  max-width: 720px;
  margin-top: 5px;
  font-size: 2.25rem;
}

.taj-night-heading > div > p:last-child {
  max-width: 760px;
  margin-top: 12px;
  color: #afbdd0;
  font-size: 0.84rem;
  line-height: 1.68;
}

.taj-night-dates {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.taj-night-dates li {
  min-width: 0;
  display: grid;
  gap: 3px;
  align-content: center;
  min-height: 116px;
  padding: 17px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.taj-night-dates li:last-child {
  border-right: 0;
}

.taj-night-dates span,
.taj-night-dates small {
  color: #9eadc1;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.taj-night-dates strong {
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1;
}

.taj-night-dates .is-full-moon {
  color: var(--navy-900);
  background: var(--gold-300);
}

.taj-night-dates .is-full-moon span,
.taj-night-dates .is-full-moon small {
  color: var(--navy-700);
}

.taj-night-dates .is-arrival-fit {
  box-shadow: inset 0 -4px 0 var(--vermillion);
}

.taj-night-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 30px;
}

.taj-night-details article {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 12px;
}

.taj-night-details article > svg {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--gold-300);
}

.taj-night-details span {
  color: var(--gold-300);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.taj-night-details h4 {
  margin-top: 3px;
  font-family: var(--sans);
  font-size: 0.88rem;
}

.taj-night-details p {
  margin-top: 6px;
  color: #afbdd0;
  font-size: 0.74rem;
  line-height: 1.55;
}

.taj-night-action {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.taj-night-action > p {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  max-width: 760px;
  color: #afbdd0;
  font-size: 0.75rem;
  line-height: 1.55;
}

.taj-night-action > p svg {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--gold-300);
}

.taj-night-action > div {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.taj-night-official-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 700;
}

.taj-night-official-link:hover {
  color: var(--white);
}

.taj-night-official-link svg {
  width: 15px;
  height: 15px;
}

.travel-visual-copy {
  position: relative;
  z-index: 1;
  width: min(670px, 68%);
  padding: 52px;
}

.travel-visual-copy .eyebrow {
  color: var(--gold-300);
}

.travel-visual-copy h3 {
  margin-top: 7px;
  font-size: 3.15rem;
}

.travel-visual-copy > p:last-of-type {
  max-width: 590px;
  margin-top: 16px;
  color: #d7e0eb;
  line-height: 1.7;
}

.travel-visual-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
}

.travel-visual-modes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

.travel-visual-modes svg {
  width: 16px;
  height: 16px;
  color: var(--gold-300);
}

.travel-planner {
  margin-top: 28px;
  padding: 34px 38px 12px;
  background: var(--white);
}

.travel-mode-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.travel-mode-tabs svg {
  width: 16px;
  height: 16px;
}

.travel-mode-view {
  margin-top: 38px;
}

.travel-mode-header {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: end;
  padding-bottom: 30px;
}

.travel-mode-header h4 {
  max-width: 560px;
  margin-top: 5px;
  font-size: 2.05rem;
}

.travel-mode-header > p {
  max-width: 610px;
  color: var(--body);
  font-size: 0.9rem;
  line-height: 1.7;
}

.travel-gateway-list {
  border-top: 1px solid var(--line);
}

.travel-gateway {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) minmax(170px, 220px);
  gap: 28px;
  align-items: center;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.travel-gateway:hover {
  padding-inline: 18px;
  background: #fbf8f0;
}

.travel-gateway.is-featured {
  background: #f4f7f2;
}

.travel-code {
  color: var(--gold-600);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
}

.travel-gateway-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.travel-gateway-title span,
.travel-city-route > span {
  display: block;
  margin-bottom: 3px;
  color: var(--vermillion);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
}

.travel-gateway-title h5 {
  font-family: var(--serif);
  font-size: 1.38rem;
  line-height: 1.15;
}

.travel-gateway-title small {
  padding: 5px 8px;
  color: var(--moss);
  background: #eaf0eb;
  border-radius: var(--radius-sm);
  font-size: 0.63rem;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
}

.travel-gateway-main > p {
  max-width: 720px;
  margin-top: 8px;
  color: var(--body);
  font-size: 0.82rem;
  line-height: 1.6;
}

.travel-gateway > strong {
  color: var(--navy-800);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: right;
}

.travel-city-section .section-heading {
  margin-bottom: 28px;
}

.travel-city-picker {
  display: block;
  background: var(--white);
}

.travel-city-picker > label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 34px;
  color: var(--white);
  background: var(--navy-900);
}

.travel-city-picker > label > span {
  flex: 0 0 auto;
  color: var(--gold-300);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.travel-city-picker select {
  width: min(520px, 100%);
  min-height: 54px;
  padding: 0 44px 0 16px;
  color: var(--navy-900);
  border: 0;
  border-radius: var(--radius-sm);
  outline: 0;
  background: var(--white);
  font: 700 0.86rem var(--sans);
  appearance: none;
  cursor: pointer;
}

.travel-city-picker select:focus-visible {
  box-shadow: 0 0 0 3px var(--gold-300);
}

.travel-city-picker > label > svg {
  width: 18px;
  height: 18px;
  margin-left: -58px;
  color: var(--navy-800);
  pointer-events: none;
}

.travel-selected-route {
  padding: 0;
}

.travel-route-brief-header {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) minmax(190px, 260px);
  gap: 24px;
  align-items: start;
  padding: 34px 38px 30px;
}

.travel-selected-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--gold-600);
  background: var(--gold-100);
  border-radius: var(--radius-sm);
}

.travel-selected-icon svg {
  width: 20px;
  height: 20px;
}

.travel-selected-main > span {
  color: var(--vermillion);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.travel-selected-main h4 {
  margin-top: 4px;
  font-size: 1.62rem;
}

.travel-selected-main > p {
  max-width: 720px;
  margin-top: 10px;
  color: var(--body);
  font-size: 0.84rem;
  line-height: 1.65;
}

.travel-arrival-target {
  align-self: center;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.travel-arrival-target span,
.travel-route-detail > span,
.travel-route-plan-title span {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

.travel-arrival-target strong {
  display: block;
  margin-top: 4px;
  color: var(--navy-800);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.25;
}

.travel-route-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.travel-route-plans.is-single-mode {
  grid-template-columns: minmax(0, 1fr);
}

.travel-route-plans.is-single-mode .travel-route-plan {
  max-width: 980px;
}

.travel-route-plan {
  min-width: 0;
  padding: 34px 38px 38px;
}

.travel-route-plan + .travel-route-plan {
  border-left: 1px solid var(--line);
}

.travel-route-plan-title {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.travel-route-plan-title > svg {
  width: 24px;
  height: 24px;
  color: var(--gold-600);
}

.travel-route-plan-title h5 {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.25;
}

.travel-route-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.travel-route-stats dt {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.travel-route-stats dd {
  margin-top: 4px;
  color: var(--navy-800);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

.travel-route-detail {
  margin-top: 22px;
}

.travel-route-detail > p {
  margin-top: 5px;
  color: var(--body);
  font-size: 0.8rem;
  line-height: 1.65;
}

.travel-train-options {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: train-option 1;
}

.travel-train-options li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  counter-increment: train-option;
}

.travel-train-options li::before {
  content: counter(train-option);
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--gold-700);
  background: color-mix(in srgb, var(--gold-500) 10%, transparent);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
}

.travel-route-caution,
.travel-route-note {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  margin-top: 24px;
  padding: 14px 16px;
  background: var(--cream-200);
}

.travel-route-caution svg,
.travel-route-note svg {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--vermillion);
}

.travel-route-note svg {
  color: var(--moss);
}

.travel-route-caution p,
.travel-route-note p {
  color: var(--body);
  font-size: 0.73rem;
  line-height: 1.55;
}

.agra-illustration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 24px;
}

.agra-illustration {
  min-width: 0;
}

.agra-illustration > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--cream-300);
  transition: transform 520ms var(--ease), filter 240ms ease;
}

.agra-illustration:hover > img {
  transform: translateY(-4px);
  filter: saturate(1.04);
}

.agra-illustration figcaption {
  padding-top: 18px;
}

.agra-illustration figcaption > span {
  color: var(--vermillion);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.agra-illustration h4 {
  margin-top: 4px;
  font-size: 1.6rem;
}

.agra-illustration p {
  max-width: 58ch;
  margin-top: 7px;
  color: var(--body);
  font-size: 0.8rem;
  line-height: 1.6;
}

.illustration-credits {
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.7rem;
}

.illustration-credits summary {
  width: fit-content;
  color: var(--navy-800);
  font-weight: 700;
  cursor: pointer;
}

.illustration-credits p {
  max-width: 900px;
  margin-top: 10px;
  line-height: 1.65;
}

.illustration-credits a {
  color: var(--vermillion);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.travel-region-visual {
  min-height: 320px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--navy-900);
}

.travel-region-visual > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: opacity 200ms ease, transform 700ms var(--ease);
}

.travel-region-visual:hover > img {
  transform: scale(1.018);
}

.travel-region-visual figcaption {
  align-self: center;
  padding: 36px;
  color: var(--white);
}

.travel-region-visual figcaption > span {
  color: var(--gold-300);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
}

.travel-region-visual figcaption > strong {
  display: block;
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.14;
}

.travel-region-visual figcaption > p {
  margin-top: 14px;
  color: #afbdd0;
  font-size: 0.78rem;
  line-height: 1.6;
}

.travel-region-tabs {
  margin-bottom: 24px;
}

.travel-route-directory {
  min-height: 390px;
}

.travel-directory-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 4px 14px;
  color: var(--muted);
  font-size: 0.72rem;
}

.travel-directory-heading p {
  color: var(--navy-800);
  font-weight: 700;
  text-transform: uppercase;
}

.travel-city-list {
  border-top: 1px solid var(--line);
}

.travel-city-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(300px, 1.2fr) minmax(230px, 0.85fr);
  gap: 34px;
  align-items: start;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.travel-city-row:hover {
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.travel-city-name {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.travel-city-name > svg {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  color: var(--gold-600);
}

.travel-city-name h4 {
  font-size: 1.27rem;
  line-height: 1.25;
}

.travel-city-name span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
}

.travel-city-route p,
.travel-city-detail p {
  color: var(--body);
  font-size: 0.8rem;
  line-height: 1.55;
}

.travel-city-detail strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-800);
  font-size: 0.75rem;
}

.travel-empty {
  display: grid;
  justify-items: center;
  padding: 68px 20px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

.travel-empty svg {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  color: var(--gold-600);
}

.travel-empty p {
  margin-top: 5px;
  font-size: 0.82rem;
}

.travel-readiness-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.48fr);
  gap: 54px;
  margin-top: 70px;
  padding: 44px 42px;
  background: var(--cream-300);
}

.travel-readiness-heading h3 {
  max-width: 330px;
  margin-top: 6px;
  font-size: 2rem;
}

.travel-readiness-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 34px;
}

.travel-readiness-list article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 13px;
}

.travel-readiness-list svg {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--gold-600);
}

.travel-readiness-list span {
  color: var(--vermillion);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.travel-readiness-list h4 {
  margin-top: 2px;
  font-family: var(--sans);
  font-size: 0.86rem;
}

.travel-readiness-list p {
  margin-top: 5px;
  color: var(--body);
  font-size: 0.74rem;
  line-height: 1.58;
}

.travel-arrival-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1.44fr);
  gap: 52px;
  margin-top: 70px;
  padding: 38px 42px;
  color: var(--white);
  background: var(--navy-900);
}

.travel-arrival-band .eyebrow {
  color: var(--gold-300);
}

.travel-arrival-band h3 {
  margin-top: 6px;
  font-size: 2rem;
}

.travel-arrival-list {
  display: grid;
  gap: 20px;
}

.travel-arrival-list article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
}

.travel-arrival-list svg {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--gold-300);
}

.travel-arrival-list h4 {
  font-family: var(--sans);
  font-size: 0.86rem;
}

.travel-arrival-list p {
  margin-top: 3px;
  color: #afbdd0;
  font-size: 0.76rem;
  line-height: 1.55;
}

.travel-advisory {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding: 18px 4px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.travel-advisory svg {
  width: 18px;
  height: 18px;
  color: var(--gold-600);
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--navy-800);
  font-size: 0.76rem;
  font-weight: 700;
}

.resource-link:hover {
  color: var(--vermillion);
}

.resource-link svg {
  width: 15px;
  height: 15px;
}

.explore-hero {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  color: var(--white);
  background: var(--navy-900);
}

.explore-hero > div:first-child {
  align-self: center;
  padding: 46px;
}

.explore-hero .eyebrow {
  color: var(--gold-300);
}

.explore-hero h3 {
  max-width: 500px;
}

.explore-hero p:last-child {
  max-width: 510px;
  margin-top: 18px;
  color: #aebdd0;
  line-height: 1.75;
}

.explore-image {
  min-height: 390px;
  background-image:
    linear-gradient(90deg, rgba(10, 22, 40, 0.8) 0%, rgba(10, 22, 40, 0.06) 34%),
    url("images/agra-taj-night-hero.webp");
  background-position: 64% center;
  background-size: cover;
}

.explore-guide {
  margin-top: 34px;
}

.explore-picker {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.65fr);
  gap: 48px;
  align-items: end;
  padding: 34px 38px;
  color: var(--white);
  background: var(--navy-900);
}

.explore-picker h3 {
  max-width: 560px;
  margin-top: 4px;
  font-size: 2rem;
}

.explore-committee-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 17px 38px;
  color: var(--navy-800);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.explore-committee-note > svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--gold-700);
}

.explore-committee-note p {
  font-size: 0.78rem;
  line-height: 1.55;
}

.explore-picker label,
.plan-picker label {
  display: grid;
  gap: 8px;
}

.explore-picker label > span:first-child,
.plan-picker label > span:first-child {
  color: var(--gold-300);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.select-shell {
  position: relative;
  display: block;
}

.select-shell select {
  width: 100%;
  min-height: 56px;
  padding: 0 48px;
  color: var(--navy-900);
  border: 0;
  border-radius: var(--radius-sm);
  outline: 0;
  background: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  appearance: none;
  cursor: pointer;
}

.select-shell > svg {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  color: var(--gold-600);
  pointer-events: none;
  transform: translateY(-50%);
}

.select-shell > svg:first-child {
  left: 17px;
}

.select-shell > svg:last-child {
  right: 17px;
  color: var(--navy-800);
}

.select-shell select:focus-visible {
  box-shadow: 0 0 0 3px var(--gold-300);
}

.explore-content {
  min-height: 520px;
  padding-top: 42px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 320ms var(--ease);
}

.explore-content.is-visible {
  opacity: 1;
  transform: none;
}

.guide-heading {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  column-gap: 52px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.guide-heading > span {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--vermillion);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-heading > span svg {
  width: 16px;
  height: 16px;
}

.guide-heading h3 {
  max-width: 550px;
  font-size: 2.35rem;
}

.guide-heading > p {
  align-self: end;
  max-width: 680px;
  color: var(--body);
  font-size: 0.88rem;
  line-height: 1.72;
}

.guide-note {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 13px;
  margin-top: 24px;
  padding: 20px 22px;
  color: var(--navy-800);
  background: var(--gold-100);
}

.guide-note-important {
  color: var(--white);
  background: var(--moss);
}

.guide-note svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.guide-note p {
  font-size: 0.8rem;
  line-height: 1.62;
}

.explore-illustrations {
  margin-top: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.guide-list {
  border-top: 1px solid var(--line);
}

.guide-heading + .guide-list,
.guide-note + .guide-list {
  margin-top: 30px;
}

.guide-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  padding: 27px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}

.guide-item:hover {
  padding-inline: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.guide-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--gold-600);
  background: var(--gold-100);
  border-radius: var(--radius-sm);
}

.guide-icon svg {
  width: 21px;
  height: 21px;
}

.guide-meta,
.plan-summary > span,
.plan-steps > li > span {
  color: var(--vermillion);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-item h4 {
  margin-top: 3px;
  font-size: 1.48rem;
}

.guide-item p {
  max-width: 860px;
  margin-top: 7px;
  color: var(--body);
  font-size: 0.84rem;
  line-height: 1.68;
}

.guide-item-featured {
  padding-block: 34px;
}

.excursion-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 900px;
  margin: 24px 0 0;
  background: var(--line);
}

.excursion-facts > div {
  min-width: 0;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.72);
}

.excursion-facts dt {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.excursion-facts dt svg {
  width: 15px;
  height: 15px;
  color: var(--gold-600);
}

.excursion-facts dd {
  margin: 6px 0 0;
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 700;
}

.excursion-itinerary {
  max-width: 900px;
  margin-top: 30px;
}

.excursion-itinerary > h5 {
  padding-bottom: 12px;
  color: var(--navy-900);
  font-size: 1rem;
  border-bottom: 1px solid var(--line);
}

.excursion-itinerary ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.excursion-itinerary li {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.excursion-itinerary li > span {
  color: var(--vermillion);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.excursion-itinerary h6 {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.excursion-itinerary li p {
  margin-top: 4px;
  font-size: 0.78rem;
}

.excursion-advisory {
  display: grid;
  grid-template-columns: 21px minmax(0, 1fr);
  gap: 11px;
  max-width: 900px;
  margin-top: 20px;
  padding: 17px 19px;
  color: var(--navy-800);
  background: var(--gold-100);
}

.excursion-advisory svg {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--gold-700);
}

.excursion-advisory p {
  margin-top: 0;
  color: inherit;
  font-size: 0.78rem;
}

.guide-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.guide-map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: var(--navy-800);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(143, 53, 47, 0.45);
  text-underline-offset: 4px;
}

.guide-map-link:hover {
  color: var(--vermillion);
}

.guide-map-link svg {
  width: 15px;
  height: 15px;
}

.plan-picker {
  display: grid;
  grid-template-columns: minmax(280px, 430px);
  margin-top: 30px;
}

.plan-picker label > span:first-child {
  color: var(--muted);
}

.plan-picker .select-shell select {
  border: 1px solid var(--line);
}

.explore-plan {
  margin-top: 26px;
}

.plan-summary {
  padding: 24px 28px;
  color: var(--white);
  background: var(--navy-900);
}

.plan-summary > span {
  color: var(--gold-300);
}

.plan-summary h4 {
  margin-top: 5px;
  font-size: 1.7rem;
}

.plan-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: itinerary-step;
}

.plan-steps li {
  counter-increment: itinerary-step;
  display: grid;
  grid-template-columns: minmax(110px, 0.25fr) minmax(0, 1fr);
  gap: 34px;
  padding: 25px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.plan-steps h5 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.2;
}

.plan-steps p {
  max-width: 760px;
  margin-top: 5px;
  color: var(--body);
  font-size: 0.82rem;
  line-height: 1.65;
}

.source-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  margin-top: 44px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.source-note > svg {
  width: 25px;
  height: 25px;
  color: var(--moss);
}

.source-note h4 {
  font-size: 1.18rem;
}

.source-note p {
  max-width: 760px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.8rem;
}

.source-note details {
  margin-top: 14px;
}

.source-note summary {
  width: fit-content;
  color: var(--navy-900);
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.source-note ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.source-note li a {
  color: var(--body);
  font-size: 0.76rem;
  text-decoration: underline;
  text-decoration-color: rgba(173, 124, 36, 0.6);
  text-underline-offset: 3px;
}

.source-note li a:hover {
  color: var(--vermillion);
}

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

.contact-card {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-1);
}

.contact-card > span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card h4 {
  margin-top: 14px;
  font-size: 1.3rem;
}

.contact-card p {
  margin-top: 9px;
  color: var(--body);
  font-size: 0.78rem;
  line-height: 1.55;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: var(--body);
  font-size: 0.76rem;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--vermillion);
}

.committee-group {
  border-bottom: 1px solid var(--line);
}

.committee-directory {
  margin-top: 26px;
}

.committee-group > summary {
  width: 100%;
  min-width: 0;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.committee-group > summary::-webkit-details-marker {
  display: none;
}

.committee-group > summary:hover {
  background: rgba(196, 151, 58, 0.07);
}

.committee-group > summary:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: -3px;
}

.committee-summary {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.committee-summary strong {
  font: inherit;
}

.committee-summary small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
}

.committee-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--gold-600);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.committee-toggle-icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.committee-toggle-icon::before,
.committee-toggle-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease), opacity 160ms ease;
}

.committee-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.committee-group > summary:hover .committee-toggle-icon,
.committee-group > summary:focus-visible .committee-toggle-icon {
  border-color: var(--gold-600);
  background: var(--gold-100);
}

.committee-group[open] .committee-toggle-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.committee-table {
  padding: 4px 0 28px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 220ms var(--ease);
}

.committee-group.is-opening .committee-table,
.committee-group.is-closing .committee-table {
  opacity: 0;
  transform: translateY(-8px);
}

.committee-column-labels {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1.66fr);
  gap: 32px;
  padding: 14px 0 10px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.committee-column-labels > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.58fr);
  gap: 24px;
}

.committee-table--without-contacts .committee-column-labels,
.committee-table--without-contacts .committee-row {
  grid-template-columns: minmax(180px, 0.27fr) minmax(0, 1.73fr);
}

.committee-table--without-contacts .committee-column-labels > div,
.committee-table--without-contacts .committee-member {
  grid-template-columns: 1fr;
}

.committee-section-label {
  margin: 20px 0 8px;
  color: var(--vermillion);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.committee-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1.66fr);
  align-items: start;
  gap: 32px;
  padding: 22px 0;
  border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.committee-row > span,
.committee-entry {
  min-width: 0;
  overflow-wrap: anywhere;
}

.committee-role {
  color: var(--vermillion);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.committee-entry {
  display: grid;
  gap: 8px;
}

.committee-members {
  display: grid;
  gap: 8px;
  color: var(--ink);
}

.committee-member {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.58fr);
  align-items: start;
  gap: 24px;
}

.committee-person {
  display: grid;
  gap: 2px;
}

.committee-person strong {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.committee-person span,
.committee-scope {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.committee-contact {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.committee-contact span {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 7px;
  overflow-wrap: anywhere;
}

.committee-contact b {
  color: var(--body);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.committee-row.is-filtered,
.committee-section-label.is-filtered,
.committee-subsection.is-filtered,
.committee-group.is-filtered {
  display: none;
}

.site-footer {
  padding: 42px 0;
  color: #c5d0de;
  background: var(--navy-950);
  border-top: 1px solid rgba(229, 192, 106, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 44px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-marks {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-brand img.footer-crest {
  width: 38px;
  height: 52px;
}

.footer-brand img.footer-region {
  width: 46px;
  height: 46px;
}

.footer-brand-copy {
  min-width: 0;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.footer-brand small {
  margin-top: 2px;
  color: #8193aa;
  font-size: 0.66rem;
}

.footer-brand small + small {
  margin-top: 1px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links button,
.footer-links a {
  padding: 0;
  color: #aebdd0;
  font-size: 0.72rem;
}

.footer-links button:hover,
.footer-links a:hover {
  color: var(--gold-300);
}

.footer-grid > p {
  color: #8193aa;
  font-size: 0.68rem;
  text-align: right;
}

.message-dialog {
  width: min(760px, calc(100% - 32px));
  height: min(82vh, 820px);
  max-height: calc(100dvh - 32px);
  padding: 0;
  color: var(--ink);
  background: var(--cream-100);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-3);
  overflow: hidden;
}

.committee-dialog {
  width: min(820px, calc(100% - 32px));
  height: min(84vh, 860px);
  max-height: calc(100dvh - 32px);
  padding: 0;
  color: var(--ink);
  background: var(--cream-100);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-3);
  overflow: hidden;
}

.committee-dialog::backdrop {
  background: rgba(4, 10, 20, 0.76);
  backdrop-filter: blur(6px);
}

.committee-dialog[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  animation: dialog-in 260ms var(--ease) both;
}

.sightseeing-dialog {
  height: min(520px, calc(100dvh - 32px));
  max-height: calc(100dvh - 32px);
}

.souvenir-dialog {
  height: min(500px, calc(100dvh - 32px));
}

.sponsorship-dialog-intro {
  max-width: 58ch;
  padding: 28px 30px 8px;
  color: var(--body);
  line-height: 1.7;
}

.sponsorship-roster {
  display: grid;
  gap: 34px;
  padding: 26px 30px 40px;
}

.sponsorship-roster-group {
  display: grid;
  grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.sponsorship-roster-group h3 {
  position: sticky;
  top: 0;
  padding-top: 4px;
  color: var(--vermillion);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.sponsorship-roster-members {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
}

.sponsorship-person {
  min-width: 0;
}

.sponsorship-person strong,
.sponsorship-person span {
  display: block;
}

.sponsorship-person strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.2;
}

.sponsorship-person span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.message-dialog::backdrop {
  background: rgba(4, 10, 20, 0.76);
  backdrop-filter: blur(6px);
}

.message-dialog[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  animation: dialog-in 260ms var(--ease) both;
}

.dialog-header {
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 24px;
  align-items: start;
  padding: 28px 30px 22px;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.dialog-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
}

.dialog-header h2 {
  font-size: 2rem;
}

.dialog-close {
  color: var(--ink);
}

.dialog-author {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 16px;
  padding: 26px 30px 0;
}

.dialog-author img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  background: var(--cream-300);
}

.dialog-author strong,
.dialog-author span {
  display: block;
}

.dialog-author strong {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.dialog-author span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
}

.dialog-body {
  padding: 26px 30px 36px;
}

.dialog-body p {
  max-width: 64ch;
  margin-top: 16px;
  color: var(--body);
  line-height: 1.82;
}

.dialog-body p:first-child {
  margin-top: 0;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  max-width: min(340px, calc(100% - 44px));
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-2);
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

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

@keyframes hero-image-in {
  from { opacity: 0; transform: scale(1.07); }
  to { opacity: 1; transform: scale(1.02); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(12px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cue-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3rem;
  }

  .site-header {
    gap: 18px;
    padding-inline: 24px;
  }

  .site-nav button {
    padding-inline: 7px;
    font-size: 0.68rem;
  }

  .brand {
    min-width: auto;
  }

  .stay-booking-guide {
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  }

  .stay-detail-column {
    padding-inline: 32px;
  }

  .stay-help {
    margin-inline: -32px;
    padding-inline: 32px;
  }

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

  .message-card:last-child,
  .stay-card:last-child {
    grid-column: 1 / -1;
  }

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

  .committee-row {
    grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1.66fr);
    gap: 24px;
  }

  .committee-column-labels {
    grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1.66fr);
    gap: 24px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 72px;
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  h3 {
    font-size: 2.05rem;
  }

  .stay-booking-guide {
    grid-template-columns: 1fr;
  }

  .stay-comparison {
    padding-bottom: 14px;
  }

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

  .stay-comparison-list button {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 78px;
    padding-inline: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stay-comparison-list button > span:nth-child(2),
  .stay-comparison-list button > svg {
    display: none;
  }

  .stay-detail-column {
    min-height: 650px;
  }

  .container,
  .hero-inner,
  .fact-band-inner {
    padding-inline: 24px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    justify-items: stretch;
    gap: 0;
    padding: 12px 24px 22px;
    background: var(--navy-900);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

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

  .site-nav button {
    width: 100%;
    padding: 14px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
  }

  .site-nav button::after {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-date {
    width: fit-content;
    grid-row: 1;
    order: -1;
  }

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

  .taj-night-action {
    display: grid;
    align-items: start;
  }

  .taj-night-action > div {
    flex-wrap: wrap;
  }

  .fact-item:nth-child(2) {
    border-right: 0;
  }

  .fact-item:nth-child(3),
  .fact-item:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .fact-item:nth-child(3) {
    border-left: 1px solid var(--line-light);
  }

  .desk-heading,
  .view-intro,
  .section-heading,
  .overview-lead {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .view-intro .button {
    justify-self: start;
  }

  .registration-steps,
  .fee-grid,
  .travel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .travel-mode-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .travel-visual-copy {
    width: min(730px, 80%);
  }

  .travel-region-visual {
    grid-template-columns: minmax(0, 1.1fr) minmax(270px, 0.9fr);
  }

  .travel-gateway {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .travel-gateway > strong {
    grid-column: 2;
    text-align: left;
  }

  .travel-city-row {
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
    gap: 22px 30px;
  }

  .travel-city-picker {
    grid-template-columns: minmax(230px, 0.48fr) minmax(0, 1.52fr);
  }

  .souvenir-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 32px;
  }

  .registration-choice-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  }

  .travel-selected-route > article {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .travel-selected-route dl {
    grid-column: 2;
  }

  .travel-city-detail {
    grid-column: 2;
  }

  .registration-step:last-child,
  .travel-item:last-child {
    grid-column: 1 / -1;
  }

  .payment-section {
    grid-template-columns: 1fr 240px;
    gap: 34px;
    padding: 36px;
  }

  .qr-frame {
    width: 230px;
  }

  .explore-hero {
    grid-template-columns: 1fr;
  }

  .explore-image {
    min-height: 300px;
    background-position: 65% center;
  }

  .explore-picker {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .guide-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guide-heading > p {
    align-self: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 28px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-grid > p {
    text-align: left;
  }

  .travel-route-plans,
  .travel-readiness-band {
    grid-template-columns: 1fr;
  }

  .travel-route-plan + .travel-route-plan {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .travel-readiness-band {
    gap: 30px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.82rem;
  }

  h4 {
    font-size: 1.2rem;
  }

  .stay-booking-guide {
    margin-inline: -18px;
  }

  .stay-comparison {
    padding-top: 30px;
  }

  .stay-comparison-heading {
    padding-inline: 22px;
  }

  .stay-comparison-heading h4 {
    font-size: 1.65rem;
  }

  .stay-comparison-list {
    grid-template-columns: 1fr;
  }

  .stay-comparison-list button {
    grid-template-columns: minmax(0, 1fr) 72px 18px;
    min-height: 68px;
    padding: 12px 22px;
    border-right: 0;
  }

  .stay-comparison-list button > span:nth-child(2) {
    display: none;
  }

  .stay-comparison-list button > svg {
    display: block;
  }

  .stay-detail-column {
    min-height: 0;
    padding: 30px 22px 0;
  }

  .stay-detail-title {
    display: grid;
  }

  .stay-detail-title h4 {
    font-size: 2rem;
  }

  .stay-venue-tag {
    justify-self: start;
  }

  .stay-key-facts {
    grid-template-columns: 1fr 1fr;
    gap: 18px 0;
  }

  .stay-key-facts > div:nth-child(3) {
    grid-column: 1 / -1;
    padding: 16px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stay-inventory {
    padding: 19px 18px;
  }

  .stay-inventory-nights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  .stay-contact {
    display: grid;
  }

  .stay-actions {
    display: grid;
  }

  .stay-actions .button {
    width: 100%;
  }

  .stay-help {
    grid-template-columns: 34px minmax(0, 1fr) 38px;
    margin-inline: -22px;
    padding-inline: 22px;
  }

  .stay-help > a:not(.icon-button) {
    grid-column: 2;
  }

  .stay-help .icon-button {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .container,
  .hero-inner,
  .fact-band-inner {
    padding-inline: 18px;
  }

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

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand img.brand-crest {
    width: 30px;
    height: 42px;
  }

  .brand-marks {
    gap: 5px;
  }

  .brand img.brand-region {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy span {
    display: none;
  }

  .header-register {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.7rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    height: 84svh;
    min-height: 620px;
    max-height: 760px;
    align-items: end;
  }

  .hero-image {
    background-position: 67% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(4, 10, 20, 0.34) 0%, rgba(4, 10, 20, 0.22) 28%, rgba(4, 10, 20, 0.9) 78%, rgba(4, 10, 20, 0.96) 100%);
  }

  .hero-inner {
    padding-top: 110px;
    padding-bottom: 66px;
  }

  .hero-date {
    display: none;
  }

  .hero-subtitle {
    font-size: 1.55rem;
  }

  .hero-intro {
    max-width: 35ch;
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-note {
    align-items: flex-start;
    line-height: 1.4;
  }

  .hero-cue {
    display: none;
  }

  .fact-band-inner {
    padding-inline: 0;
  }

  .fact-item {
    grid-template-columns: 26px 1fr;
    min-height: 86px;
    padding: 16px 14px;
  }

  .fact-item:first-child,
  .fact-item:nth-child(3) {
    border-left: 0;
  }

  .fact-item strong {
    font-size: 0.96rem;
    white-space: normal;
  }

  .meeting-desk {
    padding: 64px 0 80px;
  }

  .desk-heading {
    margin-bottom: 34px;
  }

  .desk-heading-support {
    gap: 18px;
  }

  .desk-heading-support img {
    width: min(100%, 360px);
  }

  .desk-heading-support > p {
    font-size: 0.9rem;
  }

  .tab-rail-wrap {
    margin-inline: -18px;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 0;
    padding-inline: 4px;
  }

  .tab-scroll-control {
    position: relative;
    z-index: 2;
    display: grid;
    width: 36px;
    height: 44px;
    color: var(--navy-900);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-1);
  }

  .tab-rail {
    display: flex;
  }

  .tab-rail button {
    flex: 0 0 max-content;
    width: max-content;
    min-width: 0;
    min-height: 56px;
    padding-inline: 20px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .tab-rail button[data-view-button="committee"] {
    flex-basis: auto;
    width: auto;
    min-width: max-content;
    padding-inline: 20px;
    overflow: hidden;
  }

  .tab-label-long {
    display: none;
  }

  .tab-label-short {
    display: inline;
  }

  .view-panel {
    padding-top: 44px;
  }

  .panel-section {
    margin-top: 54px;
    padding-top: 48px;
  }

  .message-grid,
  .stay-grid,
  .contact-grid,
  .registration-steps,
  .fee-grid,
  .travel-grid,
  .tally-stats {
    grid-template-columns: 1fr;
  }

  .souvenir-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .registration-form-layout,
  .registration-opening-layout {
    grid-template-columns: 1fr;
  }

  .enrollment-brief {
    padding: 24px 20px;
  }

  .enrollment-contact {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .enrollment-contact-actions {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .festival-registration-form,
  .registration-bank-panel {
    padding: 26px 20px;
  }

  .registration-fields,
  .registration-choice-grid {
    grid-template-columns: 1fr;
  }

  .registration-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .registration-form-footer .button {
    width: 100%;
  }

  .registration-bank-panel > header {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .bank-success-icon {
    width: 40px;
    height: 40px;
  }

  .registration-bank-panel h3 {
    font-size: 1.65rem;
  }

  .bank-detail-row {
    min-height: 76px;
  }

  .souvenir-rate.is-premium > span strong::after {
    display: block;
    margin: 4px 0 0;
  }

  .message-card:last-child,
  .stay-card:last-child,
  .registration-step:last-child,
  .travel-item:last-child {
    grid-column: auto;
  }

  .message-card {
    min-height: 310px;
  }

  .travel-planner {
    margin-inline: -18px;
    padding: 26px 18px 8px;
  }

  .taj-night-viewing {
    margin: 22px -18px 0;
    padding: 30px 22px;
  }

  .taj-night-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .taj-night-heading h3 {
    font-size: 1.85rem;
  }

  .taj-night-dates li {
    min-height: 104px;
    padding: 14px 7px;
  }

  .taj-night-dates strong {
    font-size: 1.8rem;
  }

  .taj-night-dates span,
  .taj-night-dates small {
    font-size: 0.56rem;
  }

  .taj-night-details {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .taj-night-action > div {
    display: grid;
    justify-items: start;
  }

  .travel-visual-hero {
    min-height: 560px;
    margin-inline: -18px;
  }

  .travel-visual-hero::after {
    background:
      linear-gradient(0deg, rgba(5, 13, 25, 0.94) 0%, rgba(5, 13, 25, 0.66) 54%, rgba(5, 13, 25, 0.1) 84%),
      linear-gradient(90deg, rgba(5, 13, 25, 0.4), rgba(5, 13, 25, 0));
  }

  .travel-visual-hero > img {
    object-position: 62% center;
  }

  .travel-visual-copy {
    width: 100%;
    padding: 32px 22px;
  }

  .travel-visual-copy h3 {
    max-width: 10ch;
    font-size: 2.45rem;
  }

  .travel-visual-copy > p:last-of-type {
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .travel-region-visual {
    grid-template-columns: 1fr;
    margin-inline: -18px;
  }

  .travel-region-visual > img {
    min-height: 230px;
    max-height: 230px;
  }

  .travel-region-visual figcaption {
    padding: 28px 22px;
  }

  .travel-mode-header h4 {
    font-size: 1.65rem;
  }

  .travel-gateway {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 24px;
  }

  .travel-gateway > strong {
    grid-column: auto;
  }

  .travel-gateway-title {
    display: grid;
    gap: 10px;
  }

  .travel-gateway-title small {
    justify-self: start;
  }

  .travel-city-section .section-heading {
    margin-bottom: 22px;
  }

  .travel-city-picker {
    margin-inline: -18px;
  }

  .travel-city-picker > label {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
    padding: 26px 22px;
  }

  .travel-city-picker > label > svg {
    position: absolute;
    right: 38px;
    bottom: 44px;
    margin-left: 0;
  }

  .travel-selected-route {
    padding: 0;
  }

  .travel-route-brief-header {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    padding: 28px 22px;
  }

  .travel-selected-icon {
    width: 40px;
    height: 40px;
  }

  .travel-arrival-target {
    grid-column: 1 / -1;
    padding: 18px 0 0 56px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .travel-route-plan {
    padding: 28px 22px 32px;
  }

  .travel-route-stats {
    gap: 14px;
  }

  .travel-readiness-band {
    margin-inline: -18px;
    padding: 34px 22px;
  }

  .travel-readiness-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .agra-illustration-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .travel-directory-heading {
    display: grid;
    gap: 3px;
  }

  .travel-city-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 22px;
  }

  .travel-city-detail {
    grid-column: auto;
    padding-left: 44px;
  }

  .travel-city-route {
    padding-left: 44px;
  }

  .travel-arrival-band {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-inline: -18px;
    padding: 32px 22px;
  }

  .action-band {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .action-band-buttons {
    display: grid;
  }

  .schedule-header {
    display: grid;
    gap: 8px;
  }

  .venue-map-link {
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
  }

  .programme-map-heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .programme-map iframe {
    height: 260px;
  }

  .schedule-item {
    grid-template-columns: 100px 18px minmax(0, 1fr);
    gap: 10px;
  }

  .schedule-time {
    font-size: 0.7rem;
  }

  .registration-step {
    min-height: 0;
  }

  .payment-section {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .bank-details {
    grid-template-columns: 1fr;
  }

  .bank-details dt {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .bank-details dd {
    padding-top: 3px;
  }

  .qr-frame {
    justify-self: start;
    width: min(100%, 260px);
  }

  .explore-hero > div:first-child {
    padding: 30px 22px;
  }

  .explore-image {
    min-height: 240px;
  }

  .explore-guide {
    margin-top: 24px;
  }

  .explore-picker {
    margin-inline: -18px;
    padding: 28px 22px;
  }

  .explore-committee-note {
    align-items: flex-start;
    margin-inline: -18px;
    padding: 17px 22px;
  }

  .explore-picker h3 {
    font-size: 1.65rem;
  }

  .explore-content {
    min-height: 420px;
    padding-top: 32px;
  }

  .guide-heading h3 {
    font-size: 1.9rem;
  }

  .guide-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 15px;
    padding-block: 23px;
  }

  .guide-icon {
    width: 40px;
    height: 40px;
  }

  .guide-item:hover {
    padding-inline: 0;
    background: transparent;
  }

  .guide-item h4 {
    font-size: 1.3rem;
  }

  .excursion-facts {
    grid-template-columns: 1fr;
  }

  .excursion-itinerary li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .plan-picker {
    grid-template-columns: 1fr;
  }

  .plan-summary {
    padding: 22px;
  }

  .plan-summary h4 {
    font-size: 1.45rem;
  }

  .plan-steps li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px;
  }

  .guide-note {
    padding: 18px;
  }

  .source-note ul {
    grid-template-columns: 1fr;
  }

  .committee-group > summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    font-size: 1.25rem;
  }

  .committee-toggle {
    gap: 7px;
  }

  .committee-toggle-text {
    font-size: 0;
  }

  .committee-toggle-text::after {
    content: "View";
    font-size: 0.62rem;
  }

  .committee-group[open] .committee-toggle-text::after {
    content: "Close";
  }

  .committee-toggle-icon {
    width: 32px;
    height: 32px;
  }

  .committee-row {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 18px 0;
  }

  .committee-column-labels {
    display: none;
  }

  .committee-member {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .committee-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
  }

  .committee-row > span:empty {
    display: none;
  }

  .dialog-header {
    padding: 22px 20px 18px;
  }

  .message-dialog {
    width: calc(100% - 20px);
    height: calc(100dvh - 20px);
    max-height: calc(100dvh - 20px);
  }

  .committee-dialog {
    width: calc(100% - 20px);
    height: calc(100dvh - 20px);
    max-height: calc(100dvh - 20px);
  }

  .sightseeing-dialog {
    height: min(560px, calc(100dvh - 20px));
    max-height: calc(100dvh - 20px);
  }

  .souvenir-dialog {
    height: min(500px, calc(100dvh - 20px));
    max-height: calc(100dvh - 20px);
  }

  .dialog-header h2 {
    font-size: 1.6rem;
  }

  .dialog-author,
  .dialog-body {
    padding-inline: 20px;
  }

  .sponsorship-dialog-intro {
    padding: 22px 20px 4px;
  }

  .sponsorship-roster {
    gap: 30px;
    padding: 24px 20px 34px;
  }

  .sponsorship-roster-group {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sponsorship-roster-group h3 {
    position: static;
  }

  .sponsorship-roster-members {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 420px) {
  .committee-contact {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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