:root {
  --ink: #28231f;
  --muted: #6f655e;
  --paper: #faf7f2;
  --white: #fffdf9;
  --clay: #916f66;
  --clay-dark: #5b4039;
  --sand: #ead5c4;
  --sage: #d8ded5;
  --line: #d9cec4;
  --focus: #075985;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; font-size: 17px; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .25em; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.05; }
h1 { font-size: clamp(3.25rem, 7vw, 7.8rem); letter-spacing: -.05em; }
h2 { font-size: clamp(2.4rem, 4.5vw, 5.2rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.6rem, 2vw, 2.2rem); }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 999; background: var(--ink); color: white; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }
.reveal-ready .reveal-item { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms), transform 700ms cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms); }
.reveal-ready .reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.hero-photo img, .about-image img { animation: image-arrival 1100ms cubic-bezier(.22, 1, .36, 1) both; }
@keyframes image-arrival { from { opacity: .35; transform: scale(1.025); } to { opacity: 1; transform: scale(1); } }
.eyebrow { font-family: Arial, Helvetica, sans-serif; font-size: .74rem; font-weight: 700; letter-spacing: .17em; line-height: 1.3; }
.lead { font-size: clamp(1.08rem, 1.4vw, 1.35rem); max-width: 42rem; color: var(--muted); }
.section { padding: clamp(4rem, 9vw, 9rem) max(5vw, calc((100vw - 1240px) / 2)); }

.site-header { position: sticky; top: 0; z-index: 100; height: 92px; padding: 0 max(4vw, calc((100vw - 1320px) / 2)); display: flex; align-items: center; justify-content: space-between; background: color-mix(in srgb, var(--paper) 94%, transparent); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.brand { width: 112px; flex: 0 0 auto; }
.brand img { width: 100%; height: 74px; object-fit: contain; mix-blend-mode: multiply; filter: contrast(1.03) saturate(.96); }
.desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.5rem); font-size: .94rem; }
.desktop-nav > a, .course-menu > summary { text-decoration: none; padding: .6rem 0; cursor: pointer; list-style: none; }
.desktop-nav > a:hover, .course-menu > summary:hover { color: var(--clay); }
.course-menu { position: relative; }
.course-menu > summary::-webkit-details-marker { display: none; }
.course-menu > summary::after { content: "⌄"; margin-left: .45rem; }
.course-menu[open] > summary::after { content: "⌃"; }
.course-menu-panel { position: absolute; top: 3.2rem; left: 50%; transform: translateX(-50%); width: 300px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 50px rgb(40 35 31 / .12); padding: .6rem; }
.course-menu-panel a { display: flex; flex-direction: column; padding: .85rem 1rem; text-decoration: none; border-radius: 2px; }
.course-menu-panel a:hover { background: var(--sand); }
.course-menu-panel small { color: var(--muted); }
.nav-cta { border: 1px solid var(--ink); padding: .65rem 1.15rem !important; }
.mobile-nav { display: none; position: relative; }

