:root {
  --navy: #102d4a;
  --navy-deep: #081b2f;
  --navy-soft: #e9f0f5;
  --green: #2f8a68;
  --green-deep: #1f6e52;
  --green-soft: #ecf6f1;
  --wine: #8c1f3f;
  --wine-deep: #5e112b;
  --gold: #c7a45c;
  --paper: #ffffff;
  --mist: #f5f7f8;
  --ink: #172536;
  --muted: #657386;
  --line: rgba(16, 45, 74, 0.15);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 56px rgba(8, 27, 47, 0.14);
  --shadow-soft: 0 14px 34px rgba(8, 27, 47, 0.1);
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.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;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(8, 27, 47, 0.08);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 7px;
  background: linear-gradient(145deg, var(--wine), var(--navy));
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.25;
}

.brand-name {
  color: var(--navy-deep);
  font-weight: 900;
  font-size: 15px;
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  background: var(--green-soft);
  color: var(--green-deep);
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--wine);
  color: #fff;
  box-shadow: 0 10px 26px rgba(140, 31, 63, 0.22);
}

.site-nav .nav-cta:hover {
  background: var(--wine-deep);
  color: #fff;
  transform: translateY(-1px);
}

.site-nav-static {
  position: static;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 27, 47, 0.95) 0%, rgba(8, 27, 47, 0.82) 42%, rgba(8, 27, 47, 0.3) 100%),
    linear-gradient(0deg, rgba(8, 27, 47, 0.62), rgba(8, 27, 47, 0.18));
}

.hero-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 96px 0 64px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 30px;
  height: 2px;
  flex: 0 0 30px;
  background: currentColor;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1.18;
  font-weight: 900;
}

.hero h1 span {
  color: #f7efe0;
}

.hero-kicker {
  margin: 18px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 14px;
  line-height: 1;
  transition: transform 0.2s ease;
}

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

.button:hover b {
  transform: translateX(3px);
}

.button-primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 18px 34px rgba(140, 31, 63, 0.28);
}

.button-primary:hover {
  background: var(--wine-deep);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.button-ghost:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}

.button-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: #fff;
}

.button-outline b {
  background: var(--navy-soft);
}

.button-outline:hover {
  background: var(--navy);
  color: #fff;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 900px;
  margin: 48px 0 0;
  padding: 1px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.hero-facts div {
  padding: 18px 20px;
  background: rgba(8, 27, 47, 0.58);
  backdrop-filter: blur(8px);
}

.hero-facts dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.trust-strip {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.trust-grid div {
  min-height: 118px;
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}

.trust-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
}

.section-white {
  background: #fff;
}

.section-muted {
  background: var(--mist);
}

.section-navy {
  background: linear-gradient(140deg, var(--navy-deep), var(--navy));
  color: #fff;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.two-column.align-start {
  align-items: start;
}

.section-head {
  max-width: 620px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head.centered .section-label {
  justify-content: center;
}

.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.35;
}

.section-head p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.section-head.light h2,
.section-head.light p:not(.section-label) {
  color: #fff;
}

.section-head.light p:not(.section-label) {
  color: rgba(255, 255, 255, 0.82);
}

.body-copy p {
  margin: 0;
  color: #36475b;
  font-weight: 600;
}

.body-copy p + p {
  margin-top: 18px;
}

.outcome-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: stretch;
  margin-top: 48px;
}

.outcome-photo {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.outcome-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outcome-list {
  display: grid;
  gap: 18px;
}

.feature-card {
  position: relative;
  padding: 28px 30px 28px 88px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 27, 47, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 138, 104, 0.42);
  box-shadow: var(--shadow-soft);
}

.feature-card .number {
  position: absolute;
  left: 26px;
  top: 30px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 900;
}

.feature-card h3,
.speaker-card h3,
.insight-lead h3,
.list-panel h3,
.value-grid h3,
.staff-grid h3,
.day-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.45;
}

.feature-card p {
  margin: 10px 0 0;
  color: #46576a;
  font-size: 15px;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.speaker-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, background 0.2s ease;
}

.speaker-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
}

.speaker-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--navy);
}

.speaker-card > div {
  padding: 24px;
}

.speaker-card .role {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(199, 164, 92, 0.16);
  color: #f0dba8;
  font-size: 12px;
  font-weight: 900;
}

.speaker-card h3 {
  color: #fff;
}

.speaker-card .affiliation {
  margin: 7px 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.speaker-card p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.insight-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  margin-top: 42px;
  align-items: start;
}

