:root {
  --paper: #f6f4ee;
  --paper-strong: #fffdf8;
  --ink: #151719;
  --ink-soft: #34383b;
  --muted: #6d7275;
  --line: #d2cec4;
  --line-dark: rgba(255, 255, 255, .22);
  --accent: #c64f2f;
  --accent-deep: #8f321d;
  --dark: #171a1d;
  --dark-soft: #202428;
  --cream: #f7f3eb;
  --max: 1320px;
  --gutter: clamp(20px, 3.5vw, 52px);
  --section-y: clamp(84px, 9vw, 138px);
  --radius: 16px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Roboto, "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: min(calc(100% - (2 * var(--gutter))), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 14px; top: -90px; z-index: 1000; background: var(--ink); color: #fff; padding: 11px 14px; border-radius: 8px; }
.skip-link:focus { top: 14px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(21, 23, 25, .12);
  background: rgba(246, 244, 238, .94);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -.015em;
}
.brand img { width: 36px; height: 36px; }
.brand-name { white-space: nowrap; }
.nav { display: flex; align-items: center; gap: clamp(13px, 1.55vw, 24px); }
.nav > a {
  position: relative;
  text-decoration: none;
  font-size: .86rem;
  color: var(--ink-soft);
}
.nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--accent);
  transition: right .25s var(--ease);
}
.nav > a:hover::after, .nav > a:focus-visible::after { right: 0; }
.availability-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.availability-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4f7a61;
  box-shadow: 0 0 0 4px rgba(79, 122, 97, .14);
}
.availability-link:hover, .availability-link:focus-visible { background: var(--ink); color: #fff; transform: translateY(-1px); }
.lang-switch { display: inline-flex; border-left: 1px solid var(--line); padding-left: 15px; gap: 7px; }
.lang-switch a { text-decoration: none; font-size: .73rem; font-weight: 650; color: var(--muted); }
.lang-switch a[aria-current="page"] { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-button svg { width: 28px; height: 28px; }

/* Typography and section rhythm */
.kicker, .eyebrow {
  margin: 0 0 18px;
  color: var(--accent-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: .105em;
  font-size: .70rem;
  font-weight: 700;
}
.dark-section .kicker, .dark-section .eyebrow { color: #ef9b82; }
h1, h2, h3 {
  margin-top: 0;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.034em;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}
h1 { font-size: clamp(3.05rem, 5.3vw, 5.2rem); margin-bottom: 27px; }
h2 { font-size: clamp(2.35rem, 3.8vw, 3.65rem); margin-bottom: 23px; }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.95rem); margin-bottom: 13px; }
p { margin-top: 0; }
.section {
  position: relative;
  padding: var(--section-y) 0;
}
.section::before {
  content: "";
  position: absolute;
  left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  top: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 2px, transparent 2px 8px);
}
.dark-section { color: var(--cream); background: var(--dark); }
.dark-section::before { background: repeating-linear-gradient(90deg, rgba(255,255,255,.23) 0 2px, transparent 2px 8px); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(250px, .82fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 78px);
}
.section-head h2 { max-width: 18ch; margin-bottom: 0; }
.section-head > p { max-width: 600px; margin-bottom: 5px; color: var(--muted); font-size: clamp(1rem, 1.15vw, 1.12rem); }
.dark-section .section-head > p { color: #bdc3c6; }

/* Hero: editorial grid with the original orange backing panel */
.hero {
  position: relative;
  min-height: calc(70svh - 74px);
  display: flex;
  align-items: center;
  padding: clamp(56px, 6vw, 92px) 0 clamp(78px, 8vw, 118px);
}
.hero::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 2px, transparent 2px 8px);
}
.hero-grid {
  width: min(calc(100% - (2 * var(--gutter))), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .86fr);
  gap: clamp(52px, 7vw, 110px);
  align-items: center;
}
.hero-copy { padding: 0; }
.hero-copy h1 { max-width: 12.2ch; }
.hero-lead { max-width: 690px; color: var(--ink-soft); font-size: clamp(1.08rem, 1.45vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 47px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 650;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button.primary { background: var(--ink); color: #fff; }
.button.primary:hover, .button.primary:focus-visible { background: var(--accent-deep); border-color: var(--accent-deep); }
.button.light { border-color: rgba(255,255,255,.78); color: #fff; }
.button.light:hover, .button.light:focus-visible { background: #fff; color: var(--ink); }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(44px, 6vw, 76px);
  border-top: 1px dotted var(--line);
  border-left: 1px dotted var(--line);
}
.hero-meta div { padding: 17px 18px; border-right: 1px dotted var(--line); border-bottom: 1px dotted var(--line); }
.hero-meta strong { display: block; margin-bottom: 5px; font-size: .82rem; font-weight: 650; }
.hero-meta span { display: block; color: var(--muted); font-size: .76rem; line-height: 1.48; }
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 10px 16px 22px 0;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 16px -15px -16px 16px;
  border-radius: var(--radius-lg);
  background: var(--accent);
  transform: rotate(2.6deg);
}
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255,255,255,.11) 25%);
  pointer-events: none;
}
.hero-visual picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--dark);
  box-shadow: 0 24px 64px rgba(20, 22, 24, .15);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.01); }
