:root {
  --ivory: #f2ede4;
  --paper: #faf8f3;
  --ink: #1f1d1a;
  --muted: #6f6961;
  --wine: #721d2d;
  --wine-deep: #4d111d;
  --line: rgba(31, 29, 26, 0.18);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: min(1420px, calc(100vw - 80px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ivory); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body, a { cursor: default; }
a { color: inherit; text-decoration: none; cursor: pointer; }
img, video { display: block; width: 100%; }
button, input, textarea { font: inherit; }
::selection { background: var(--wine); color: var(--paper); }

.site-header {
  position: relative; z-index: 20; width: var(--page); min-height: 88px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 13px; width: max-content; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: 14px; letter-spacing: .04em; }
.brand > span:last-child { display: grid; gap: 3px; }
.brand strong { font-family: var(--serif); font-size: 16px; font-weight: 500; line-height: 1; }
.brand small { color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.site-header nav { display: flex; gap: 34px; color: #4e4943; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.site-header nav a, .header-cta { transition: color .25s ease; }
.site-header nav a:hover, .header-cta:hover { color: var(--wine); }
.header-cta { justify-self: end; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.header-tools { justify-self: end; display: flex; align-items: center; gap: 22px; }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.lang-switch a { color: var(--muted); transition: color .2s ease; }
.lang-switch a:hover, .lang-switch a.is-active { color: var(--wine); }
.lang-switch a.is-active { text-decoration: underline; text-underline-offset: 5px; }
.lang-switch span { color: #aaa39a; }
.menu-toggle { width: 42px; height: 42px; padding: 0; display: none; place-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; }
.menu-toggle span { display: block; width: 17px; height: 1px; background: currentColor; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }


.hero { width: var(--page); min-height: 760px; margin: 0 auto; padding: 76px 0 90px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); align-items: center; gap: clamp(55px, 8vw, 130px); }
.hero-copy { padding-top: 20px; }
.eyebrow { margin: 0 0 25px; color: var(--wine); font-size: 10px; font-weight: 700; letter-spacing: .25em; line-height: 1.5; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
h1 { max-width: 800px; margin-bottom: 32px; font-size: clamp(66px, 6.6vw, 112px); line-height: .92; }
h1 em, h2 em { color: var(--wine); font-weight: 400; }
.hero-lead { max-width: 610px; margin-bottom: 34px; color: #5e5851; font-family: var(--serif); font-size: clamp(19px, 1.65vw, 26px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.button { min-height: 50px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; border: 1px solid transparent; font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--wine); color: #fff; }
.button-primary:hover { background: var(--wine-deep); }
.button-quiet { padding-right: 2px; border-bottom-color: var(--ink); }
.button-quiet span { font-size: 15px; }
.hero-facts { margin: 72px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.hero-facts div { padding: 22px 20px 0 0; }
.hero-facts div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.hero-facts dt { margin-bottom: 7px; font-family: var(--serif); font-size: 22px; }
.hero-facts dd { margin: 0; color: var(--muted); font-size: 10px; letter-spacing: .1em; line-height: 1.45; text-transform: uppercase; }
.hero-visual { position: relative; min-height: 600px; }
.hero-frame { position: absolute; inset: 0 38px 0 0; overflow: hidden; background: #d8d0c4; }
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(43, 26, 23, .24)); pointer-events: none; }
.hero-frame img { height: 100%; object-fit: cover; object-position: 53% center; filter: saturate(.88) contrast(1.02) sepia(.03); transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.hero-frame:hover img { transform: scale(1.025); }
.vertical-note { position: absolute; right: 0; top: 15%; margin: 0; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-seal { position: absolute; left: -44px; bottom: 36px; width: 108px; height: 108px; display: grid; place-content: center; border-radius: 50%; background: var(--wine); color: #fff; text-align: center; box-shadow: 0 20px 50px rgba(54, 22, 22, .25); }
.hero-seal span { font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }
.hero-seal strong { font-family: var(--serif); font-size: 25px; font-weight: 400; }

.practice-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.practice-strip article { min-height: 255px; padding: 54px clamp(35px, 5vw, 85px); position: relative; }
.practice-strip article + article { border-left: 1px solid var(--line); }
.practice-strip span, .service-grid span, .press-grid > figure > span { color: var(--wine); font-family: var(--serif); font-size: 13px; }
.practice-strip h2 { margin: 32px 0 13px; font-size: 37px; }
.practice-strip p { max-width: 320px; margin-bottom: 0; color: var(--muted); font-family: var(--serif); font-size: 16px; line-height: 1.55; }

.section-dark { background: #20201d; color: #f2eee6; }
.method { padding: 135px max(40px, calc((100vw - 1420px) / 2)); }
.section-heading { max-width: 980px; margin-bottom: 75px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(52px, 5.1vw, 82px); line-height: 1.02; }
.section-heading.light .eyebrow, .section-dark .eyebrow { color: #c69d82; }
.section-heading.light h2 em { color: #d7a88e; }
.method-grid { display: grid; grid-template-columns: .75fr 1.05fr .8fr; gap: clamp(42px, 6vw, 95px); align-items: start; }
.method-quote { padding-top: 14px; }
.method-quote blockquote { margin: 0 0 30px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.3); font-family: var(--serif); font-size: clamp(25px, 2vw, 34px); line-height: 1.3; }
.method-quote p { color: #b4aea3; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; }
.method-intro { margin-bottom: 43px; color: #d1cbc1; font-family: var(--serif); font-size: 20px; line-height: 1.6; }
.method-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.17); }
.method-list li { padding: 26px 0; display: grid; grid-template-columns: 40px 1fr; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.17); }
.method-list li > span { padding-top: 6px; color: #c69d82; font-family: var(--serif); font-size: 12px; }
.method-list h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.method-list p { margin: 0; color: #aaa49a; font-size: 13px; line-height: 1.65; }
.method-images { position: relative; min-height: 610px; }
.method-images img { position: absolute; object-fit: cover; filter: saturate(.82) sepia(.05); }
.method-image-main { top: 0; right: 0; width: 90%; height: 450px; }
.method-image-small { left: -24px; bottom: 0; width: 55%; height: 230px; border: 10px solid #20201d; }

.biography { padding: 140px max(40px, calc((100vw - 1420px) / 2)); background: var(--paper); }
.bio-layout { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(430px, 1.2fr); gap: clamp(60px, 10vw, 150px); align-items: start; }
.bio-portrait { max-width: 490px; }
.bio-portrait img { height: 650px; object-fit: cover; object-position: center 20%; filter: sepia(.05) saturate(.9) contrast(1.01); }
.bio-portrait p { margin: 14px 0 0; color: var(--muted); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.bio-copy { padding-top: 10px; }
.bio-copy > p { margin-bottom: 25px; color: #555049; font-family: var(--serif); font-size: 19px; line-height: 1.72; }
.bio-copy .dropcap::first-letter { float: left; margin: 7px 11px 0 0; color: var(--wine); font-family: var(--serif); font-size: 76px; line-height: .75; }
.bio-links { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 28px; }
.bio-links a, .text-link { padding-bottom: 8px; border-bottom: 1px solid var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.legacy { padding: 125px max(40px, calc((100vw - 1420px) / 2)); display: grid; grid-template-columns: minmax(340px, .82fr) minmax(500px, 1.18fr); gap: clamp(55px, 9vw, 130px); background: #d9d0c4; }
.legacy-photo img { height: 610px; object-fit: cover; filter: sepia(.05) saturate(.88) contrast(1.01); }
.legacy-photo span { display: block; margin-top: 14px; color: #6b625a; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.legacy-copy { align-self: center; }
.legacy-copy h2 { max-width: 760px; margin-bottom: 30px; font-size: clamp(50px, 4.5vw, 76px); line-height: 1; }
.legacy-copy > p:not(.eyebrow) { max-width: 700px; margin-bottom: 42px; color: #504942; font-family: var(--serif); font-size: 18px; line-height: 1.7; }
.video-wrap { position: relative; overflow: hidden; background: #111; box-shadow: 0 25px 55px rgba(56, 39, 34, .18); }
.video-wrap video { aspect-ratio: 16 / 9; object-fit: cover; }

.consulting { padding: 135px max(40px, calc((100vw - 1420px) / 2)); background: var(--paper); }
.section-heading.compact { max-width: 760px; margin-bottom: 65px; }
.section-heading.compact > p:last-child { max-width: 600px; margin: 25px 0 0; color: var(--muted); font-family: var(--serif); font-size: 18px; line-height: 1.6; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 36px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-grid article { min-height: 315px; padding: 42px 45px 45px 0; }
.service-grid article + article { padding-left: 45px; border-left: 1px solid var(--line); }
.service-grid h3 { margin: 72px 0 18px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.service-grid p { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 16px; line-height: 1.6; }

.section-wine { background: var(--wine); color: #fff7ee; }
.press { padding: 130px max(40px, calc((100vw - 1420px) / 2)); }
.press .section-heading.light .eyebrow { color: #d8ad9a; }
.press .section-heading.light h2 em { color: #e4b49f; }
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); }
.press-grid figure { min-height: 350px; margin: 0; padding: 38px 45px 38px 0; display: flex; flex-direction: column; }
.press-grid figure + figure { padding-left: 45px; border-left: 1px solid rgba(255,255,255,.3); }
.press-grid > figure > span { color: #e1b19e; }
.press-grid blockquote { margin: 62px 0 35px; font-family: var(--serif); font-size: clamp(22px, 2.1vw, 32px); line-height: 1.25; }
.press-grid figcaption { margin-top: auto; color: #d3bcb4; font-size: 9px; letter-spacing: .13em; line-height: 1.5; text-transform: uppercase; }

.gallery-section { padding: 135px max(40px, calc((100vw - 1420px) / 2)); background: var(--ivory); }
.row-heading { max-width: none; display: grid; grid-template-columns: 1fr 330px; align-items: end; gap: 70px; }
.row-heading h2 { max-width: 880px; }
.row-heading > p { margin: 0 0 8px; color: var(--muted); font-family: var(--serif); font-size: 17px; line-height: 1.6; }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 130px; gap: 18px; }
.gallery-item { margin: 0; overflow: hidden; background: #d8d0c5; }
.gallery-item img { height: 100%; object-fit: cover; filter: saturate(.92) sepia(.03) contrast(1.01); transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .5s ease; }
.gallery-item:hover img { transform: scale(1.035); filter: saturate(.9); }
.gallery-item-1 { grid-column: span 4; grid-row: span 4; }
.gallery-item-2 { grid-column: span 5; grid-row: span 3; }
.gallery-item-3 { grid-column: span 3; grid-row: span 5; }
.gallery-item-4 { grid-column: span 5; grid-row: span 4; }
.gallery-item-5 { grid-column: span 4; grid-row: span 3; }
.gallery-item-6 { grid-column: span 3; grid-row: span 5; background: #171715; }
.gallery-item-6 img { object-fit: contain; object-position: center; filter: none; }


.students { padding: 135px max(40px, calc((100vw - 1420px) / 2)); }
.students .section-heading.compact { max-width: 900px; }
.students .section-heading.compact > p:last-child { max-width: 760px; color: #cfc7bc; }
.students-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.student-card { padding: 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); box-shadow: 0 18px 42px rgba(0,0,0,.16); }
.student-card-number { margin-bottom: 14px; color: #d7a88e; font-family: var(--serif); font-size: 13px; }
.student-video-frame { overflow: hidden; background: #000; aspect-ratio: 16 / 9; }
.student-video-frame iframe { width: 100%; height: 100%; border: 0; }
.student-card-footer { padding-top: 16px; display: grid; gap: 10px; }
.student-card-footer p { margin: 0; color: #bdb6ac; font-family: var(--serif); font-size: 16px; line-height: 1.6; }
.student-card-footer a { width: max-content; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.35); color: #fff4ea; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.student-card-footer a span { font-size: 12px; }

.reveal-on-scroll { opacity: 0; transform: translateY(34px); transition: opacity .85s ease, transform .85s ease; will-change: opacity, transform; }
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }


.cookie-banner { position: fixed; z-index: 100; left: 24px; right: 24px; bottom: 24px; max-width: 980px; margin: 0 auto; padding: 22px 24px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; background: rgba(24,24,22,.98); color: #f7f1e8; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 24px 70px rgba(0,0,0,.35); backdrop-filter: blur(12px); }
.cookie-banner[hidden] { display: none; }
.cookie-copy strong { display: block; margin-bottom: 7px; font-family: var(--serif); font-size: 20px; font-weight: 400; }
.cookie-copy p { max-width: 650px; margin: 0; color: #beb7ad; font-size: 12px; line-height: 1.55; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-button { min-height: 42px; padding: 0 17px; border: 1px solid rgba(255,255,255,.24); background: transparent; color: #f7f1e8; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }
.cookie-accept { background: #f7f1e8; color: #1f1d1a; }
.cookie-button:hover { transform: translateY(-1px); }
.footer-cookie { justify-self: end; padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: #8e887f; font: inherit; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; }

.contact { padding: 105px max(40px, calc((100vw - 1420px) / 2)); display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 70px; background: #1e1e1b; color: #f6f0e7; }
.contact .eyebrow { color: #c69d82; }
.contact h2 { max-width: 900px; margin: 0; font-size: clamp(52px, 5vw, 82px); line-height: 1; }
.contact h2 em { color: #d6a58c; }
.contact-actions { display: grid; justify-items: end; gap: 16px; }
.button-light { background: #f6f0e7; color: #1e1e1b; }
.button-light:hover { background: #d6a58c; }
.contact-actions p { margin: 0; color: #aaa499; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }

footer { min-height: 125px; padding: 28px max(40px, calc((100vw - 1420px) / 2)); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 25px; background: #151513; color: #f1ece4; border-top: 1px solid rgba(255,255,255,.13); }
footer > p, footer > a:not(.brand) { margin: 0; color: #8e887f; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
footer > a:not(.brand) { justify-self: end; }
.footer-brand small { color: #8e887f; }

section[id] { scroll-margin-top: 24px; }
a:focus-visible, video:focus-visible { outline: 3px solid #d9a989; outline-offset: 4px; }

@media (max-width: 1100px) {
  :root { --page: calc(100vw - 50px); }
  .site-header { position: relative; grid-template-columns: 1fr auto; gap: 16px; }
  .header-tools { gap: 12px; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; }
  .site-header nav { position: absolute; z-index: 30; top: calc(100% + 1px); left: 0; right: 0; padding: 24px; display: grid; gap: 0; background: rgba(250,248,243,.98); border-bottom: 1px solid var(--line); box-shadow: 0 18px 40px rgba(31,29,26,.1); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px); transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }
  .site-header nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .site-header nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 12px; }

  .hero { min-height: auto; grid-template-columns: 1fr 420px; gap: 55px; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts div { padding: 13px 0; }
  .hero-facts div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .method-grid { grid-template-columns: .8fr 1.2fr; }
  .method-images { grid-column: 1 / -1; min-height: 520px; }
  .method-image-main { width: 70%; }
  .method-image-small { left: auto; right: 3%; width: 35%; }
  .legacy { grid-template-columns: .8fr 1.2fr; }
  .gallery { grid-auto-rows: 105px; }
  .students-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --page: calc(100vw - 36px); }
  .site-header { min-height: 74px; }
  .header-cta { display: none; }
  .hero { padding: 55px 0 75px; grid-template-columns: 1fr; }
  h1 { font-size: clamp(57px, 15vw, 92px); }
  .hero-visual { min-height: 560px; }
  .hero-frame { right: 23px; }
  .hero-seal { left: 18px; bottom: 24px; }
  .practice-strip { grid-template-columns: 1fr; }
  .practice-strip article { min-height: 0; padding: 38px 25px; }
  .practice-strip article + article { border-left: 0; border-top: 1px solid var(--line); }
  .practice-strip h2 { margin-top: 18px; }
  .method, .biography, .legacy, .consulting, .press, .gallery-section, .students { padding: 95px 24px; }
  .section-heading { margin-bottom: 55px; }
  .section-heading h2 { font-size: clamp(46px, 11vw, 72px); }
  .method-grid, .bio-layout, .legacy { grid-template-columns: 1fr; }
  .method-images { min-height: 470px; }
  .method-image-main { width: 78%; height: 370px; }
  .method-image-small { width: 42%; height: 190px; }
  .bio-portrait { max-width: none; }
  .bio-portrait img { height: min(680px, 115vw); }
  .legacy-photo img { height: min(610px, 105vw); }
  .service-grid, .press-grid, .students-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: 0; padding: 35px 0; }
  .service-grid article + article, .press-grid figure + figure { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .service-grid h3 { margin-top: 32px; }
  .press-grid figure { min-height: 275px; padding: 35px 0; }
  .press-grid figure + figure { border-color: rgba(255,255,255,.3); }
  .press-grid blockquote { margin: 35px 0; }
  .row-heading { grid-template-columns: 1fr; gap: 22px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .gallery-item { grid-column: auto; grid-row: auto; }
  .gallery-item-6 { min-height: 620px; }
  .gallery-item-6 img { object-fit: contain; }
  .student-card { padding: 16px; }
  .student-card-footer p { font-size: 15px; }
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; grid-template-columns: 1fr; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-button { flex: 1; }
  .contact { padding: 85px 24px; grid-template-columns: 1fr; align-items: start; }
  .contact-actions { justify-items: start; }
  footer { padding: 35px 24px; grid-template-columns: 1fr auto; }
  .footer-cookie { justify-self: end; }
  footer > p { display: none; }
}

@media (max-width: 520px) {
  .brand strong { font-size: 14px; }
  .brand small { font-size: 8px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { padding-top: 42px; }
  .eyebrow { margin-bottom: 20px; }
  .hero-lead { font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .button-quiet { border: 1px solid var(--line); }
  .hero-facts { margin-top: 48px; }
  .hero-visual { min-height: 440px; }
  .vertical-note { display: none; }
  .method, .biography, .legacy, .consulting, .press, .gallery-section, .students { padding: 78px 18px; }
  .method-grid { gap: 38px; }
  .method-images { min-height: 390px; }
  .method-image-main { width: 88%; height: 315px; }
  .method-image-small { width: 46%; height: 150px; border-width: 7px; }
  .bio-links { align-items: flex-start; flex-direction: column; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 390px; }
  .gallery-item-6 { min-height: 720px; }
  .students-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact { padding: 75px 18px; }
  footer { padding: 32px 18px; }
  footer > a:not(.brand) { display: none; }
}

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



/* ===== FINAL VISUAL POLISH ===== */
/* More compact vertical rhythm: the site feels continuous rather than section-by-section. */
:root { --page: min(1480px, calc(100vw - 56px)); }

.brand-mark {
  width: 48px; height: 48px; border: 0; border-radius: 50%; overflow: hidden;
  background: transparent; flex: 0 0 auto;
}
.brand-logo { width: 100%; height: 100%; object-fit: contain; }

.brand-wordmark-link { display: inline-flex; align-items: center; }
.brand-wordmark {
  display: block;
  width: auto;
  height: 58px;
  max-width: min(36vw, 360px);
  object-fit: contain;
}


/* Hero: rectangular, balanced and deliberately not stretched. */
.site-header { min-height: 80px; }
.hero {
  min-height: 0;
  padding: 52px 0 64px;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  gap: clamp(42px, 5.5vw, 86px);
}
.hero-copy { padding-top: 0; }
.hero-visual { min-height: 0; aspect-ratio: 4 / 3; align-self: center; }
.hero-frame { inset: 0; }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 42%; }
.hero-facts { margin-top: 48px; }
.vertical-note, .hero-seal { display: none !important; }

/* Tighter rhythm throughout desktop. */
.method, .biography, .legacy, .consulting, .press, .gallery-section, .students {
  padding-top: 104px;
  padding-bottom: 104px;
}
.section-heading { margin-bottom: 54px; }
.method-grid { gap: clamp(38px, 4.5vw, 68px); }
.legacy { gap: clamp(44px, 6vw, 88px); }
.service-grid article { min-height: 270px; }
.press-grid figure { min-height: 300px; }

/* Uniform gallery: every image lives in the same rectangular system. */
.gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 16px;
}
.gallery-item,
.gallery-item-1,
.gallery-item-2,
.gallery-item-3,
.gallery-item-4,
.gallery-item-5,
.gallery-item-6 {
  position: relative;
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  isolation: isolate;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* Portrait photos stay fully visible while remaining inside the same rectangular layout. */
.gallery-item--portrait { overflow: hidden; background: #2b2725; }
.gallery-item--portrait::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: -1;
  background: var(--gallery-bg) center / cover no-repeat;
  filter: blur(18px) saturate(.72) brightness(.62);
  transform: scale(1.08);
  opacity: .88;
}
.gallery-item--portrait img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center top;
  filter: none;
}

/* Stronger, more refined entrance animation on the home view. */
@keyframes ddFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ddFadeImage {
  from { opacity: 0; transform: translateY(14px) scale(.985); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
.site-header { animation: ddFadeUp .72s cubic-bezier(.2,.75,.2,1) both; }
.hero .eyebrow { animation: ddFadeUp .72s .10s cubic-bezier(.2,.75,.2,1) both; }
.hero h1 { animation: ddFadeUp .84s .18s cubic-bezier(.2,.75,.2,1) both; }
.hero-lead { animation: ddFadeUp .78s .29s cubic-bezier(.2,.75,.2,1) both; }
.hero-actions { animation: ddFadeUp .76s .38s cubic-bezier(.2,.75,.2,1) both; }
.hero-facts { animation: ddFadeUp .78s .47s cubic-bezier(.2,.75,.2,1) both; }
.hero-visual { animation: ddFadeImage 1.05s .16s cubic-bezier(.2,.75,.2,1) both; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .82s cubic-bezier(.2,.75,.2,1) var(--fade-delay, 0ms),
    transform .82s cubic-bezier(.2,.75,.2,1) var(--fade-delay, 0ms);
}
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --page: calc(100vw - 42px); }
  .hero { grid-template-columns: minmax(0, 1fr) 410px; gap: 38px; padding: 46px 0 56px; }
  .hero-visual { aspect-ratio: 4 / 3; }
  .method, .biography, .legacy, .consulting, .press, .gallery-section, .students { padding-top: 88px; padding-bottom: 88px; }
}

@media (max-width: 820px) {
  :root { --page: calc(100vw - 32px); }
  .brand-mark { width: 43px; height: 43px; }
  .brand-wordmark { height: 50px; max-width: 64vw; }
  .hero { grid-template-columns: 1fr; padding: 38px 0 54px; gap: 34px; }
  .hero-visual { width: 100%; min-height: 0; aspect-ratio: 4 / 3; }
  .hero-frame { position: absolute; inset: 0; }
  .hero-facts { margin-top: 36px; }
  .method, .biography, .legacy, .consulting, .press, .gallery-section, .students { padding: 72px 20px; }
  .section-heading { margin-bottom: 42px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; gap: 12px; }
  .gallery-item,
  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-3,
  .gallery-item-4,
  .gallery-item-5,
  .gallery-item-6 { min-height: 0; aspect-ratio: 4 / 3; }
}

@media (max-width: 520px) {
  :root { --page: calc(100vw - 28px); }
  .site-header { min-height: 70px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-wordmark { height: 44px; max-width: 68vw; }
  .brand { gap: 10px; }
  .hero { padding: 30px 0 44px; gap: 28px; }
  h1 { font-size: clamp(49px, 13.5vw, 72px); line-height: .95; }
  .hero-lead { font-size: 17px; line-height: 1.5; }
  .hero-visual { aspect-ratio: 4 / 3; }
  .hero-facts { margin-top: 30px; }
  .method, .biography, .legacy, .consulting, .press, .gallery-section, .students { padding: 60px 16px; }
  .gallery { grid-template-columns: 1fr; gap: 12px; }
  .gallery-item,
  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-3,
  .gallery-item-4,
  .gallery-item-5,
  .gallery-item-6 { aspect-ratio: 4 / 3; min-height: 0; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-header, .hero .eyebrow, .hero h1, .hero-lead, .hero-actions, .hero-facts, .hero-visual { animation: none !important; }
  .reveal-on-scroll { opacity: 1 !important; transform: none !important; }
}
