:root {
  --bg: #f7f8f3;
  --surface: #ffffff;
  --surface-2: #eaf0ff;
  --surface-3: #eef8c9;
  --surface-4: #f8ded6;
  --ink: #152344;
  --muted: #5a6680;
  --line: rgba(21, 35, 68, .15);
  --brand: #234c9f;
  --brand-dark: #193b80;
  --on-brand: #ffffff;
  --lime: #d8f36a;
  --coral: #f2846b;
  --shadow: 0 24px 70px rgba(35, 76, 159, .14);
  --radius-card: 26px;
  --radius-control: 12px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #10182d;
    --surface: #17213b;
    --surface-2: #1c2b50;
    --surface-3: #263925;
    --surface-4: #472d32;
    --ink: #f4f6ff;
    --muted: #b9c2d6;
    --line: rgba(244, 246, 255, .15);
    --brand: #86a9f4;
    --brand-dark: #a8c0f7;
    --on-brand: #10182d;
    --lime: #c5dd67;
    --coral: #e37c65;
    --shadow: 0 24px 70px rgba(0, 0, 0, .3);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Avenir Next", Avenir, "Segoe UI Variable Text", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 124px 0; }
.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;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--on-brand);
  background: var(--brand);
  border-radius: var(--radius-control);
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI Variable Display", sans-serif;
  line-height: 1.02;
  letter-spacing: -.045em;
}
h1 {
  max-width: 15ch;
  margin-bottom: 26px;
  font-size: clamp(54px, 6.4vw, 92px);
  line-height: .96;
}
h2 {
  max-width: 14ch;
  margin-bottom: 22px;
  font-size: clamp(40px, 5vw, 68px);
}
h3 { margin-bottom: 10px; font-size: clamp(23px, 2.4vw, 32px); }

.eyebrow {
  margin: 0 0 20px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  color: var(--on-brand);
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: var(--radius-control);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s, box-shadow .25s;
}
.button:hover, .button:focus-visible {
  background: var(--brand-dark);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--brand) 24%, transparent);
  transform: translateY(-2px);
}
.button:active { transform: translateY(1px) scale(.985); }
.button-small { min-height: 42px; padding-inline: 17px; }
.button-full { width: 100%; }

.announcement {
  color: #172443;
  background: var(--lime);
  font-size: 12px;
  font-weight: 750;
}
.announcement-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.announcement-inner span, .announcement-inner a { display: inline-flex; align-items: center; gap: 7px; }
.announcement a { text-decoration: underline; text-underline-offset: 3px; }
.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.brand img { width: 48px; height: 48px; flex: 0 0 48px; }
.brand-type strong, .brand-type small { display: block; }
.brand-type strong { font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif; font-size: 18px; letter-spacing: -.03em; }
.brand-type small { margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 750; }
.nav-links > a:not(.button) {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links > a:not(.button):hover, .nav-links > a:not(.button):focus-visible { color: var(--brand); border-color: var(--brand); }
.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: calc(100dvh - 108px);
  display: grid;
  align-items: center;
  padding: 58px 0 82px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -150px;
  left: 44%;
  border: 56px solid var(--surface-3);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(44px, 7vw, 96px); }
.hero-copy { position: relative; z-index: 2; }
.hero-lede { max-width: 42ch; margin-bottom: 30px; color: var(--muted); font-size: 19px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 22px; }
.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.hero-collage {
  position: relative;
  min-height: 640px;
}
.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 7px solid var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { inset: 28px 0 40px 11%; transform: rotate(1.3deg); }
.hero-photo-small { z-index: 2; width: 38%; height: 43%; left: -2%; bottom: 0; transform: rotate(-5deg); }
.hero-stamp {
  position: absolute;
  z-index: 3;
  width: 126px;
  height: 126px;
  top: 0;
  right: -12px;
  display: grid;
  place-content: center;
  gap: 3px;
  color: #152344;
  background: var(--lime);
  border: 7px solid var(--surface);
  border-radius: 50%;
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(7deg);
}
.hero-stamp i { font-size: 24px; }
.hero-stamp span { font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif; font-size: 14px; line-height: 1.05; }