.insight-lead {
  padding: 34px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.insight-lead h3 {
  color: #fff;
  font-family: var(--serif);
  font-size: 27px;
}

.insight-lead p {
  color: rgba(255, 255, 255, 0.84);
}

.quote {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  font-weight: 900;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.number-grid div {
  min-height: 152px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 27, 47, 0.05);
}

.number-grid strong {
  display: block;
  color: var(--wine);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 900;
}

.number-grid span {
  display: block;
  margin-top: 12px;
  color: #45566a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.section-photo {
  isolation: isolate;
  color: #fff;
  background: var(--navy-deep);
}

.section-bg,
.section-photo-shade {
  position: absolute;
  inset: 0;
}

.section-bg {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-photo-shade {
  z-index: -1;
  background: linear-gradient(120deg, rgba(8, 27, 47, 0.92), rgba(16, 45, 74, 0.78));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.day-card {
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.day-card h3 {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
}

.day-card ol {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.day-card li {
  position: relative;
  min-height: 48px;
  padding-left: 62px;
  counter-increment: step;
}

.day-card li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 4px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.day-card time {
  display: block;
  color: var(--wine);
  font-size: 14px;
  font-weight: 900;
}

.day-card span {
  display: block;
  margin-top: 3px;
  color: #44556a;
  font-size: 14px;
  line-height: 1.7;
}

.check-panels {
  display: grid;
  gap: 18px;
}

.list-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(8, 27, 47, 0.05);
}

.list-panel.accent {
  border-top: 4px solid var(--wine);
}

.list-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list-panel li {
  position: relative;
  padding-left: 28px;
  color: #3d4d61;
  font-weight: 700;
}

.list-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px rgba(47, 138, 104, 0.36);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.value-grid article {
  min-height: 230px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.value-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--wine);
  font-weight: 900;
  font-size: 13px;
}

.value-grid p {
  margin: 12px 0 0;
  color: #526275;
  font-size: 14px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.staff-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.staff-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(140, 31, 63, 0.32);
  box-shadow: var(--shadow-soft);
}

.staff-grid p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.staff-grid span {
  display: inline-flex;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.55;
}

.section-video {
  background: #fff;
}

.video-layout {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: 54px;
  align-items: center;
}

.video-frame {
  width: min(100%, 380px);
  justify-self: end;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-cta {
  background:
    linear-gradient(145deg, rgba(245, 247, 248, 0.96), rgba(233, 240, 245, 0.96)),
    url("../img/kyoto-street.jpg") center / cover;
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.detail-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1.35;
}

.detail-copy p:not(.section-label) {
  max-width: 560px;
  color: #46576a;
  font-weight: 700;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.detail-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--wine);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-card dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.detail-card div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.detail-card div:first-child {
  padding-top: 0;
}

.detail-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-card dt {
  color: var(--navy);
  font-weight: 900;
}

.detail-card dd {
  margin: 0;
  color: #34465a;
  font-weight: 800;
  line-height: 1.7;
}

.detail-card small {
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.detail-card a {
  color: var(--wine);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.faq-card {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 27, 47, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-card:hover {
  transform: translateY(-3px);
  border-color: rgba(162, 27, 72, 0.26);
  box-shadow: var(--shadow-soft);
}

.faq-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.45;
}

.faq-card p {
  margin: 12px 0 0;
  color: #46576a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.section-form {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7f8 100%);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: start;
}

.form-copy {
  position: sticky;
  top: 110px;
}

.form-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.35;
}

.form-copy p:not(.section-label) {
  color: #46576a;
  font-weight: 700;
}

.form-proof-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.form-proof-list li {
  position: relative;
  padding-left: 30px;
  color: #35475b;
  font-weight: 800;
  line-height: 1.75;
}

.form-proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--wine);
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px rgba(140, 31, 63, 0.3);
}

.camp-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--wine);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.camp-form.is-submitting {
  opacity: 0.82;
}

.camp-form-head {
  margin-bottom: 24px;
}

.camp-form-head h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.35;
}

.camp-form-head p:not(.section-label) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-status {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(140, 31, 63, 0.25);
  border-radius: 8px;
  background: #fff7f9;
  color: var(--wine);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.form-field-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.camp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label,
.form-consent {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.form-field label span {
  margin-left: 6px;
  color: var(--wine);
  font-size: 12px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cdd8df;
  border-radius: 6px;
  background: #fff;
  color: #1c2c3f;
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(140, 31, 63, 0.62);
  box-shadow: 0 0 0 4px rgba(140, 31, 63, 0.1);
}

.form-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf8;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--wine);
}

.form-consent span {
  color: #34465a;
  font-size: 13px;
  line-height: 1.75;
}

.form-submit {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.form-submit .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-submit .button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-submit p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.thanks-hero {
  min-height: 72vh;
  padding: 150px 0 88px;
  background:
    linear-gradient(145deg, rgba(8, 27, 47, 0.88), rgba(17, 41, 66, 0.76)),
    url("../img/kyoto-street.jpg") center / cover;
  display: grid;
  align-items: center;
}

.thanks-card {
  max-width: 880px;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 5px solid var(--wine);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.thanks-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 13px;
  border: 1px solid rgba(47, 138, 104, 0.25);
  border-radius: 999px;
  background: #f3faf6;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
}

.thanks-status::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 138, 104, 0.14);
}

