:root {
  --ink: #18214a;
  --ink-soft: #344065;
  --pink: #ff4f9d;
  --pink-deep: #d8317d;
  --yellow: #ffd34e;
  --blue: #5ed5ef;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(24, 33, 74, 0.15);
  --muted: #6e748c;
  --shadow: 0 24px 70px rgba(24, 33, 74, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 211, 78, 0.16), transparent 22rem),
    var(--paper);
  font-family: "Noto Sans Thai", "Leelawadee UI", Thonburi, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(24, 33, 74, 0.95);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 14px 14px 14px 4px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 1.4rem;
  font-weight: 900;
}

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

.brand strong {
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  padding: 8px 12px;
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  text-decoration: none;
  transition: 180ms ease;
}

nav a:hover,
nav a:focus-visible,
nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(34px, 6vw, 84px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 24px 126px;
}

.hero::before {
  position: absolute;
  top: 48px;
  right: 0;
  width: 190px;
  height: 190px;
  border: 28px solid rgba(94, 213, 239, 0.22);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: var(--pink-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 8vw, 7.2rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h1 span {
  display: inline-block;
  color: var(--pink);
  font-size: 0.5em;
  letter-spacing: -0.04em;
  transform: translateX(0.06em);
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 20px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 5px 6px 0 rgba(24, 33, 74, 0.18);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-secondary {
  background: var(--white);
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: center;
  margin: 0;
  padding: 12px 12px 18px;
  border: 1px solid rgba(24, 33, 74, 0.12);
  border-radius: 10px 10px 28px 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.7deg);
}

.hero-visual::after {
  position: absolute;
  top: -22px;
  left: 42%;
  width: 106px;
  height: 38px;
  background: rgba(255, 211, 78, 0.75);
  content: "";
  transform: rotate(-4deg);
}

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

.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 6px 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual figcaption span {
  color: var(--ink);
  font-weight: 900;
}

.hero-video {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 22px;
  border-radius: 18px 18px 38px 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 0%, rgba(255, 79, 157, 0.55), transparent 40%),
    var(--ink);
  box-shadow: var(--shadow);
}

.hero-video-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.hero-video-heading .kicker {
  margin-bottom: 4px;
  color: var(--yellow);
}

.hero-video-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 2.5vw, 2.15rem);
  line-height: 1.2;
}

.hero-video-heading > span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.media-thumb {
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  width: 170px;
  max-width: 100%;
  margin: 0;
  padding: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 9px 26px rgba(24, 33, 74, 0.11);
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.media-thumb:hover,
.media-thumb:focus-visible {
  outline: 3px solid rgba(255, 79, 157, 0.25);
  outline-offset: 3px;
  box-shadow: 0 14px 34px rgba(24, 33, 74, 0.18);
  transform: translateY(-2px);
}

.media-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 8px;
  object-fit: cover;
  opacity: 1;
}

.media-thumb span {
  padding: 2px 5px 4px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero-thumb {
  width: 150px;
  margin-top: 24px;
}

.snapshot {
  position: static;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 50px rgba(24, 33, 74, 0.1);
  backdrop-filter: blur(12px);
}

.snapshot > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 90px;
  padding: 18px;
}

.snapshot > div + div {
  border-left: 1px solid var(--line);
}

.snapshot-number {
  color: var(--pink-deep);
  font-size: 1.6rem;
  font-weight: 950;
  line-height: 1;
}

.snapshot span:last-child {
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 126px) 24px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.video-heading h2,
.booth-band h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 1.4;
  letter-spacing: normal;
}

.section-heading > p,
.video-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
}

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

.feedback-card {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 12px 12px 32px 12px;
  box-shadow: 7px 8px 0 var(--ink);
}

.feedback-card::after {
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 140px;
  height: 140px;
  border: 24px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  content: "";
}