.quick-facts { padding: 0 0 48px; }
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 50px rgba(35, 76, 159, .08);
}
.fact {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
  padding: 26px;
  border-right: 1px solid var(--line);
}
.fact:last-child { border-right: 0; }
.fact i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--surface-2);
  border-radius: var(--radius-control);
  font-size: 23px;
}
.fact:nth-child(2) i { background: var(--surface-3); }
.fact:nth-child(3) i { background: var(--surface-4); }
.fact p { margin: 0; }
.fact strong, .fact span { display: block; }
.fact strong { font-size: 17px; }
.fact span { color: var(--muted); font-size: 12px; }

.section-intro { max-width: 760px; margin-bottom: 56px; }
.section-intro p, .program-header p, .day-title p, .gallery-copy p, .faq-heading p { max-width: 55ch; margin-bottom: 0; color: var(--muted); font-size: 18px; }
.approach-grid { display: grid; grid-template-columns: 1.14fr .86fr; gap: 22px; }
.approach-feature {
  display: grid;
  grid-template-rows: minmax(390px, 1fr) auto;
  overflow: hidden;
  background: var(--surface-2);
  border-radius: var(--radius-card);
}
.approach-visual { min-height: 390px; overflow: hidden; }
.approach-visual img { width: 100%; height: 100%; object-fit: cover; }
.approach-feature-copy { padding: 34px; }
.approach-feature-copy p, .approach-item p { margin-bottom: 0; color: var(--muted); }
.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--on-brand);
  background: var(--brand);
  border-radius: var(--radius-control);
  font-size: 25px;
}
.approach-stack { display: grid; gap: 14px; }
.approach-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 19px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}
.approach-item:nth-child(2) { background: var(--surface-3); }
.approach-item:nth-child(3) { background: var(--surface-4); }
.approach-item .icon-box { margin: 0; }
.approach-item h3 { font-size: 25px; }

.activity-marquee {
  overflow: hidden;
  color: #152344;
  background: var(--lime);
  border-block: 1px solid rgba(21,35,68,.12);
}
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 17px 0;
  animation: marquee 26s linear infinite;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 8px; font-weight: 850; white-space: nowrap; }
.marquee-track i { font-size: 21px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.programs { background: var(--surface-2); }
.program-header { max-width: 760px; margin-bottom: 54px; }
.program-grid { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: auto auto; gap: 18px; }
.program {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}
.program > i {
  margin-bottom: auto;
  color: var(--brand);
  font-size: 40px;
}
.program-age {
  margin: 24px 0 10px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.program p { max-width: 47ch; margin-bottom: 0; color: var(--muted); }
.program a { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-weight: 850; }
.program-primary {
  grid-row: 1 / 3;
  min-height: 660px;
  color: #fff;
  background: #234c9f;
  border-color: #234c9f;
}
.program-primary > i, .program-primary .program-age, .program-primary a { color: var(--lime); }
.program-primary h3 { max-width: 8ch; font-size: clamp(46px, 5vw, 70px); }
.program-primary p { color: rgba(255,255,255,.78); font-size: 18px; }
.program-transition { background: var(--surface-3); }
.program-parent { background: var(--surface-4); }
.program-summer {
  grid-column: 1 / -1;
  min-height: 250px;
  display: grid;
  grid-template-columns: 74px .45fr 1fr;
  align-items: center;
  column-gap: 30px;
  background: var(--surface);
}
.program-summer > i { margin: 0; }
.program-summer .program-age { grid-column: 2; margin-top: 0; }
.program-summer h3 { grid-column: 2; }
.program-summer p { grid-column: 3; grid-row: 1 / 4; align-self: center; }

.day { background: var(--surface); }
.day-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(48px, 8vw, 110px); align-items: center; }
.day-media { min-height: 720px; overflow: hidden; border-radius: var(--radius-card); box-shadow: -18px 18px 0 var(--surface-4); }
.day-media img { width: 100%; height: 100%; min-height: 720px; object-fit: cover; }
.day-title { margin-bottom: 30px; }
.day-list { margin: 0; padding: 0; list-style: none; }
.day-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.day-list li > span { color: var(--brand); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.day-list li > div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; }
.day-list i { color: var(--brand); font-size: 24px; }
.day-list p { margin: 0; color: var(--muted); }
.day-list strong { display: block; color: var(--ink); }

.safety {
  color: #fff;
  background: #234c9f;
}
.safety-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.big-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: #152344;
  background: var(--lime);
  border-radius: var(--radius-control);
  font-size: 38px;
}
.safety-heading h2 { max-width: 11ch; margin-bottom: 0; }
.safety-points article { padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.safety-points strong { display: block; margin-bottom: 7px; font-size: 20px; }
.safety-points p { max-width: 54ch; margin: 0; color: rgba(255,255,255,.74); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  grid-template-rows: auto auto;
  gap: 28px 36px;
  align-items: end;
}
.gallery-grid figure { margin: 0; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-card); }
.gallery-grid figcaption { padding-top: 12px; color: var(--muted); font-size: 13px; }
.gallery-a { grid-row: 1 / 3; }
.gallery-a img { min-height: 720px; }
.gallery-copy { align-self: start; padding-top: 24px; }
.gallery-b { width: 78%; justify-self: end; }
.gallery-b img { min-height: 410px; }

