:root {
  --orange: #ff6201;
  --ink: #1a1a1a;
  --paper: #ffffff;
  --soft: #f3f3f1;
  --line: #d9d9d5;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}
a { color: inherit; text-underline-offset: .2em; }
a:hover { color: var(--orange); }
img, svg { display: block; max-width: 100%; }
.skip-link { position: fixed; top: .5rem; left: .5rem; z-index: 100; padding: .7rem 1rem; background: var(--ink); color: #fff; transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

.topline { background: var(--ink); color: #fff; font-weight: 700; text-align: center; padding: .45rem 1rem; font-size: .9rem; }
.site-header { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); position: sticky; top: 0; z-index: 20; }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; font-weight: 800; line-height: .9; font-size: 1.15rem; }
.brand-mark { width: 54px; height: 48px; flex: 0 0 54px; border: 0 !important; background: url('/logo-mark.svg') center / contain no-repeat; }
.site-footer .brand-mark { background-image: url('/logo-mark-inverse.svg'); }
.desktop-nav { display: flex; align-items: center; gap: 1.6rem; }
.desktop-nav a { text-decoration: none; font-weight: 700; }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .8rem 1.2rem; border: 2px solid var(--ink); background: var(--orange); color: var(--ink); text-decoration: none; font-weight: 800; box-shadow: 4px 4px 0 var(--ink); transition: transform .18s ease, box-shadow .18s ease; }
.nav-cta:hover, .button:hover { background: #ff7b2a; color: var(--ink); transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.button.alt { background: #fff; color: var(--ink); box-shadow: none; }
.button.alt:hover { background: var(--soft); }
.mobile-nav { display: none; position: relative; }
.mobile-nav summary { cursor: pointer; font-weight: 800; list-style: none; border: 2px solid var(--ink); padding: .55rem .8rem; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-panel { position: absolute; right: 0; top: calc(100% + .5rem); width: min(280px, calc(100vw - 2rem)); background: #fff; border: 2px solid var(--ink); padding: .5rem; box-shadow: 8px 8px 0 var(--orange); }
.mobile-panel a { display: block; padding: .75rem; text-decoration: none; font-weight: 700; }

.hero { min-height: 68vh; display: grid; align-items: center; padding: clamp(3rem,6vw,5rem) 0; overflow: hidden; background: #fff; position: relative; border-bottom: 1px solid var(--line); }
.hero::before { content: "LANGUAGE"; position: absolute; left: -1.5vw; bottom: -3.5vw; color: #f1f1ef; font-weight: 800; font-size: clamp(6rem, 18vw, 18rem); line-height: .8; letter-spacing: -.08em; pointer-events: none; }
.hero::after { content: ""; position: absolute; width: min(38vw, 520px); aspect-ratio: 2 / 1; right: 2vw; bottom: 11%; border: clamp(24px, 4vw, 58px) solid var(--orange); border-top: 0; border-left-color: transparent; border-right-color: transparent; border-radius: 0 0 50% 50%; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr); gap: 3rem; align-items: end; position: relative; z-index: 1; }
.eyebrow { font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; }
h1, h2, h3 { line-height: .98; letter-spacing: -.045em; margin: 0; }
h1 { font-size: clamp(3.7rem, 7.5vw, 7.2rem); max-width: 10ch; }
h2 { font-size: clamp(2.5rem, 5.5vw, 5.4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
.hero p { font-size: clamp(1.15rem, 2vw, 1.6rem); max-width: 32ch; margin: 1.5rem 0 2rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-note { align-self: start; border-top: 8px solid var(--orange); background: var(--soft); padding: 1.35rem; margin-top: .5rem; max-width: 21rem; box-shadow: 8px 8px 0 var(--ink); }
.hero-note strong { font-size: 1.35rem; display: block; margin-bottom: .25rem; }

main section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; margin-bottom: 3rem; }
.section-head p { font-size: 1.15rem; max-width: 52ch; margin: 0; align-self: end; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { min-height: 260px; border: 2px solid var(--ink); padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; background: #fff; }
.card.orange { background: #fff; border-top: 8px solid var(--orange); }
.card .number { font-size: 3.4rem; line-height: 1; font-weight: 800; letter-spacing: -.06em; }
.card p { margin: 1rem 0 0; }
.card a { font-weight: 800; }
.band { background: var(--ink); color: #fff; }
.band .eyebrow { color: var(--orange); }
.schedule { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.schedule article { padding: 1.3rem; border: 1px solid #555; }
.schedule .time { color: var(--orange); font-weight: 800; margin-top: .7rem; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.price { border-top: 6px solid var(--orange); background: var(--soft); padding: 1.5rem; }
.price strong { display: block; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; margin: 1rem 0; letter-spacing: -.05em; }
.price p { margin: 0; }
.fact-row { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); }
.fact-row > div { padding: 1.6rem; }
.fact-row > div + div { border-left: 2px solid var(--ink); }
.fact-row strong { font-size: 1.25rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.contact-list li { border-top: 1px solid var(--line); padding: 1rem 0; }
.contact-list span { display: block; font-size: .84rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-list a { font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 700; }
.page-hero { padding: clamp(4rem, 9vw, 8rem) 0; background: var(--soft); overflow: hidden; border-bottom: 10px solid var(--orange); position: relative; }
.page-hero::after { content: ""; position: absolute; width: min(32vw, 430px); aspect-ratio: 2/1; right: 3vw; bottom: 10%; border: clamp(18px, 3vw, 42px) solid var(--orange); border-top: 0; border-left-color: transparent; border-right-color: transparent; border-radius: 0 0 50% 50%; opacity: .95; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(3.3rem, 8vw, 7rem); }
.page-hero p { max-width: 52ch; font-size: 1.2rem; margin: 1.4rem 0 0; }
.prose { max-width: 760px; font-size: 1.12rem; }
.prose h2 { margin: 3rem 0 1rem; font-size: clamp(2rem, 4vw, 3.4rem); }
.prose h3 { margin: 2.2rem 0 .7rem; }
.prose ul { padding-left: 1.2rem; }
.note { border-left: 8px solid var(--orange); background: var(--soft); padding: 1.3rem 1.5rem; margin: 2rem 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 1.05rem; }
th, td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--ink); color: #fff; }
td strong { font-size: 1.15rem; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq summary { cursor: pointer; font-weight: 800; font-size: 1.15rem; }
.faq p { max-width: 65ch; }

.site-footer { background: var(--ink); color: #fff; padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: flex-start; justify-content: flex-end; }
.footer-links a { color: #fff; }
.legal { border-top: 1px solid #555; margin-top: 2rem; padding-top: 1rem; font-size: .88rem; color: #bbb; }

@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .hero { min-height: auto; }
  .hero::after { width: 55vw; right: -12vw; bottom: 6%; opacity: .22; }
  .hero::before { font-size: 30vw; bottom: 0; }
  .hero-grid, .section-head, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { align-items: start; }
  .hero-note { margin-top: 1rem; }
  .page-hero::after { opacity: .14; width: 58vw; right: -12vw; }
  .cards, .price-grid { grid-template-columns: 1fr; }
  .card { min-height: 220px; }
  .schedule { grid-template-columns: 1fr; }
  .fact-row { grid-template-columns: 1fr; }
  .fact-row > div + div { border-left: 0; border-top: 2px solid var(--ink); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

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