:root {
  --paper: #f7f5ef; --white: #fffef9; --ink: #242823; --muted: #6b7069; --green: #315f4c;
  --green-dark: #24493a; --green-pale: #dfe8df; --line: #d9ddd3; --sand: #e7dfcf;
  --blue: #5f7892; --purple: #796a88; --orange: #a56e43;
  --font-body: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  --font-display: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --header-height: 80px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
body { margin: 0; padding-bottom: calc(78px + env(safe-area-inset-bottom)); color: var(--ink); background: var(--paper); font-family: var(--font-body); font-size: 16px; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
p { line-height: 1.9; }
[id] { scroll-margin-top: calc(var(--header-height) + 24px); }
a:focus-visible, summary:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
::selection { color: white; background: var(--green); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; min-height: var(--header-height); padding: 12px max(32px, calc((100vw - 1320px) / 2)); background: rgba(247,245,239,.98); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; letter-spacing: .06em; }
.brand-mark { display: grid; place-items: center; width: 30px; height: 30px; color: var(--green); border: 1px solid var(--green); border-radius: 50%; font-size: 13px; }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 500; }
.desktop-nav a { display: inline-flex; align-items: center; min-height: 44px; white-space: nowrap; transition: opacity .2s ease; }
.desktop-nav a:hover { opacity: .65; }
.desktop-nav .nav-cta { padding: 13px 24px; color: white; background: var(--green); }

.hero { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); min-height: 640px; padding: 104px max(32px, calc((100vw - 1320px) / 2)) 36px; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 56px 5vw 56px 0; }
.eyebrow, .section-index { margin: 0; color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: .17em; }
.eyebrow { margin-bottom: 34px; }
.hero h1, .section-heading h2, .gallery h2, .final-cta h2 { margin: 0; font-family: var(--font-display); font-weight: 500; letter-spacing: .02em; }
.hero h1 { max-width: 15em; font-size: clamp(38px, 3.35vw, 48px); line-height: 1.52; }
.hero h1 span { display: block; }
.hero-sub { margin: 38px 0 0; font-size: clamp(18px, 1.55vw, 23px); line-height: 1.9; }
.hero-note { margin: 20px 0 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 210px; padding: 18px 20px; border: 1px solid var(--green); font-size: 14px; font-weight: 600; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.button-primary { color: white; background: var(--green); }
.button-primary:hover { background: var(--green-dark); }
.button-secondary { background: transparent; }
.button-secondary:hover { color: white; background: var(--green); }
.hero-visual { position: relative; min-height: 480px; margin: 0; overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(31, 42, 35, .24)); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-visual figcaption { position: absolute; z-index: 1; right: 24px; bottom: 22px; color: white; font-size: 12px; letter-spacing: .1em; }

.benefits { display: grid; grid-template-columns: repeat(6, 1fr); width: min(100% - 64px, 1320px); margin: 0 auto 96px; border-block: 1px solid var(--line); }
.benefits p { display: flex; flex-direction: column; justify-content: center; gap: 5px; min-height: 88px; margin: 0; padding: 18px 16px; border-right: 1px solid var(--line); }
.benefits p:last-child { border-right: 0; }
.benefits strong { color: var(--ink); font-family: var(--font-display); font-size: 16px; font-weight: 700; line-height: 1.55; }
.benefits span { color: var(--green); font-size: 11px; font-weight: 600; letter-spacing: .04em; }

.section { width: min(100% - 64px, 1180px); margin-inline: auto; padding-block: 94px; }
.section-heading { display: grid; gap: 22px; }
.section-heading h2, .gallery h2 { font-size: clamp(34px, 3.7vw, 48px); line-height: 1.5; }
.heading-wide { max-width: 850px; }
.mobile-only { display: none; }
.text-link { display: inline-flex; justify-content: space-between; gap: 24px; padding-bottom: 8px; border-bottom: 1px solid currentColor; color: var(--green); font-size: 14px; font-weight: 600; }

.concerns { border-top: 1px solid var(--line); }
.concern-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 64px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.concern-list li { min-height: 180px; padding: 24px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.concern-list li:nth-child(3n) { border-right: 0; }
.concern-list span { color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.concern-list p { margin: 35px 0 0; font-family: var(--font-display); font-size: 20px; font-weight: 500; line-height: 1.75; }
.concern-answer { display: grid; grid-template-columns: 1.4fr .6fr; gap: 8vw; align-items: end; margin-top: 72px; padding-left: 10vw; }
.concern-answer p { margin: 0; }
.concern-answer .lead { font-family: var(--font-display); font-size: clamp(25px, 2.7vw, 39px); line-height: 1.75; }
.concern-answer > p:last-child { color: var(--muted); font-size: 14px; }

.reasons { display: grid; grid-template-columns: .88fr 1.12fr; gap: 8vw; width: 100%; max-width: none; padding: 0 max(32px, calc((100vw - 1320px) / 2)) 112px 0; }
.reason-image { min-height: 600px; }
.reason-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.reason-copy { align-self: center; }
#reasons-title { font-size: clamp(30px, 3.4vw, 48px); }
#reasons-title span { display: block; white-space: nowrap; }
.reason-intro { max-width: 580px; margin: 44px 0 54px; font-size: 16px; line-height: 2; }
.reason-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.reason-list li { display: grid; grid-template-columns: 46px 1fr; gap: 12px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.reason-list span { padding-top: 4px; color: var(--green); font-size: 10px; font-weight: 700; }
.reason-list p { margin: 0; color: var(--muted); font-size: 14px; }
.reason-list strong { display: block; margin-bottom: 6px; color: var(--ink); font-family: var(--font-display); font-size: 19px; font-weight: 500; }

.price-section { width: 100%; max-width: none; padding-inline: max(32px, calc((100vw - 1180px) / 2)); color: white; background: var(--green); }
.price-section .section-index { color: #c6d4c9; }
.price-lead { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 8vw; margin-top: 62px; padding-bottom: 54px; border-bottom: 1px solid rgba(255,255,255,.25); }
.price-lead p { margin: 0; }
.price-main { font-size: 20px; }
.price-main span { display: block; margin-bottom: 10px; color: #c6d4c9; font-size: 12px; font-weight: 600; letter-spacing: .08em; }
.price-main strong { display: block; font-family: var(--font-display); font-size: clamp(38px, 5vw, 66px); font-weight: 500; }
.price-lead > p:last-child { color: rgba(255,255,255,.75); font-size: 14px; }
.price-fixed-costs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,.25); }
.price-fixed-costs p { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin: 0; padding: 26px 36px 26px 0; }
.price-fixed-costs p:last-child { padding-right: 0; padding-left: 36px; border-left: 1px solid rgba(255,255,255,.25); }
.price-fixed-costs span { color: rgba(255,255,255,.72); font-size: 13px; }
.price-fixed-costs strong { font-family: var(--font-display); font-size: 28px; font-weight: 500; }
.price-options { display: grid; grid-template-columns: 1fr 1fr; }
.price-options article { padding: 54px 44px 58px 0; border-right: 1px solid rgba(255,255,255,.25); }
.price-options article:last-child { padding-right: 0; padding-left: 54px; border-right: 0; }
.price-label { margin: 0 0 16px; color: #c6d4c9; font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.price-options h3 { margin: 0 0 14px; font-family: var(--font-display); font-size: 27px; font-weight: 500; }
.price-options article > p:not(.price-label, .ticket-price) { color: rgba(255,255,255,.75); font-size: 14px; }
.price-options .price-option-lead { margin: 24px 0 8px; color: white; font-family: var(--font-display); font-size: 19px; }
.ticket-price { margin: 26px 0 12px; }
.ticket-price strong { font-size: 48px; font-weight: 500; }
.price-options article > .ticket-validity { margin: 16px 0 0; color: #fff; font-size: 13px; font-weight: 600; }
.ticket-notes { display: grid; grid-template-columns: 1.4fr .6fr; border-block: 1px solid rgba(255,255,255,.25); }
.ticket-notes > div { padding: 24px 30px 24px 0; }
.ticket-notes > div:last-child { padding-right: 0; padding-left: 30px; border-left: 1px solid rgba(255,255,255,.25); }
.ticket-notes strong { font-size: 12px; }
.ticket-notes ul { display: flex; flex-wrap: wrap; gap: 6px 22px; margin: 13px 0 0; padding: 0; list-style: none; }
.ticket-notes li { color: rgba(255,255,255,.78); font-size: 13px; }
.ticket-notes li::before { content: "—"; margin-right: 8px; color: #c6d4c9; }
.ticket-notes p { margin: 13px 0 0; color: rgba(255,255,255,.72); font-size: 13px; }
.price-cta { display: flex; justify-content: space-between; align-items: center; gap: 32px; margin-top: 46px; }
.price-cta p { margin: 0; color: rgba(255,255,255,.75); font-size: 13px; }
.price-cta .text-link { color: white; }

.schedule-section { padding-bottom: 96px; }
.schedule-heading { display: flex; justify-content: space-between; align-items: end; }
.schedule-note { max-width: 760px; margin: 32px 0 24px; color: var(--muted); font-size: 14px; }
.weekly-list { border-top: 1px solid var(--line); }
.weekly-row { --lesson-color: var(--green); position: relative; display: grid; grid-template-columns: 86px 180px 1fr; align-items: start; gap: 32px; min-height: 160px; padding: 30px 20px; border-bottom: 1px solid var(--line); }
.weekly-row::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--lesson-color); }
.lesson-blue { --lesson-color: var(--blue); }.lesson-green { --lesson-color: var(--green); }.lesson-purple { --lesson-color: var(--purple); }.lesson-orange { --lesson-color: var(--orange); }
.weekday { display: flex; align-items: baseline; gap: 8px; color: var(--lesson-color); }
.weekday b { font-family: var(--font-display); font-size: 40px; font-weight: 500; }
.weekday span { font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.weekly-time { display: flex; flex-direction: column; gap: 8px; }
.weekly-time strong { font-family: var(--font-display); font-size: 17px; font-weight: 500; }
.weekly-class h3 { margin: 3px 0 0; font-family: var(--font-display); font-size: 24px; font-weight: 500; line-height: 1.5; }
.weekly-class .weekly-purpose { margin: 0; color: var(--lesson-color); font-size: 12px; font-weight: 700; letter-spacing: .03em; }
.weekly-class .weekly-description { max-width: 650px; margin: 9px 0 8px; color: var(--muted); font-size: 14px; font-weight: 400; line-height: 1.8; }
.schedule-cta { display: flex; align-items: center; justify-content: space-between; gap: 38px; margin-top: 38px; }
.schedule-cta p { max-width: 520px; margin: 0; color: var(--muted); font-size: 14px; }

.lessons { width: 100%; max-width: none; padding-inline: max(32px, calc((100vw - 1180px) / 2)); background: var(--white); }
.lesson-top { display: grid; grid-template-columns: 1.3fr .7fr; gap: 7vw; align-items: end; }
.lesson-top > p { margin: 0 0 8px; color: var(--muted); font-size: 14px; }
.lesson-list { margin-top: 70px; border-top: 1px solid var(--line); }
.lesson-item { --lesson-color: var(--green); display: grid; grid-template-columns: 74px 1fr 90px; gap: 25px; align-items: start; padding: 38px 0; border-bottom: 1px solid var(--line); }
.lesson-no, .lesson-duration { color: var(--lesson-color); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.lesson-duration { justify-self: end; }
.lesson-item .purpose { margin: 0 0 8px; color: var(--lesson-color); font-size: 11px; font-weight: 600; }
.lesson-item h3 { margin: 0; font-family: var(--font-display); font-size: clamp(23px, 2.3vw, 32px); font-weight: 500; }
.lesson-item div > p:last-child { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.lessons-button { margin-top: 50px; }

.instructor { display: grid; grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr); gap: 8vw; align-items: center; }
.instructor-photo { position: relative; }
.instructor-photo::before { content: ""; position: absolute; z-index: -1; inset: 9% -8% -6% 12%; background: var(--sand); }
.instructor-photo img { width: 100%; height: auto; aspect-ratio: 659 / 643; object-fit: cover; object-position: center; }
.instructor-copy { max-width: 540px; }
.instructor-name { display: flex; align-items: baseline; gap: 18px; margin: 42px 0 22px; font-family: var(--font-display); font-size: 34px; }
.instructor-name span { color: var(--green); font-family: var(--font-body); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.instructor-lead { font-family: var(--font-display); font-size: 22px; line-height: 1.8; }
.instructor-copy > p:not(.instructor-name, .instructor-lead, .qualification) { color: var(--muted); font-size: 15px; }
.instructor blockquote { margin: 30px 0; padding: 24px 0 24px 28px; border-left: 2px solid var(--green); font-family: var(--font-display); font-size: 18px; line-height: 1.9; }
.qualification { display: flex; gap: 20px; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--green); font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.qualification strong { color: var(--ink); font-size: 13px; letter-spacing: .05em; }

.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: auto 350px; gap: 18px; width: min(100% - 64px, 1240px); margin: 20px auto 0; padding: 72px 0 68px; }
.gallery-heading { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; gap: 0 42px; align-items: end; padding-bottom: 18px; }
.gallery-heading .section-index { grid-column: 1 / -1; }
.gallery-heading h2 { margin: 20px 0 0; }
.gallery-heading .text-link { margin-bottom: 8px; }
.gallery figure { margin: 0; overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main { grid-row: 2; grid-column: 1; min-height: 350px; }.gallery-main img { object-position: center 30%; }
.gallery-side { grid-row: 2; grid-column: 2; }
.gallery-wide { grid-row: 2; grid-column: 3; }

.locations { width: 100%; max-width: none; padding: 82px max(32px, calc((100vw - 1180px) / 2)) 88px; background: var(--white); }
.location-intro { display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; align-items: end; }
.location-intro > p { margin: 0 0 8px; color: var(--muted); font-size: 15px; }
.location-list-label { margin: 54px 0 12px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.location-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.location-list article { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 28px 28px 28px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.location-list article:nth-child(2n) { padding-left: 30px; border-right: 0; }
.location-list span { color: var(--green); font-size: 10px; font-weight: 700; }
.location-list h3 { margin: 0; font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.location-list p { margin: 9px 0 0; color: var(--muted); font-size: 12px; }
.location-footer { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 26px; }
.location-note { max-width: 620px; margin: 0; color: var(--muted); font-size: 13px; }

.first-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 8vw; align-items: start; padding-bottom: 110px; }
.first-photo { position: sticky; top: calc(var(--header-height) + 24px); height: 500px; }
.first-photo img { width: 100%; height: 100%; object-fit: cover; }
.first-lead { margin: 48px 0; font-family: var(--font-display); font-size: 21px; line-height: 1.9; }
.first-list { margin: 0; border-top: 1px solid var(--line); }
.first-list > div { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.first-list dt { color: var(--green); font-size: 12px; font-weight: 700; }
.first-list dd { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.9; }
.visit-flow { margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--line); }
.visit-flow h3 { margin: 0 0 24px; font-family: var(--font-display); font-size: 20px; font-weight: 500; }
.visit-flow ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; padding: 0; list-style: none; }
.visit-flow li { position: relative; padding-top: 18px; border-top: 2px solid var(--green); }
.visit-flow li:not(:last-child)::after { content: ""; position: absolute; top: -2px; right: -16px; width: 8px; height: 8px; border-top: 1px solid var(--green); border-right: 1px solid var(--green); transform: rotate(45deg); }
.visit-flow li > span { color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.visit-flow li p { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.visit-flow li strong { display: block; margin-bottom: 5px; color: var(--ink); font-family: var(--font-display); font-size: 15px; font-weight: 500; }
.cancel-note { margin-top: 42px; padding: 28px 30px; background: var(--green-pale); }
.cancel-note h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 17px; }
.cancel-note p { margin: 0; color: #4c5a51; font-size: 14px; }

.faq { border-top: 1px solid var(--line); }
.faq-list { margin-top: 65px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; display: grid; grid-template-columns: 55px 1fr; gap: 22px; padding: 28px 52px 28px 0; font-family: var(--font-display); font-size: 17px; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; color: var(--green); font-family: var(--font-body); font-size: 24px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq summary span { color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.faq details > p { max-width: 760px; margin: -5px 0 28px 77px; color: var(--muted); font-size: 14px; }

.final-cta { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; color: white; background: var(--green); }
.final-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px max(32px, calc((100vw - 1180px) / 2)); padding-right: 7vw; }
.final-copy .section-index { color: #c6d4c9; }
.final-cta h2 { margin-top: 26px; font-size: clamp(36px, 3.9vw, 52px); line-height: 1.5; }
.final-copy > p:not(.section-index) { margin: 30px 0 0; color: rgba(255,255,255,.76); font-size: 14px; }
.final-actions { display: flex; gap: 12px; margin-top: 42px; }
.button-light { color: var(--green); background: white; border-color: white; }
.button-outline-light { color: white; border-color: rgba(255,255,255,.7); }
.button-outline-light:hover { color: var(--green); background: white; border-color: white; }
.final-image { min-height: 540px; }.final-image img { width: 100%; height: 100%; object-fit: cover; }

.footer { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; padding: 62px max(32px, calc((100vw - 1180px) / 2)) 40px; background: #202820; color: white; }
.footer .brand-mark { color: white; border-color: rgba(255,255,255,.6); }
.footer > p { justify-self: end; margin: 0; color: rgba(255,255,255,.6); font-size: 11px; }
.footer-links { display: flex; gap: 24px; font-size: 12px; }
.footer small { justify-self: end; color: rgba(255,255,255,.45); }
.mobile-cta { position: fixed; z-index: 50; inset: auto 0 0; display: grid; grid-template-columns: minmax(0, 240px) minmax(0, 280px); justify-content: center; padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); background: rgba(247,245,239,.96); border-top: 1px solid var(--line); backdrop-filter: blur(12px); }
.mobile-cta a { display: grid; place-items: center; min-height: 54px; font-size: 14px; font-weight: 700; }
.mobile-line { color: var(--green); border: 1px solid var(--green); }
.mobile-reserve { color: white; background: var(--green); border: 1px solid var(--green); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1.08fr .92fr; }
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .benefits p:nth-child(3) { border-right: 0; }.benefits p:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .reason-image { min-height: 560px; }
  .weekly-row { grid-template-columns: 80px 160px 1fr; gap: 24px; }
}

@media (max-width: 760px) {
  :root { --header-height: 104px; }
  p { line-height: 1.85; }.mobile-only { display: block; }
  .site-header { flex-direction: column; align-items: stretch; gap: 0; padding: 6px 20px; }.site-header .brand { align-self: flex-start; min-height: 40px; }
  .desktop-nav { display: grid; grid-template-columns: 1fr .75fr .75fr 1.5fr; gap: 0; font-size: 14px; }.desktop-nav a { justify-content: center; }.desktop-nav .nav-cta { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: calc(var(--header-height) + 20px) 20px 24px; }.hero-copy { padding: 30px 0 38px; }
  .eyebrow { margin-bottom: 20px; font-size: 9px; }.hero h1 { max-width: none; font-size: clamp(23px, 7.3vw, 29px); line-height: 1.6; letter-spacing: .01em; }.hero h1 span:last-child { white-space: nowrap; }
  .hero-sub { margin-top: 26px; font-size: 17px; line-height: 1.8; }.hero-note { margin-top: 14px; font-size: 14px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 28px; }.button { width: 100%; min-width: 0; }.hero-visual { min-height: 0; aspect-ratio: 4 / 5; }
  .benefits { grid-template-columns: repeat(2, 1fr); width: calc(100% - 40px); margin-bottom: 52px; }
  .benefits p { min-height: 84px; padding: 15px 12px; border-bottom: 1px solid var(--line); }.benefits p:nth-child(3) { border-right: 1px solid var(--line); }
  .benefits p:nth-child(2n) { border-right: 0; }.benefits p:nth-last-child(-n+2) { border-bottom: 0; }.benefits strong { font-size: 15px; }.benefits span { font-size: 10px; }
  .section { width: calc(100% - 40px); padding-block: 64px; }.section-heading { gap: 14px; }.section-heading h2, .gallery h2 { font-size: clamp(28px, 8.4vw, 34px); }
  .concerns { padding-top: 58px; }.concern-list { grid-template-columns: 1fr 1fr; margin-top: 44px; }.concern-list li { min-height: 140px; padding: 18px 14px; }
  .concern-list li:nth-child(3n) { border-right: 1px solid var(--line); }.concern-list li:nth-child(2n) { border-right: 0; }.concern-list p { margin-top: 24px; font-size: 15px; }
  .concern-answer { grid-template-columns: 1fr; gap: 24px; margin-top: 52px; padding-left: 0; }.concern-answer .lead { font-size: 22px; }
  .reasons { grid-template-columns: 1fr; gap: 54px; width: 100%; padding: 36px 20px 76px; }.reason-image { min-height: 390px; margin-right: 38px; margin-left: -20px; }
  #reasons-title { font-size: clamp(23px, 7.4vw, 32px); }
  .reason-intro { margin: 30px 0 36px; font-size: 15px; }.reason-list strong { font-size: 17px; }
  .price-section { width: 100%; padding-inline: 20px; }.price-lead { grid-template-columns: 1fr; gap: 24px; margin-top: 44px; padding-bottom: 38px; }
  .price-main { font-size: 16px; }.price-main strong { font-size: 39px; }.price-fixed-costs p { padding: 20px 18px 20px 0; }.price-fixed-costs p:last-child { padding-right: 0; padding-left: 18px; }.price-fixed-costs span { font-size: 12px; }.price-fixed-costs strong { font-size: 23px; }.price-options { grid-template-columns: 1fr; }
  .price-options article, .price-options article:last-child { padding: 36px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .ticket-notes { grid-template-columns: 1fr; }.ticket-notes > div, .ticket-notes > div:last-child { padding: 20px 0; border-left: 0; }
  .ticket-notes > div:last-child { border-top: 1px solid rgba(255,255,255,.25); }.price-cta { align-items: stretch; flex-direction: column; margin-top: 36px; }
  .schedule-section { padding-bottom: 72px; }.schedule-heading { display: block; }.schedule-note { margin-top: 24px; }
  .weekly-row { grid-template-columns: 48px 1fr; gap: 10px 14px; min-height: 0; padding: 24px 6px 24px 12px; }
  .weekday { grid-row: 1 / 4; align-self: start; flex-direction: column; gap: 0; }.weekday b { font-size: 30px; }
  .weekly-time { grid-column: 2; flex-direction: row; align-items: baseline; justify-content: space-between; }.weekly-time strong { font-size: 14px; }
  .weekly-class { grid-column: 2; }.weekly-class h3 { margin-top: 2px; font-size: 19px; line-height: 1.5; }.weekly-class .weekly-purpose { font-size: 11px; }.weekly-class .weekly-description { margin: 8px 0 0; font-size: 13px; line-height: 1.75; }
  .schedule-cta { align-items: stretch; flex-direction: column; gap: 22px; margin-top: 30px; }
  .lessons { width: 100%; padding-inline: 20px; }.lesson-top { grid-template-columns: 1fr; gap: 28px; }.lesson-list { margin-top: 50px; }
  .lesson-item { grid-template-columns: 38px 1fr; gap: 12px; padding: 28px 0; }.lesson-duration { display: none; }.lesson-item h3 { font-size: 21px; }.lesson-item div > p:last-child { font-size: 12px; }
  .instructor { grid-template-columns: 1fr; gap: 62px; }.instructor-photo { margin-right: 20px; }.instructor-photo img { height: auto; }
  .instructor-copy { max-width: none; }.instructor-name { margin-top: 34px; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: auto; gap: 14px; width: calc(100% - 40px); margin-top: 0; padding: 58px 0 54px; }
  .gallery-heading { display: flex; flex-direction: column; align-items: flex-start; padding: 0 0 28px; }.gallery-heading h2 { margin: 18px 0 30px; }.gallery-heading .text-link { margin-bottom: 0; }.gallery-main, .gallery-side, .gallery-wide { grid-column: 1; grid-row: auto; min-height: 0; }
  .gallery-main, .gallery-side, .gallery-wide { display: block; height: 240px; }.gallery-main img { object-position: center 62%; }
  .locations { width: 100%; padding: 62px 20px 68px; }.location-intro { grid-template-columns: 1fr; gap: 28px; }.location-list-label { margin-top: 42px; }.location-list { grid-template-columns: 1fr; }
  .location-list article, .location-list article:nth-child(2n) { padding: 23px 0; border-right: 0; }.location-footer { align-items: stretch; flex-direction: column; gap: 22px; margin-top: 24px; }
  .first-section { grid-template-columns: 1fr; gap: 52px; }.first-photo { position: static; height: 350px; margin-right: 35px; margin-left: -20px; }
  .first-lead { margin: 34px 0; font-size: 18px; }.first-list > div { grid-template-columns: 85px 1fr; gap: 18px; padding: 20px 0; }.visit-flow { margin-top: 42px; }.visit-flow ol { grid-template-columns: 1fr; gap: 22px; }.visit-flow li { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding-top: 16px; }.visit-flow li:not(:last-child)::after { display: none; }.visit-flow li p { margin: 0; font-size: 13px; }.cancel-note { padding: 24px 22px; }
  .faq-list { margin-top: 44px; }.faq summary { grid-template-columns: 38px 1fr; gap: 10px; padding: 23px 38px 23px 0; font-size: 15px; line-height: 1.7; }
  .faq details > p { margin: 0 0 24px 48px; font-size: 14px; }
  .final-cta { grid-template-columns: 1fr; min-height: 0; }.final-copy { padding: 68px 20px; }.final-cta h2 { font-size: 34px; }
  .final-actions { display: none; }.final-image { min-height: 260px; }
  .text-link { align-items: center; min-height: 44px; padding-block: 8px; }.footer { grid-template-columns: 1fr; padding: 50px 20px 36px; }.footer > p, .footer small { justify-self: start; }.footer .brand, .footer-links a { display: inline-flex; align-items: center; min-height: 44px; }.footer-links { flex-wrap: wrap; gap: 8px 24px; }
  .mobile-cta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; } }