.scan-tag {
  position: absolute;
  z-index: 5;
  top: 20px;
  right: 20px;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.65);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-note {
  position: absolute;
  z-index: 5;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 12px;
  background: rgba(23, 26, 29, .82);
  color: #fff;
  backdrop-filter: blur(10px);
}
.hero-note strong { display: block; margin-bottom: 7px; font-size: clamp(1.08rem, 1.35vw, 1.25rem); font-weight: 500; line-height: 1.25; letter-spacing: -.015em; }
.hero-note span { display: block; max-width: 46ch; color: #d7dcde; font-size: clamp(.92rem, 1.05vw, 1rem); }
.keyword-rail { border-bottom: 1px solid var(--line); background: var(--paper-strong); overflow: hidden; }
.keyword-track { display: flex; width: max-content; animation: rail 38s linear infinite; }
.keyword-group { display: flex; align-items: center; white-space: nowrap; }
.keyword-group span { display: inline-flex; align-items: center; min-height: 54px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .70rem; text-transform: uppercase; letter-spacing: .08em; }
.keyword-group span::after { content: "/"; margin: 0 24px; color: var(--accent); }
@keyframes rail { to { transform: translateX(-50%); } }

/* Profile */
.profile-layout {
  display: grid;
  grid-template-columns: minmax(310px, .72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 8vw, 112px);
  align-items: start;
}
.profile-media { position: sticky; top: 104px; }
.profile-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.8); border-radius: var(--radius); }
.media-caption { display: flex; justify-content: space-between; gap: 16px; padding-top: 12px; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .65rem; letter-spacing: .05em; text-transform: uppercase; }
.profile-copy > p { max-width: 760px; color: var(--ink-soft); font-size: clamp(1rem, 1.2vw, 1.12rem); }
.external-link { display: inline-flex; align-items: center; gap: 5px; text-underline-offset: 4px; }
.external-link svg { width: .9em; height: .9em; flex: none; }
.fact-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 42px; border-top: 1px dotted var(--line); border-left: 1px dotted var(--line); }
.fact {
  position: relative;
  min-height: 162px;
  padding: 22px;
  border-right: 1px dotted var(--line);
  border-bottom: 1px dotted var(--line);
  background: rgba(255,255,255,.18);
  overflow: hidden;
  transition: color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.fact::before { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.fact:hover, .fact:focus-within { color: #fff; background: var(--dark); transform: translateY(-3px); }
.fact:hover::before, .fact:focus-within::before { transform: scaleX(1); }
.fact strong { display: block; max-width: 11ch; margin-bottom: 25px; font-size: clamp(1.15rem, 1.65vw, 1.48rem); font-weight: 600; line-height: 1.15; letter-spacing: -.025em; }
.fact span { display: block; color: var(--muted); font-size: .82rem; }
.fact:hover span, .fact:focus-within span { color: #cbd0d3; }

/* Focus areas */
.focus-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px dotted var(--line-dark); border-left: 1px dotted var(--line-dark); }
.focus-card {
  position: relative;
  min-height: 300px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px dotted var(--line-dark);
  border-bottom: 1px dotted var(--line-dark);
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
  transition: background .28s var(--ease), transform .28s var(--ease);
}
.focus-card::after {
  content: "";
  position: absolute;
  width: 190px;
  aspect-ratio: 1;
  right: -100px;
  bottom: -100px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 50%;
  transform: scale(.72);
  opacity: 0;
  transition: transform .36s var(--ease), opacity .28s var(--ease);
}
.focus-card:hover, .focus-card:focus-within { background: var(--dark-soft); transform: translateY(-3px); }
.focus-card:hover::after, .focus-card:focus-within::after { transform: scale(1); opacity: 1; }
.focus-index { display: flex; justify-content: space-between; margin-bottom: clamp(42px, 6vw, 68px); color: #8f979b; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .70rem; letter-spacing: .08em; }
.focus-index span:last-child { color: var(--accent); }
.focus-card h3 { max-width: 17ch; font-size: clamp(1.65rem, 2.6vw, 2.45rem); }
.focus-card p { max-width: 58ch; color: #bfc5c8; margin-bottom: 0; }

/* Practice */
.practice-feature {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(410px, 1.08fr);
  min-height: 600px;
  border: 1px dotted var(--line);
  background: var(--paper-strong);
}
.practice-feature-copy { display: flex; flex-direction: column; padding: clamp(32px, 5vw, 62px); }
.practice-feature-copy h3 { max-width: 14ch; font-size: clamp(1.95rem, 3.2vw, 3.15rem); }
.practice-feature-copy > p { color: var(--muted); max-width: 58ch; }
.case-points { display: grid; margin: 30px 0; border-top: 1px dotted var(--line); }
.case-point { display: grid; grid-template-columns: 112px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px dotted var(--line); }
.case-point strong { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .69rem; letter-spacing: .06em; text-transform: uppercase; }
.case-point span { color: var(--muted); font-size: .91rem; }
.practice-feature-media { position: relative; overflow: hidden; background: var(--dark); }
.practice-feature-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78); transition: transform .8s var(--ease); }
.practice-feature:hover .practice-feature-media img { transform: scale(1.022); }
.practice-feature-media::after { content: "CASE / 001"; position: absolute; top: 18px; right: 18px; color: #fff; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .67rem; letter-spacing: .08em; }
.text-link, .event-link { display: inline-flex; align-items: center; gap: 8px; width: fit-content; margin-top: auto; color: var(--ink); font-size: .91rem; font-weight: 650; text-underline-offset: 5px; }
.text-link svg, .event-link svg { transition: transform .2s var(--ease); }
.text-link:hover svg, .text-link:focus-visible svg, .event-link:hover svg, .event-link:focus-visible svg { transform: translate(3px, -2px); }
.practice-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin-top: 18px; }
.practice-card { display: grid; grid-template-columns: 1fr; border: 1px dotted var(--line); background: var(--paper-strong); overflow: hidden; }
.practice-card picture { overflow: hidden; }
.practice-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: saturate(.76); transition: transform .7s var(--ease), filter .35s var(--ease); }
.practice-card:hover img { transform: scale(1.028); filter: saturate(.96); }
.practice-card-copy { display: flex; flex-direction: column; padding: clamp(26px, 4vw, 40px); min-height: 305px; }
.practice-label { color: var(--accent-deep); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: uppercase; letter-spacing: .08em; font-size: .68rem; font-weight: 700; margin-bottom: 16px; }
.practice-card h3 { max-width: 19ch; }
.practice-card p { color: var(--muted); }

/* Events */
.events-list { border-top: 1px dotted var(--line); }
.event-row {
  display: grid;
  grid-template-columns: 130px minmax(250px, 300px) minmax(0, 1fr) 190px;
  gap: clamp(22px, 2.8vw, 42px);
  align-items: start;
  padding: clamp(30px, 3.5vw, 46px) 16px;
  border-bottom: 1px dotted var(--line);
  transition: background .22s var(--ease);
}
.event-row:hover, .event-row:focus-within { background: var(--paper-strong); }
.event-date { color: var(--accent-deep); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .70rem; letter-spacing: .06em; text-transform: uppercase; }
.event-date strong { display: block; color: var(--ink); font-family: Roboto, "Helvetica Neue", Arial, sans-serif; font-size: clamp(1.8rem, 3vw, 2.85rem); font-weight: 600; line-height: 1; letter-spacing: -.035em; }
.event-place { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .065em; }
.event-content { grid-column: 3; }
.event-content h3 { line-height: 1.12; font-size: clamp(1.3rem, 1.8vw, 1.8rem); }
.event-content p { color: var(--muted); margin-bottom: 0; }
.event-link { grid-column: 4; align-self: center; justify-self: start; white-space: nowrap; font-size: .85rem; }

/* Collaboration */
.collaboration-panel { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); border: 1px dotted var(--line-dark); }
.collaboration-copy { padding: clamp(36px, 6vw, 72px); }
.collaboration-copy h2 { max-width: 13ch; }
.collaboration-copy > p { max-width: 60ch; color: #bec4c7; font-size: 1.05rem; }
.collaboration-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.collaboration-options { display: grid; grid-template-rows: repeat(2, 1fr); border-left: 1px dotted var(--line-dark); }
.collab { padding: clamp(30px, 5vw, 52px); border-bottom: 1px dotted var(--line-dark); transition: background .24s var(--ease); }
.collab:last-child { border-bottom: 0; }
.collab:hover { background: rgba(255,255,255,.05); }
.collab-index { display: block; margin-bottom: 35px; color: var(--accent); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .69rem; }
.collab h3 { font-size: clamp(1.4rem, 2.05vw, 2rem); }
.collab p { color: #bfc5c8; margin-bottom: 0; }

/* Contact: previous copy and two-column structure inside the new framed field */
.contact-section { padding: clamp(82px, 10vw, 138px) 0; background: var(--accent); color: #fff; }
.contact-panel {
  width: min(100%, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  gap: clamp(48px, 7vw, 94px);
  align-items: center;
  padding: clamp(38px, 5.4vw, 66px);
  border: 1px solid rgba(255,255,255,.58);
  border-radius: var(--radius);
}
.contact-section .kicker { color: #fff; }
.contact-copy h2 { max-width: 15ch; margin-bottom: 24px; font-size: clamp(2.3rem, 4vw, 3.7rem); }
.contact-copy > p { max-width: 650px; margin-bottom: 0; color: #fff1ec; font-size: 1.02rem; }
.contact-details { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 28px; }
.contact-details a { color: #fff; font-weight: 650; text-underline-offset: 5px; }
.contact-actions { display: grid; gap: 11px; }
.contact-actions .button { width: 100%; min-height: 47px; border-color: #fff; color: #fff; }
.contact-actions .button:hover, .contact-actions .button:focus-visible { background: #fff; color: var(--ink); }
.contact-actions .button.primary { background: #fff; color: var(--ink); }
.contact-actions .button.primary:hover, .contact-actions .button.primary:focus-visible { background: transparent; color: #fff; border-color: #fff; }

/* Footer — intentionally retained */
.site-footer { padding: 34px 0 42px; color: #d9dfe1; background: var(--dark); border-top: 1px solid rgba(255,255,255,.15); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr auto; gap: 30px; align-items: start; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 650; }
.footer-brand img { width: 34px; height: 34px; }
.footer-note { color: #9ca5a9; font-size: .8rem; max-width: 480px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 15px; }
.footer-links a, .footer-links button { border: 0; background: none; padding: 0; color: #c5cbce; font: inherit; font-size: .82rem; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }

/* Legal pages */
.legal-main { padding: clamp(70px, 9vw, 126px) 0; }
.legal-main article { max-width: 880px; }
.legal-main h1 { max-width: none; font-size: clamp(2.8rem, 5vw, 5.2rem); }
.legal-main h2 { font-size: clamp(1.55rem, 2.6vw, 2.25rem); margin-top: 50px; }
.legal-main h3 { font-size: 1.14rem; margin-top: 27px; line-height: 1.25; letter-spacing: -.015em; }
.legal-main p, .legal-main li { color: var(--ink-soft); }
.legal-main a { text-underline-offset: 4px; }
.legal-main code { padding: 2px 5px; background: #ebe8e0; }
.translation-note { border-left: 3px solid var(--accent); padding-left: 16px; }

/* Privacy notice */
.notice { position: fixed; z-index: 100; left: 18px; right: 18px; bottom: 18px; display: none; }
.notice.is-visible { display: block; }
.notice-inner { width: min(100%, 860px); margin-inline: auto; padding: 18px; display: flex; gap: 22px; justify-content: space-between; align-items: center; color: #fff; background: rgba(23, 26, 29, .96); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 22px 80px rgba(0,0,0,.24); backdrop-filter: blur(15px); }
.notice p { margin: 0; color: #d6dcde; font-size: .88rem; }
.notice p strong { color: #fff; }
.notice-actions { display: flex; gap: 9px; flex-shrink: 0; }
.notice .button { min-height: 40px; padding: 0 14px; font-size: .82rem; border-color: rgba(255,255,255,.72); color: #fff; }
.notice .button.primary { color: var(--ink); background: #fff; }

:focus-visible { outline: 3px solid rgba(198,79,47,.42); outline-offset: 4px; }

@media (max-width: 1180px) {
  .brand-name { display: none; }
  .nav { gap: 14px; }
  .nav > a { font-size: .81rem; }
  .availability-link { padding-inline: 12px; font-size: .68rem; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr); gap: 48px; }
}


@media (max-width: 1050px) {
  .event-row { grid-template-columns: 110px 220px minmax(0, 1fr); }
  .event-content { grid-column: 3; }
  .event-link { grid-column: 3; margin-top: 10px; }
}

@media (max-width: 940px) {
  .menu-button { display: block; margin-left: 2px; }
  .availability-link { margin-left: auto; }
  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 23px var(--gutter) 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.is-open { display: flex; }
  .lang-switch { border-left: 0; padding-left: 0; padding-top: 6px; }
  .hero { min-height: auto; padding-top: 66px; }
  .hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy h1 { max-width: 13ch; }
  .hero-visual { width: min(100% - 20px, 700px); aspect-ratio: 5 / 4; margin: 0 auto 20px; }
  .section-head, .profile-layout, .practice-feature, .collaboration-panel { grid-template-columns: 1fr; }
  .profile-media { position: relative; top: auto; max-width: 650px; }
  .focus-grid { grid-template-columns: 1fr 1fr; }
  .practice-feature { min-height: 0; }
  .practice-feature-media { min-height: 500px; grid-row: 1; }
  .collaboration-options { border-left: 0; border-top: 1px dotted var(--line-dark); grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .collab { border-bottom: 0; border-right: 1px dotted var(--line-dark); }
  .collab:last-child { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --section-y: 78px; --gutter: 22px; }
  body { font-size: 15.5px; }
  .header-inner { min-height: 70px; gap: 10px; }
  .brand img { width: 38px; height: 38px; }
  .availability-link { min-height: 38px; max-width: 230px; padding-inline: 13px; font-size: .63rem; line-height: 1.2; }
  .menu-button { padding: 6px; }
  .nav { top: 70px; }
  h1 { font-size: clamp(2.4rem, 11.4vw, 3.35rem); line-height: 1.04; letter-spacing: -.032em; }
  h2 { font-size: clamp(2.05rem, 9.2vw, 2.75rem); line-height: 1.06; letter-spacing: -.03em; }
  h3 { font-size: clamp(1.3rem, 6.2vw, 1.75rem); line-height: 1.12; }
  .kicker, .eyebrow { font-size: .66rem; margin-bottom: 15px; }
  .hero { padding-top: 49px; padding-bottom: 78px; }
  .hero-grid { gap: 42px; }
  .hero-lead { font-size: 1.04rem; }
  .hero-actions { margin-top: 26px; }
  .hero-actions .button { flex: 1 1 190px; }
  .hero-meta { grid-template-columns: 1fr; margin-top: 38px; }
  .hero-meta div { padding: 14px 15px; }
  .hero-visual { width: calc(100% - 12px); aspect-ratio: 4 / 5; margin: 0 8px 18px 0; }
  .hero-visual::before { inset: 12px -10px -12px 12px; border-radius: 18px; transform: rotate(2.2deg); }
  .hero-visual picture, .hero-visual::after { border-radius: 18px; }
  .scan-tag { top: 15px; right: 15px; }
  .hero-note { left: 15px; right: 15px; bottom: 15px; padding: 17px 18px; }
  .hero-note strong { font-size: 1.08rem; }
  .hero-note span { font-size: .91rem; }
  .keyword-track { animation-duration: 28s; }
  .section-head { gap: 20px; margin-bottom: 42px; }
  .section-head h2 { max-width: 100%; }
  .section-head > p { font-size: 1rem; }
  .fact-grid, .practice-grid, .focus-grid { grid-template-columns: 1fr; }
  .fact { min-height: 142px; }
  .focus-card { min-height: 280px; }
  .focus-index { margin-bottom: 42px; }
  .practice-feature-copy { padding: 28px 23px 31px; }
  .practice-feature-copy h3 { max-width: 100%; font-size: clamp(1.8rem, 8.3vw, 2.35rem); }
  .case-point { grid-template-columns: 1fr; gap: 5px; }
  .practice-feature-media { min-height: 390px; }
  .practice-card-copy { min-height: 0; }
  .event-row { grid-template-columns: 1fr; gap: 11px; padding-inline: 0; }
  .event-content, .event-link { grid-column: auto; }
  .event-link { margin-top: 9px; }
  .collaboration-options { grid-template-columns: 1fr; }
  .collab { border-right: 0; border-bottom: 1px dotted var(--line-dark); }
  .collab:last-child { border-bottom: 0; }
  .contact-section { padding: 66px 0; }
  .contact-panel { grid-template-columns: 1fr; gap: 31px; padding: 30px 23px; text-align: center; }
  .contact-copy h2 { max-width: 100%; margin-inline: auto; font-size: clamp(1.95rem, 8.4vw, 2.55rem); }
  .contact-copy > p { margin-inline: auto; }
  .contact-details { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .notice-inner { align-items: flex-start; flex-direction: column; }
  .notice-actions { width: 100%; }
  .notice-actions .button { flex: 1; }
}

@media (max-width: 430px) {
  :root { --gutter: 18px; }
  .availability-link { max-width: 205px; padding-inline: 10px; font-size: .59rem; }
  .brand img { width: 36px; height: 36px; }
  .menu-button svg { width: 27px; height: 27px; }
  h1 { font-size: clamp(2.25rem, 10.8vw, 2.9rem); }
  h2 { font-size: clamp(1.9rem, 8.7vw, 2.4rem); }
  .hero-actions .button { width: 100%; }
  .hero-visual { width: calc(100% - 8px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