.about { background: var(--surface-3); }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: end; }
.about-copy > p:not(.eyebrow) { max-width: 63ch; color: var(--muted); font-size: 18px; }
.about-copy blockquote { max-width: 22ch; margin: 42px 0 12px; font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif; font-size: clamp(26px, 3vw, 40px); line-height: 1.15; letter-spacing: -.035em; }
.about-copy cite { color: var(--brand); font-style: normal; font-weight: 800; }
.about-note {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  color: #fff;
  background: #234c9f;
  border-radius: var(--radius-card);
}
.about-note i { margin-bottom: auto; color: var(--lime); font-size: 48px; }
.about-note strong { max-width: 12ch; font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif; font-size: 30px; line-height: 1.1; }
.about-note p { margin: 14px 0 0; color: rgba(255,255,255,.74); }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.faq-heading { position: sticky; top: 150px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  font-size: 21px;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { color: var(--brand); transition: transform .25s var(--ease); }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { max-width: 58ch; margin: -4px 0 24px; color: var(--muted); }

.tour { padding-top: 72px; }
.tour-panel {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 74px;
  padding: 72px;
  overflow: hidden;
  background: var(--surface-4);
  border-radius: var(--radius-card);
}
.tour-panel::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -90px;
  bottom: -90px;
  border: 42px solid var(--lime);
  border-radius: 50%;
  pointer-events: none;
}
.tour-copy, .tour-form { position: relative; z-index: 1; }
.tour-copy h2 { max-width: 11ch; }
.tour-copy > p:not(.eyebrow) { max-width: 42ch; color: var(--muted); }
.contact-list { display: grid; gap: 10px; margin-top: 30px; }
.contact-list a { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 750; }
.tour-form { padding: 34px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow); }
.field { display: grid; gap: 7px; margin-bottom: 17px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-size: 13px; font-weight: 800; }
input, select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid color-mix(in srgb, var(--muted) 48%, transparent);
  border-radius: var(--radius-control);
  outline: none;
}
input:focus, select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 20%, transparent); }
.form-status { margin: 12px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.form-status.success { color: var(--brand); font-weight: 800; }

.footer { padding: 68px 0 28px; color: #dce4ff; background: #112a61; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr .7fr; gap: 54px; }
.footer .brand-type strong { color: #fff; }
.footer .brand-type small { color: #bbc9eb; }
.footer-brand > p { max-width: 34ch; margin: 20px 0 0; color: #bbc9eb; font-size: 14px; }
.footer-column { display: grid; align-content: start; gap: 8px; font-size: 14px; }
.footer-column > strong { margin-bottom: 8px; color: #fff; }
.footer-column a, .footer-column span { color: #bbc9eb; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 22px;
  color: #91a5d6;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 12px;
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

.credits-main { max-width: 820px; min-height: 100dvh; padding-top: 100px; padding-bottom: 100px; }
.credits-main h1 { margin-top: 54px; }
.credits-main > p { max-width: 64ch; color: var(--muted); font-size: 18px; }
.credits-main ul { display: grid; gap: 14px; margin-top: 36px; padding-left: 22px; }
.credits-main a { color: var(--brand); text-decoration: underline; text-underline-offset: 4px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s var(--ease) var(--delay, 0s), transform .72s var(--ease) var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .shell { width: min(100% - 36px, 900px); }
  .section { padding: 96px 0; }
  .nav-links { gap: 18px; }
  .nav-links > a:not(.button) { display: none; }
  .hero-grid, .day-grid, .safety-layout, .about-grid, .faq-grid, .tour-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { max-width: 700px; }
  .hero-collage { min-height: 620px; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .approach-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr 1fr; }
  .program-primary { grid-column: 1 / -1; grid-row: auto; min-height: 540px; }
  .program-summer { grid-template-columns: 60px .6fr 1fr; }
  .day-media, .day-media img { min-height: 620px; }
  .safety-layout, .about-grid, .faq-grid, .tour-panel { gap: 58px; }
  .faq-heading { position: static; }
  .tour-panel { padding: 54px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 620px); }
  .section { padding: 76px 0; }
  h1 { max-width: 11ch; font-size: clamp(50px, 15vw, 72px); }
  h2 { font-size: clamp(38px, 11vw, 56px); }
  .announcement-inner { justify-content: center; }
  .announcement-inner > a { display: none; }
  .menu-button { display: grid; }
  .nav-links {
    position: absolute;
    top: 108px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; gap: 0; }
  .nav-links > a:not(.button) { display: block; padding: 12px 8px; border-bottom: 1px solid var(--line); }
  .nav-links .button { margin-top: 14px; }
  .hero { padding-top: 42px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .hero-collage { min-height: 500px; }
  .hero-photo-main { inset: 20px 0 32px 7%; }
  .hero-photo-small { width: 42%; height: 38%; left: -2%; }
  .hero-stamp { width: 102px; height: 102px; right: -3px; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:nth-child(3) { border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .approach-feature { grid-template-rows: 330px auto; }
  .approach-visual { min-height: 330px; }
  .approach-item { grid-template-columns: 48px 1fr; padding: 23px; }
  .program-grid { grid-template-columns: 1fr; }
  .program-primary { grid-column: auto; min-height: 520px; }
  .program-summer { grid-column: auto; min-height: 320px; display: flex; }
  .program-summer > i { margin-bottom: auto; }
  .program-summer .program-age, .program-summer h3, .program-summer p { grid-column: auto; grid-row: auto; }
  .day-media, .day-media img { min-height: 470px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-a, .gallery-copy, .gallery-b { grid-column: auto; grid-row: auto; }
  .gallery-a img { min-height: 500px; }
  .gallery-b { width: 78%; }
  .about-note { min-height: 300px; }
  .tour { padding-top: 24px; }
  .tour-panel { width: 100%; padding: 40px 22px; border-radius: 0; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .brand-type strong { font-size: 16px; }
  .brand-type small { font-size: 9px; }
  .brand img { width: 44px; height: 44px; flex-basis: 44px; }
  .hero-collage { min-height: 430px; }
  .hero-photo { border-width: 5px; }
  .hero-stamp { width: 88px; height: 88px; border-width: 5px; }
  .hero-stamp span { font-size: 12px; }
  .day-list li { grid-template-columns: 74px 1fr; gap: 10px; }
  .day-list li > div { grid-template-columns: 26px 1fr; }
  .day-list i { font-size: 20px; }
  .gallery-b { width: 90%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { transform: none; }
}