.feedback-card h3 {
  max-width: 13rem;
  margin-top: 55px;
  margin-bottom: 8px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.feedback-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.card-index {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 2.4rem;
  font-weight: 950;
  line-height: 1;
  opacity: 0.25;
}

.card-pink {
  background: var(--pink);
}

.card-yellow {
  background: var(--yellow);
}

.card-blue {
  background: var(--blue);
}

.dates-section {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}

.section-heading-light .kicker {
  color: var(--yellow);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.68);
}

.date-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
}

.date-poster {
  display: flex;
  flex-direction: column;
  min-height: 356px;
  padding: 26px;
  border: 2px solid var(--yellow);
  border-radius: 14px 14px 34px 14px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 8px 9px 0 var(--pink);
}

.date-poster > span {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.date-poster strong {
  margin: auto 0 4px;
  font-size: 4.6rem;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.date-poster p {
  margin-bottom: 0;
  font-size: 1.45rem;
  font-weight: 900;
}

.date-poster small {
  margin-top: 18px;
  font-weight: 700;
}

.schedule-wrap {
  min-width: 0;
}

table {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  color: var(--white);
}

caption {
  padding: 0 0 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}

th,
td {
  padding: 18px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  text-align: left;
}

tr > :last-child {
  border-right: 0;
}

tbody tr:last-child > * {
  border-bottom: 0;
}

thead th {
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

tbody th {
  overflow-wrap: anywhere;
  color: var(--blue);
  font-size: 0.9rem;
}

td {
  font-weight: 800;
}

td span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  font-weight: 500;
}

.makeup-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
}

.makeup-note span {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--pink-deep);
  font-weight: 900;
}

.makeup-note p {
  margin: 0;
}

.split-feature {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.feature-image {
  margin: 0;
}

.feature-image .media-thumb {
  position: sticky;
  top: 104px;
  width: 230px;
}

.channel-grid {
  display: grid;
  gap: 18px;
}

.channel-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.channel-card-alt {
  background: rgba(94, 213, 239, 0.16);
}

.channel-label,
.story-tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 99px;
  color: var(--pink-deep);
  background: rgba(255, 79, 157, 0.12);
  font-size: 0.75rem;
  font-weight: 900;
}

.channel-card h3 {
  margin: 12px 0 14px;
  font-size: 2rem;
  line-height: 1.1;
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-top: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 13px;
  left: 1px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  content: "✓";
  font-size: 0.68rem;
  font-weight: 900;
}

.compact-section {
  padding-top: 72px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.story-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 4px;
  align-items: center;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px 16px 36px 16px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(24, 33, 74, 0.08);
}

.story-card > .media-thumb {
  width: 140px;
}

.story-copy {
  padding: 12px 14px 12px 20px;
}

.story-copy h3 {
  margin: 14px 0 8px;
  font-size: 1.75rem;
  line-height: 1.2;
}

.story-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.plain-list li {
  padding-left: 20px;
  color: var(--ink-soft);
}