.hero { min-height: min(760px, calc(100svh - 92px)); display: grid; grid-template-columns: 1.05fr .95fr; }
.hero-photo { overflow: hidden; min-height: 560px; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-copy { padding: clamp(3rem, 6vw, 6rem); background: var(--clay); color: white; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero-copy h1 { max-width: 760px; font-size: clamp(3.2rem, 5.8vw, 6.4rem); }
.hero-copy .lead { color: #fff; max-width: 620px; }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.5rem; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: .8rem 1.35rem; border: 1px solid currentColor; text-decoration: none; font-weight: 700; cursor: pointer; }
.button-primary { background: var(--ink); border-color: var(--ink); color: white; }
.button-primary:hover { background: var(--clay-dark); border-color: var(--clay-dark); }
.button-secondary { margin-top: 2rem; background: transparent; }
.button-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.text-link { font-weight: 700; }
.text-link span { display: inline-block; margin-left: .35rem; transition: transform .2s; }
.text-link:hover span { transform: translateX(.3rem); }
.intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 10vw, 10rem); background: var(--white); }
.intro h2 { max-width: 700px; }
.intro-copy { padding-top: 2rem; font-size: 1.18rem; }
.intro-copy p { margin-bottom: 2rem; }
.offers { background: var(--sand); }
.section-heading { max-width: 780px; margin-bottom: 4rem; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--clay); border-bottom: 1px solid var(--clay); }
.offer-card { padding: 2.2rem; border-right: 1px solid var(--clay); }
.offer-card:last-child { border-right: 0; }
.offer-card .card-number, .benefit-grid article > span { display: block; margin-bottom: 4rem; color: var(--clay-dark); font-size: .78rem; }
.offer-card > p:last-child { color: var(--muted); }
.quote-section { min-height: 620px; padding: 8rem 10vw; background: linear-gradient(rgb(40 35 31 / .55), rgb(40 35 31 / .55)), url('/assets/images/lac-leman-portrait.jpg') center 68%/cover; color: white; display: grid; place-content: center; text-align: center; }
.quote-section blockquote { max-width: 1050px; margin: 0 auto 2rem; font: 400 clamp(2.3rem, 5vw, 5.5rem)/1.1 Georgia, serif; }
.cta { display: flex; align-items: center; justify-content: space-between; gap: 4rem; background: var(--white); }
.cta h2 { max-width: 900px; margin-bottom: 0; }
.cta .button { flex: 0 0 auto; }