.thanks-card h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1.35;
}

.thanks-card p:not(.section-label) {
  max-width: 700px;
  color: #425468;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.section-thanks-next {
  background: #f5f7f8;
}

.section-official-banner {
  padding-top: 0;
  background: #f5f7f8;
}

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

.thanks-next-grid article {
  min-height: 220px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(8, 27, 47, 0.05);
}

.thanks-next-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.thanks-next-grid h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
}

.thanks-next-grid p {
  margin: 12px 0 0;
  color: #526275;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.official-banner {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 14px;
  min-height: 320px;
  padding: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(8, 27, 47, 0.92), rgba(8, 27, 47, 0.72) 54%, rgba(140, 31, 63, 0.74)),
    url("../img/meeting-room.jpg") center / cover;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.official-banner::after {
  content: "";
  position: absolute;
  inset: auto 34px 34px auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  z-index: -1;
}

.official-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(8, 27, 47, 0.22);
}

.official-banner__label {
  justify-self: start;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.official-banner strong {
  max-width: 620px;
  color: #fff;
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.25;
}

.official-banner em {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.official-banner b {
  justify-self: start;
  margin-top: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.site-footer {
  padding: 44px 0;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.site-footer strong {
  color: #fff;
  font-size: 18px;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--gold);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .site-header {
    padding-inline: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    justify-content: center;
    min-height: 48px;
    border-radius: 6px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .site-nav-static {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-facts,
  .trust-grid,
  .speaker-grid,
  .timeline,
  .faq-grid,
  .thanks-next-grid,
  .value-grid,
  .staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid div:nth-child(2),
  .trust-grid div:nth-child(4) {
    border-right: 0;
  }

  .trust-grid div:nth-child(1),
  .trust-grid div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .two-column,
  .outcome-layout,
  .insight-grid,
  .video-layout,
  .form-layout,
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .form-copy {
    position: static;
  }

  .outcome-photo {
    min-height: 360px;
  }

  .video-frame {
    justify-self: center;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .container,
  .hero-inner {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-sub {
    font-size: 11px;
  }

  .site-nav {
    top: 74px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 76px 0 44px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-kicker {
    font-size: 20px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .detail-actions,
  .thanks-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .hero-facts,
  .trust-grid,
  .speaker-grid,
  .timeline,
  .number-grid,
  .faq-grid,
  .thanks-next-grid,
  .value-grid,
  .staff-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 16px;
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .section-head h2,
  .detail-copy h2,
  .form-copy h2,
  .thanks-card h1 {
    font-size: 30px;
  }

  .section-head.centered {
    text-align: left;
  }

  .section-head.centered .section-label {
    justify-content: flex-start;
  }

  .outcome-photo {
    min-height: 260px;
  }

  .feature-card {
    padding: 72px 22px 24px;
  }

  .feature-card .number {
    left: 22px;
    top: 22px;
  }

  .insight-lead {
    padding: 26px 22px;
  }

  .insight-lead h3 {
    font-size: 23px;
  }

  .day-card,
  .detail-card,
  .faq-card,
  .camp-form,
  .thanks-card,
  .list-panel {
    padding: 24px 20px;
  }

  .thanks-hero {
    min-height: auto;
    padding: 104px 0 60px;
  }

  .official-banner {
    min-height: 300px;
    padding: 28px 22px;
  }

  .official-banner strong {
    font-size: 30px;
  }

  .official-banner em {
    font-size: 14px;
  }

  .site-nav-static a:not(.nav-cta) {
    display: none;
  }

  .camp-form-grid {
    grid-template-columns: 1fr;
  }

  .camp-form-head h3 {
    font-size: 23px;
  }

  .form-submit .button {
    justify-self: stretch;
  }

  .day-card li {
    padding-left: 54px;
  }

  .detail-card div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-inner {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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

  .brand-name {
    max-width: 148px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