.plain-list li::before {
  position: absolute;
  top: 21px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.booth-band {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px 18px 46px 18px;
  color: var(--white);
  background: var(--pink-deep);
  box-shadow: var(--shadow);
}

.booth-band > .booth-thumb {
  width: 220px;
  margin: 44px 0 44px 44px;
}

.booth-band > div {
  align-self: center;
  padding: clamp(36px, 6vw, 70px);
}

.booth-band .kicker {
  color: var(--yellow);
}

.booth-band h2 {
  margin-bottom: 24px;
}

.booth-band p:last-child {
  max-width: 30rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.middle-section {
  padding-bottom: 110px;
}

.middle-overview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.building-plan {
  padding: 30px;
  border: 2px solid var(--ink);
  border-radius: 12px 12px 32px 12px;
  background: var(--blue);
  box-shadow: 8px 9px 0 var(--ink);
}

.plan-label {
  margin-bottom: 18px;
  font-weight: 900;
}

.floor-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.floor-plan div {
  display: grid;
  min-height: 92px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  font-weight: 950;
}

.floor-plan .support-space {
  grid-column: span 1;
  min-height: 58px;
  font-size: 0.88rem;
}

.floor-plan .support-space:last-child {
  grid-column: span 2;
}

.building-plan > p:last-child {
  margin-bottom: 0;
}

blockquote {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin: 0;
  overflow: hidden;
  padding: 28px;
  border-radius: 14px 14px 36px 14px;
  color: var(--white);
  background: var(--ink);
}

blockquote .promise-thumb {
  width: 150px;
}

blockquote::after {
  display: none;
}

blockquote > div {
  position: static;
}

blockquote span {
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

blockquote p {
  margin: 10px 0 0;
  font-size: clamp(1.35rem, 2.5vw, 2.05rem);
  font-weight: 800;
  line-height: 1.45;
}

.pathways {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  margin-top: 80px;
}

.pathways-intro h3 {
  margin-bottom: 16px;
  font-size: 2.5rem;
  line-height: 1.1;
}

.pathways-intro > p:last-child {
  color: var(--muted);
}

.pathway-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 0 0 28px;
}

.pathway-list article + article {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.pathway-list article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 950;
}

.pathway-list h4 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.pathway-list p {
  margin-bottom: 5px;
  color: var(--ink-soft);
}

.pathway-list small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.source-photo {
  display: inline-flex;
  width: 280px;
  margin-top: 38px;
}

.image-modal {
  width: min(94vw, 1120px);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 120px rgba(6, 10, 30, 0.5);
}

.image-modal::backdrop {
  background: rgba(9, 14, 37, 0.78);
  backdrop-filter: blur(6px);
}

.image-modal figure {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 18px;
}

.image-modal img {
  width: 100%;
  max-height: calc(94vh - 92px);
  border-radius: 12px;
  object-fit: contain;
  background: #eef0f7;
}

.image-modal figcaption {
  padding: 12px 4px 2px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.modal-close {
  position: absolute;
  z-index: 4;
  top: 10px;
  right: 10px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: rgba(24, 33, 74, 0.92);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.video-section {
  padding: clamp(72px, 9vw, 120px) max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 87% 0%, rgba(255, 79, 157, 0.55), transparent 30%),
    var(--ink);
}

.video-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.video-heading .kicker {
  color: var(--yellow);
}

.video-heading > p {
  color: rgba(255, 255, 255, 0.66);
}

.video-frame {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px 18px 42px 18px;
  background: #090e25;
  box-shadow: 0 25px 90px rgba(0, 0, 0, 0.38);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  position: absolute;
  inset: 0;
  display: block;
  color: white;
  background: #090e25;
}

.video-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-play {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 18px;
  border: 1px solid #ffffff80;
  border-radius: 999px;
  background: #18214af2;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.video-poster:hover .video-play,
.video-poster:focus-visible .video-play { background: var(--pink-deep); }
.video-poster:focus-visible { outline: 3px solid var(--yellow); outline-offset: -4px; }
.video-poster[hidden] { display: none; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 54px;
  color: var(--muted);
  font-size: 0.86rem;
}

footer strong {
  color: var(--ink);
  font-size: 1rem;
}

footer p {
  margin-bottom: 0;
}

footer > a {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 920px) {
  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-video {
    order: -1;
  }

  .hero-visual {
    max-width: 760px;
  }

  .snapshot {
    position: static;
    grid-column: 1;
    margin-top: -20px;
  }

  .section-heading,
  .video-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .feedback-card {
    min-height: 220px;
  }

  .split-feature,
  .middle-overview,
  .pathways {
    grid-template-columns: 1fr;
  }

  .feature-image .media-thumb {
    position: static;
  }

  .feature-image img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .booth-band {
    margin: 0 24px;
  }

  .pathways {
    gap: 26px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }

  .hero {
    padding-top: 52px;
  }

  .hero::before {
    display: none;
  }

  .snapshot {
    grid-template-columns: 1fr;
  }

  .snapshot > div {
    justify-content: flex-start;
  }

  .snapshot > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .date-layout {
    grid-template-columns: 1fr;
  }

  .date-poster {
    min-height: 290px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    grid-template-columns: 104px minmax(0, 1fr);
    padding: 14px;
  }

  .story-card > .media-thumb {
    width: 96px;
  }

  .story-copy {
    padding: 8px 6px 8px 12px;
  }

  .story-copy h3 {
    font-size: 1.4rem;
  }

  .booth-band {
    grid-template-columns: 1fr;
    margin: 0 16px;
  }

  .booth-band > .booth-thumb {
    width: 170px;
    margin: 28px auto 0;
  }

  .booth-band > div {
    padding: 34px 26px 42px;
  }

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

  .floor-plan .support-space:last-child {
    grid-column: span 1;
  }

  blockquote {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  blockquote .promise-thumb {
    width: 96px;
  }

  blockquote p {
    font-size: 1.12rem;
  }

  .hero-video {
    padding: 16px;
  }

  .hero-video-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .image-modal {
    width: 96vw;
    max-height: 90vh;
  }

  .image-modal figure {
    padding: 10px;
  }

  .image-modal img {
    max-height: calc(90vh - 76px);
  }

  .pathway-list article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .pathway-list article > span {
    width: 40px;
    height: 40px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Responsive layout uses available space, including intermediate tablet widths
   and enlarged text. Keep content visible rather than masking overflow. */
body { overflow-wrap: anywhere; }
:where(header, main, section, article, figure, blockquote, nav, div) { min-width: 0; }
h2, h3, h4 { line-height: 1.4; letter-spacing: normal; }
.hero { padding-block: 48px 32px; gap: 32px; }
.hero-video { align-self: start; }
.hero-thumb, .source-photo.media-thumb { width: 100%; }
.hero-thumb img, .source-photo.media-thumb img { aspect-ratio: auto; object-fit: contain; }
.snapshot { margin: 0; }
.snapshot > div { flex-wrap: wrap; }
.brand { min-width: 0; }
.brand-mark { flex-shrink: 0; }
.brand strong { line-height: 1.45; }
.hero-video-heading { flex-wrap: wrap; }
.hero-video-heading > span { flex: 0 1 auto; }
.section-heading { grid-template-columns: minmax(0, 1.1fr) minmax(0, .8fr); }
.section-heading h2, .booth-band h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
.section { padding-block: 64px; }
.date-layout { align-items: start; grid-template-columns: minmax(0, 1fr); }
.date-poster { display: flex; flex-direction: row; flex-wrap: wrap; align-items: baseline; gap: 8px 20px; }
.date-poster > * { min-width: 0; max-width: 100%; }
.date-poster { min-height: 0; }
.date-poster strong { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.25; white-space: normal; margin: 0; }
.date-poster p, .date-poster small { margin: 0; }
.feedback-card::after { display: none; }
.date-poster small { font-size: .9375rem; }
thead th:first-child { width: 26%; }
th, td { padding: 16px 12px; overflow-wrap: anywhere; }
table { background: var(--ink); }
td span { font-size: .9375rem; color: #d2d6e6; }
thead th, tbody th { font-size: 1rem; }
.makeup-note { align-items: flex-start; }
.story-card { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 24px; align-items: start; padding: 24px; }
.story-card > .media-thumb { margin: 0; }
.story-copy { padding: 0; }
.middle-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
blockquote { display: grid; grid-template-columns: 150px minmax(0, 1fr); grid-column: 1 / -1; gap: 24px; align-items: start; }
blockquote .promise-thumb { margin: 0; }
blockquote p { font-size: 1.25rem; line-height: 1.8; }
.media-thumb span, .channel-label, .story-tag { font-size: .875rem; line-height: 1.6; }
.pathway-list small { font-size: .9375rem; }
.video-frame { aspect-ratio: 16 / 9; padding-top: 0; }
.image-modal { max-height: 92dvh; padding: 52px 12px 12px; overflow: auto; }
.image-modal figure { display: block; padding: 0; }
.image-modal img { height: auto; max-height: 70dvh; object-fit: contain; }
.image-modal figcaption { font-size: 1rem; }
.modal-close { top: 4px; right: 8px; width: 44px; height: 44px; }
body:has(.image-modal[open]) { overflow: hidden; }
footer { flex-wrap: wrap; }
footer > a { flex-shrink: 1; }
@media (max-width: 75rem) {
  .story-grid { grid-template-columns: minmax(0, 1fr); }
  .date-layout { grid-template-columns: minmax(0, 1fr); }
  .date-poster { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 20px; }
  .date-poster strong, .date-poster p, .date-poster small { margin: 0; }
}
@media (max-width: 60rem) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr); padding-top: 28px; }
  .hero-video { order: -1; }
  .section-heading, .middle-overview, .pathways { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .feedback-grid { grid-template-columns: minmax(0, 1fr); }
  /* On small screens every photo gets its own full-width row. */
  .story-card, blockquote, .split-feature, .booth-band { grid-template-columns: minmax(0, 1fr); gap: 20px; align-items: start; }
  .media-thumb, .feature-image .media-thumb, .story-card > .media-thumb, blockquote .promise-thumb, .booth-band > .booth-thumb { width: 100%; margin: 0; }
  .hero-thumb { margin-top: 24px; }
  .source-photo.media-thumb { margin-top: 38px; }
  .feature-image .media-thumb { position: static; }
  .media-thumb img, .feature-image img { height: auto; aspect-ratio: auto; object-fit: contain; }
  .booth-band { padding: 24px; }
  .booth-band > div { padding: 0; }
  /* Preserve the single schedule while reflowing each time slot into a card. */
  table { display: block; border: 0; border-radius: 0; table-layout: auto; }
  caption { display: block; }
  thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  tbody { display: grid; gap: 20px; }
  tbody tr { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid #ffffff40; border-radius: 16px; }
  tbody th { grid-column: 1 / -1; border: 0; border-bottom: 1px solid #ffffff30; padding: 14px 18px; }
  tbody td { border: 0; padding: 16px 18px; }
  td::before { content: attr(data-day); display: block; margin-bottom: 6px; color: var(--yellow); font-size: 1rem; }
  tbody tr td:nth-child(n+4) { border-top: 1px solid #ffffff30; }
  tbody tr td:nth-child(even) { border-right: 1px solid #ffffff30; }
  .snapshot { margin: 0; }
}
@media (max-width: 40rem) {
  .hero { gap: 24px; padding-inline: 16px; }
  .section { padding: 44px 16px; }
  .story-grid { grid-template-columns: minmax(0, 1fr); }
  .story-card, blockquote, .split-feature, .booth-band { gap: 20px; }
  .story-card, .channel-card, .building-plan, blockquote { padding: 20px; }
  .booth-band { margin-inline: 16px; padding: 20px; }
  .booth-band > div { padding: 0; }
  .booth-band > .booth-thumb { margin: 0; width: 100%; }
  .feature-image .media-thumb, .story-card > .media-thumb, blockquote .promise-thumb { width: 100%; }
  .feature-image .media-thumb { position: static; }
  .channel-card { padding: 16px; }
  .story-copy h3, .channel-card h3 { font-size: 1.25rem; }
  blockquote p { font-size: 1.0625rem; }
  .booth-band h2 { font-size: 1.375rem; }
  .media-thumb { padding: 4px; }
  .snapshot { grid-template-columns: minmax(0, 1fr); }
  .snapshot > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .makeup-note { padding: 16px; gap: 10px; }
  .floor-plan { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .floor-plan .support-space:last-child { grid-column: 1 / -1; }
  .image-modal figure { padding: 0; }
}
@media (max-width: 23rem) {
  tbody tr { grid-template-columns: minmax(0, 1fr); }
  tbody tr td:nth-child(n) { border-right: 0; border-bottom: 0; border-top: 1px solid #ffffff30; }
  tbody tr td:nth-child(2) { border-top: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