.page-hero { display: grid; grid-template-columns: 1fr 1fr; background: var(--clay); color: white; min-height: 690px; }
.page-hero-copy { padding: clamp(4rem, 8vw, 8rem); display: flex; flex-direction: column; justify-content: center; }
.page-hero-copy h1 { font-size: clamp(3rem, 5.5vw, 6.5rem); }
.page-hero-copy .lead { color: white; }
.page-hero > img { width: 100%; height: 100%; object-fit: cover; }
.about-hero { position: relative; display: block; min-height: 800px; height: 800px; margin: 0; padding: 0; background: #dbe7ea; color: var(--ink); overflow: hidden; }
.about-image { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; padding: 0; overflow: hidden; background: none; }
.about-image::before { display: none; }
.about-image img { display: block; width: 100%; height: 100%; margin: 0; padding: 0; object-fit: cover; object-position: center 78%; }
.about-hero .page-hero-copy { position: relative; z-index: 1; width: min(670px, 48%); min-height: inherit; padding: clamp(3rem, 6vw, 6rem) 0 clamp(3rem, 6vw, 6rem) max(5vw, calc((100vw - 1240px) / 2)); color: var(--ink); text-shadow: none; justify-content: flex-start; }
.about-hero .page-hero-copy .lead { color: #3f332e; max-width: 540px; font-weight: 600; line-height: 1.5; }
.about-hero .page-hero-copy h1 { font-size: clamp(2.8rem, 4.7vw, 5.4rem); text-wrap: balance; }
.story { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 9vw, 9rem); }
.story h2 { font-size: clamp(2.3rem, 4vw, 4.5rem); }
.prose { max-width: 720px; font-size: 1.08rem; }
.prose p { margin-bottom: 1.5rem; }
.specialties { background: var(--sage); }
.specialty-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid #899187; }
.specialty-list li { padding: 1.2rem 0; border-bottom: 1px solid #899187; font: 400 clamp(1.5rem, 3vw, 3rem)/1.2 Georgia, serif; display: flex; align-items: baseline; }
.specialty-list span { width: 10%; font: 700 .74rem Arial, sans-serif; }

.simple-hero, .legal-hero { padding: clamp(5rem, 10vw, 10rem) max(5vw, calc((100vw - 1100px) / 2)); background: var(--clay); color: white; text-align: center; }
.simple-hero h1 { max-width: 1000px; margin-inline: auto; }
.simple-hero .lead { color: white; margin-inline: auto; }
.course-list { padding-top: 4rem; padding-bottom: 4rem; }
.course-row { display: grid; grid-template-columns: 55px 1.4fr 1.1fr 60px; gap: 1.5rem; align-items: center; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.course-index { font-size: .76rem; font-weight: 700; }
.course-name h2 { font-size: clamp(1.8rem, 3vw, 3.1rem); margin-bottom: .4rem; }
.course-name p { color: var(--muted); margin: 0; }
.course-row dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 0; }
.course-row dt { font-size: .69rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.course-row dd { margin: .2rem 0 0; color: var(--muted); font-size: .9rem; }
.course-row dl > div:last-child dd, .format-cards dd, .intro-offer dd { white-space: nowrap; }
.circle-link { width: 50px; height: 50px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; text-decoration: none; font-size: 1.5rem; }
.circle-link:hover { background: var(--ink); color: white; }
.editor-note, .form-note { color: var(--muted); font-size: .85rem; margin-top: 1.5rem; }
.faq { background: var(--sand); display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.faq-list details { border-top: 1px solid var(--clay); padding: 1.3rem 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--clay); }
.faq-list summary { cursor: pointer; font-weight: 700; }
.faq-list p { margin: 1rem 0 0; color: var(--muted); }

.discipline-hero { min-height: 720px; display: grid; grid-template-columns: 1.3fr .7fr; color: white; }
.discipline-hero > div:first-child { padding: clamp(4rem, 9vw, 9rem); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.discipline-hero h1 { margin-bottom: 1.5rem; }
.discipline-hero .lead { color: inherit; }
.matwork-hero { background: var(--clay); }
.reformer-hero { background: var(--clay-dark); }
.discipline-visual { border-left: 1px solid rgb(255 255 255 / .4); padding: 3rem; display: flex; flex-direction: column; justify-content: space-between; }
.discipline-visual p { font: 400 clamp(2rem, 4vw, 4rem)/1.25 Georgia, serif; }
.course-gallery { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(.75rem, 1.5vw, 1.5rem); align-items: stretch; padding-top: clamp(2rem, 5vw, 5rem); padding-bottom: clamp(2rem, 5vw, 5rem); }
.course-gallery figure { margin: 0; overflow: hidden; background: var(--sand); }
.course-gallery-main, .course-gallery-secondary { height: clamp(430px, 52vw, 690px); min-height: 0; }
.course-gallery img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.course-gallery figure:hover img { transform: scale(1.015); }
.benefits { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.benefits h2 { font-size: clamp(2.3rem, 4vw, 4.6rem); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.benefit-grid article { border-top: 1px solid var(--line); padding-top: 1rem; }
.benefit-grid article > span { margin-bottom: 3rem; }
.benefit-grid p { color: var(--muted); }
.format-panel { background: var(--sage); display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.format-panel h2 { font-size: clamp(2.3rem, 4vw, 4.6rem); }
.format-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.format-cards article { background: var(--white); padding: 2rem; }
.format-cards dl div { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding: .8rem 0; }
.format-cards dd { margin: 0; color: var(--muted); }
.intro-offer { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; background: var(--sand); }
.intro-offer h2 { font-size: clamp(2.4rem, 4.5vw, 5rem); }
.intro-offer > div p:last-child { max-width: 680px; }
.intro-offer dl { margin: 0; align-self: center; border-top: 1px solid var(--clay); }
.intro-offer dl div { padding: 1.2rem 0; border-bottom: 1px solid var(--clay); }
.intro-offer dt { color: var(--muted); font-size: .84rem; }
.intro-offer dd { margin: .25rem 0 0; font: 400 clamp(1.4rem, 2.5vw, 2.6rem)/1.2 Georgia, serif; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(4rem, 10vw, 10rem); min-height: 720px; }
.contact-intro h1 { font-size: clamp(3rem, 6vw, 6.8rem); }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding-top: 3rem; }
.contact-details span { display: block; margin-bottom: .6rem; font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
address { font-style: normal; }
.contact-form { padding: clamp(2rem, 4vw, 4rem); background: var(--sand); align-self: start; }
.contact-form label { display: block; margin-bottom: 1.4rem; font-weight: 700; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { display: block; width: 100%; margin-top: .45rem; border: 1px solid #8b7b70; background: var(--white); padding: .8rem; color: var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .consent { display: flex; gap: .7rem; align-items: flex-start; font-weight: 400; font-size: .9rem; }
.contact-form .consent input { width: 20px; height: 20px; flex: 0 0 auto; }
.contact-form button { width: 100%; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { margin-top: 1rem; padding: 0; }
.form-status.success, .form-status.error { padding: 1rem; border-left: 4px solid var(--clay-dark); background: var(--white); }
.form-status.error { border-color: #a32929; color: #761d1d; }
.contact-form button:disabled { cursor: wait; opacity: .75; }
.form-success { align-self: start; padding: clamp(2rem, 4vw, 4rem); background: var(--sage); border-top: 5px solid var(--clay-dark); }
.form-success > span { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 1.5rem; border-radius: 50%; background: var(--clay-dark); color: white; font-size: 1.5rem; }
.form-success h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.reset-form { border: 0; padding: 0; background: transparent; color: var(--ink); cursor: pointer; }

.cookie-banner { position: fixed; z-index: 500; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; max-width: 760px; margin-left: auto; padding: 1.2rem; display: flex; align-items: center; gap: 1.5rem; background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 60px rgb(40 35 31 / .2); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-family: Georgia, serif; font-size: 1.2rem; }
.cookie-banner p { margin: .25rem 0; font-size: .88rem; color: var(--muted); line-height: 1.45; }
.cookie-banner a { font-size: .84rem; }
.cookie-banner button { flex: 0 0 auto; min-height: 46px; padding: .65rem 1rem; border: 1px solid var(--ink); background: var(--ink); color: white; cursor: pointer; }

.legal-hero h1 { font-size: clamp(3rem, 6vw, 6rem); }
.legal-content { max-width: 820px; margin: 0 auto; padding: 5rem 1.5rem 8rem; }
.legal-content h2 { margin-top: 3rem; font-size: 2rem; }
.legal-warning { margin-top: 4rem; padding: 1.5rem; background: var(--sand); border-left: 5px solid var(--clay-dark); }
.legal-warning p { margin-bottom: 0; }

.site-footer { padding: 5rem max(5vw, calc((100vw - 1240px) / 2)) 1.5rem; background: var(--ink); color: #f8f2ec; }
.footer-main { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; }
.footer-main > div:first-child p { max-width: 320px; color: #c9beb4; }
.footer-logo { width: 130px; background: var(--paper); margin-bottom: 1.5rem; }
.footer-main h2 { font: 700 .72rem Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; color: #c9beb4; }
.footer-main a { display: block; margin-bottom: .35rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 5rem; padding-top: 1.2rem; border-top: 1px solid #544b45; color: #c9beb4; font-size: .8rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 900px) {
  body { font-size: 16px; }
  .site-header { height: 88px; padding-inline: 1rem; }
  .brand { width: 90px; }
  .brand img { height: 72px; }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .mobile-nav > summary { list-style: none; min-width: 54px; min-height: 48px; display: grid; place-items: center; border: 1px solid var(--ink); cursor: pointer; font-size: .85rem; font-weight: 700; }
  .mobile-nav > summary::-webkit-details-marker { display: none; }
  .burger-icon { width: 24px; height: 18px; display: flex; flex-direction: column; justify-content: space-between; }
  .burger-icon i { display: block; width: 100%; height: 2px; background: currentColor; border-radius: 2px; transform-origin: center; transition: transform .25s ease, opacity .2s ease; }
  .mobile-nav[open] .burger-icon i:first-child { transform: translateY(8px) rotate(45deg); }
  .mobile-nav[open] .burger-icon i:nth-child(2) { opacity: 0; }
  .mobile-nav[open] .burger-icon i:last-child { transform: translateY(-8px) rotate(-45deg); }
  .mobile-nav > nav { position: absolute; right: 0; top: 60px; width: min(340px, calc(100vw - 2rem)); padding: 1rem; background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 50px rgb(40 35 31 / .15); }
  .mobile-nav nav > a, .mobile-course-group a { display: block; padding: .75rem; text-decoration: none; }
  .mobile-course-group { margin: .35rem 0; padding: .4rem 0; border-block: 1px solid var(--line); }
  .mobile-course-group > span { display: block; padding: .5rem .75rem .2rem; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
  .mobile-course-group a { padding-left: 1.25rem; }
  .hero, .page-hero, .discipline-hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 58svh; }
  .hero-copy { padding: 4rem 1.4rem; }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 5.5rem); overflow-wrap: anywhere; }
  .intro, .story, .faq, .benefits, .format-panel, .contact-layout, .intro-offer { grid-template-columns: 1fr; gap: 3rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { border-right: 0; border-bottom: 1px solid var(--clay); padding-inline: 0; }
  .offer-card:last-child { border-bottom: 0; }
  .quote-section { min-height: 520px; padding-inline: 1.5rem; }
  .cta { align-items: flex-start; flex-direction: column; }
  .page-hero > img { min-height: 400px; }
  .about-hero { min-height: 540px; height: 540px; }
  .about-hero .page-hero-copy { width: 100%; min-height: 540px; padding: 2.2rem 1.4rem; justify-content: flex-start; }
  .about-hero .page-hero-copy h1 { max-width: 18ch; margin-bottom: 1rem; font-size: clamp(2.1rem, 9vw, 3.1rem); line-height: 1.02; }
  .about-hero .page-hero-copy .lead { max-width: 33ch; font-size: 1.02rem; line-height: 1.55; }
  .about-image { height: 100%; background: none; }
  .about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 82%; }
  .specialty-list span { width: 18%; }
  .course-row { grid-template-columns: 38px 1fr 50px; }
  .course-row dl { grid-column: 2 / 4; }
  .circle-link { grid-column: 3; grid-row: 1; }
  .discipline-hero > div:first-child { padding: 5rem 1.4rem; }
  .discipline-visual { min-height: 350px; border-left: 0; border-top: 1px solid rgb(255 255 255 / .4); }
  .course-gallery { grid-template-columns: 1fr 1fr; }
  .benefit-grid, .format-cards { grid-template-columns: 1fr; }
  .benefit-grid article > span { margin-bottom: 1.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .course-gallery { grid-template-columns: 1fr; gap: .75rem; }
  .course-gallery-main, .course-gallery-secondary { width: 100%; height: min(118vw, 560px); }
  .section { padding: 4rem 1.25rem; }
  h1 { font-size: 3.4rem; }
  h2 { font-size: 2.6rem; }
  .button-row, .button { width: 100%; }
  .page-hero-copy { padding: 4rem 1.25rem; }
  .simple-hero, .legal-hero { padding: 5rem 1.25rem; text-align: left; }
  .course-row { grid-template-columns: 32px 1fr 46px; gap: .7rem; }
  .course-row dl { grid-template-columns: 1fr; }
  .course-row dl div { display: flex; justify-content: space-between; border-top: 1px dotted var(--line); padding-top: .4rem; }
  .field-row, .contact-details { grid-template-columns: 1fr; }
  .contact-form { padding: 1.25rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { left: .75rem; right: .75rem; bottom: .75rem; align-items: stretch; flex-direction: column; gap: .8rem; }
  .cookie-banner button { width: 100%; }
}

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