/* ==========================================================
   OKSANA GUNDA — International Legal Advisor
   Design system v2 — editorial redesign
   ========================================================== */

:root{
  --green:#033035;
  --green-light:#0d4c54;
  --green-deep:#022226;
  --ivory:#F2E9DE;
  --sand:#D8C8B7;
  --brown:#60483B;
  --light:#F8F5F0;
  --white:#FFFFFF;
  --dark:#201E1B;
  --muted:#706A63;
  --border:rgba(3,48,53,0.16);
  --border-ivory:rgba(242,233,222,0.24);

  --serif:'Source Serif 4','Lora','Times New Roman',serif;
  --sans:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max:1400px;
  --pad:64px;
  --section-y:72px;

  --title-hero:clamp(52px,4.3vw,70px);
  --title-section:36px;
  --title-sub:25px;
}

@media (max-width:1024px){
  :root{ --pad:40px; --section-y:56px; }
}
@media (max-width:768px){
  :root{ --pad:22px; --section-y:44px; --title-hero:42px; --title-section:30px; --title-sub:23px; }
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--dark);
  background:var(--light);
  -webkit-font-smoothing:antialiased;
  font-size:16px;
  line-height:1.6;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--green);
  outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

.wrap{ max-width:var(--max); margin:0 auto; padding-left:var(--pad); padding-right:var(--pad); }
.wrap-narrow{ max-width:1040px; margin:0 auto; padding-left:var(--pad); padding-right:var(--pad); }

.label{
  font-size:11.5px;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:var(--muted);
  font-weight:600;
}
.label.on-dark{ color:rgba(242,233,222,0.68); }
.label.on-green{ color:rgba(242,233,222,0.6); }

.serif{ font-family:var(--serif); font-weight:400; }
.serif-medium{ font-family:var(--serif); font-weight:500; }
.serif-italic{ font-family:var(--serif); font-style:italic; font-weight:400; }

h1{ font-family:var(--serif); font-weight:400; font-size:var(--title-hero); line-height:0.98; letter-spacing:-0.02em; }
h2{ font-family:var(--serif); font-weight:400; font-size:var(--title-section); line-height:1.05; letter-spacing:-0.005em; }
h3{ font-family:var(--serif); font-weight:400; font-size:var(--title-sub); line-height:1.15; }
h1,h2,h3{ max-width:none; }

p.lead{ font-size:16px; line-height:1.5; color:var(--dark); max-width:52ch; }
p.body-text{ font-size:16px; line-height:1.5; color:var(--muted); max-width:58ch; }

.rule{ width:100%; height:1px; background:var(--border); border:0; margin:0; overflow:hidden; position:relative; }
.rule.on-dark{ background:var(--border-ivory); }
.rule i{ position:absolute; inset:0; background:var(--green); transform:scaleX(0); transform-origin:left; transition:transform 1.1s cubic-bezier(.16,1,.3,1); }
.rule.on-dark i{ background:var(--ivory); }
.rule.in i{ transform:scaleX(1); }

.arrow-link{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; text-transform:uppercase; letter-spacing:0.1em; font-weight:600;
  color:var(--green);
  padding-bottom:2px;
  border-bottom:1px solid var(--border);
}
.arrow-link.on-dark{ color:var(--ivory); border-color:var(--border-ivory); }
.arrow-link span{ transition:transform .35s cubic-bezier(.16,1,.3,1); }
.arrow-link:hover span{ transform:translateX(6px); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  height:54px; padding:0 32px;
  background:var(--green); color:var(--ivory);
  font-size:13px; text-transform:uppercase; letter-spacing:0.1em; font-weight:600;
  border-radius:2px; border:1px solid var(--green);
  transition:background .3s ease, color .3s ease;
}
.btn:hover{ background:var(--green-light); }
.btn:hover .btn-arrow{ transform:translateX(5px); }
.btn-arrow{ transition:transform .3s cubic-bezier(.16,1,.3,1); }
.btn.ghost{ background:transparent; color:var(--green); border:1px solid var(--border); }
.btn.ghost:hover{ background:var(--green); color:var(--ivory); }
.btn.on-dark{ background:var(--ivory); color:var(--green); border-color:var(--ivory); }
.btn.on-dark:hover{ background:var(--sand); }

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(248,245,240,0.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:border-color .4s ease, background .4s ease;
}
.site-header.scrolled{ border-bottom-color:var(--border); background:rgba(248,245,240,0.97); }
.header-inner{
  height:108px; display:flex; align-items:center; justify-content:space-between; gap:40px;
}
@media (max-width:768px){ .header-inner{ height:84px; } }

.brand{ display:flex; flex-direction:column; gap:5px; line-height:1; }
.brand-name{ font-family:var(--serif); font-weight:500; font-size:23px; color:var(--green); letter-spacing:0.005em; }
.brand-sub{ font-size:9.5px; letter-spacing:0.22em; text-transform:uppercase; color:var(--muted); font-weight:600; }

.main-nav{ display:flex; align-items:center; gap:38px; }
.main-nav a{
  font-size:12.5px; text-transform:uppercase; letter-spacing:0.09em; font-weight:600;
  color:var(--dark); position:relative; padding-bottom:5px;
}
.main-nav a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:1px; background:var(--green);
  transform:scaleX(0); transform-origin:right; transition:transform .35s cubic-bezier(.16,1,.3,1);
}
.main-nav a:hover::after, .main-nav a.active::after{ transform:scaleX(1); transform-origin:left; }
.main-nav a.active{ color:var(--green); }

.header-right{ display:flex; align-items:center; gap:26px; }
.header-right::before{ content:''; width:1px; height:22px; background:var(--border); margin-right:2px; }
@media (max-width:960px){ .header-right::before{ display:none; } }
.lang-switch{ display:flex; align-items:center; gap:6px; font-size:11.5px; font-weight:700; letter-spacing:0.04em; }
.lang-switch a{ color:var(--muted); padding:2px 3px; }
.lang-switch a.active{ color:var(--green); border-bottom:1px solid var(--green); }
.lang-switch span{ color:var(--border); }

.burger{ display:none; flex-direction:column; gap:5px; width:26px; background:none; border:0; padding:4px; }
.burger span{ height:1px; background:var(--green); width:100%; }

@media (max-width:960px){
  .main-nav{ display:none; }
  .header-cta{ display:none; }
  .burger{ display:flex; }
}

.mobile-nav{
  position:fixed; inset:0; z-index:80;
  background:var(--light);
  display:flex; flex-direction:column;
  padding:24px; transform:translateY(-100%); transition:transform .45s cubic-bezier(.16,1,.3,1);
}
.mobile-nav.open{ transform:translateY(0); }
.mobile-nav-top{ display:flex; align-items:center; justify-content:space-between; height:84px; }
.mobile-nav-close{ background:none; border:0; font-size:28px; color:var(--green); line-height:1; }
.mobile-nav-links{ display:flex; flex-direction:column; gap:2px; margin-top:20px; }
.mobile-nav-links a{ font-family:var(--serif); font-weight:400; font-size:var(--title-section); line-height:1.15; color:var(--green); padding:12px 0; border-bottom:1px solid var(--border); word-break:break-word; }
.mobile-nav-foot{ margin-top:auto; display:flex; flex-direction:column; gap:18px; padding-top:24px; }

/* ---------- reveal helpers ---------- */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-img{ overflow:hidden; }
.reveal-img img{ transform:scale(1.1); transition:transform 1.4s cubic-bezier(.16,1,.3,1); }
.reveal-img.in img{ transform:scale(1); }
.reveal-side{ opacity:0; transform:translateX(-26px); transition:opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal-side.from-right{ transform:translateX(26px); }
.reveal-side.in{ opacity:1; transform:translateX(0); }
.reveal-clip{ clip-path:inset(0 0 100% 0); transition:clip-path 1.1s cubic-bezier(.16,1,.3,1); }
.reveal-clip.in{ clip-path:inset(0 0 0% 0); }
.mask{ overflow:hidden; }
.mask span{ display:block; transform:translateY(112%); transition:transform 1.05s cubic-bezier(.16,1,.3,1); }
.mask.in span{ transform:translateY(0); }

/* ---------- hero ---------- */
.hero{ display:flex; padding:0; }
@media (max-width:960px){ .hero{ flex-direction:column; } }
.hero-left{
  position:relative; display:flex; flex-direction:column; justify-content:center; flex:1; min-width:0;
  padding:44px 40px 40px var(--pad);
}
.hero-left::before{
  content:''; position:absolute; left:0; top:0; bottom:0; width:6px; background:var(--green);
}
.hero-name{ font-size:13px; text-transform:uppercase; letter-spacing:0.18em; color:var(--green); font-weight:700; margin-top:8px; }
.hero h1{ max-width:830px; margin-top:12px; font-size:clamp(54px,4.4vw,72px); line-height:0.98; letter-spacing:-0.02em; }
@media (max-width:768px){ .hero h1 .hero-line-break{ display:none; } }
.hero-left .lead{ margin-top:18px; }
.hero-cta-row{ display:flex; align-items:center; gap:30px; flex-wrap:wrap; margin-top:20px; }
.hero-cities{ display:flex; align-items:center; gap:14px; margin-top:22px; }
.hero-cities .rule-h{ width:44px; height:1px; background:var(--green); }
.hero-cities span{ font-size:12px; letter-spacing:0.14em; text-transform:uppercase; color:var(--muted); }

.hero-right{ position:relative; flex:none; }
.hero-right img{ display:block; width:auto; height:740px; max-width:100%; }
@media (max-height:850px){ .hero-right img{ height:660px; } }
@media (max-width:1200px){ .hero-right img{ height:600px; } }
@media (max-width:960px){ .hero-right img{ width:100%; height:auto; } }

/* ---------- generic sections ---------- */
section{ padding:var(--section-y) 0; position:relative; }
.bg-white{ background:var(--white); }
.bg-light{ background:var(--light); }
.bg-ivory{ background:var(--ivory); }
.bg-green{ background:var(--green); color:var(--ivory); }
.bg-green h2, .bg-green h1, .bg-green h3{ color:var(--ivory); }
.bg-green p{ color:rgba(242,233,222,0.82); }
.bg-green-deep{ background:var(--green-deep); color:var(--ivory); }

/* -------- 02 large typographic intro -------- */
.big-intro{ display:grid; grid-template-columns:120px 1fr; gap:20px; }
@media (max-width:768px){ .big-intro{ grid-template-columns:1fr; } }
.big-intro .num{ font-family:var(--sans); font-size:13px; font-weight:600; color:var(--brown); letter-spacing:0.06em; }
.big-intro h2{ max-width:20ch; }
.big-intro p{ margin-top:34px; max-width:56ch; }

/* -------- 03 practice staggered list -------- */
.practice-layout{ display:grid; grid-template-columns:0.66fr 1.34fr; gap:60px; align-items:start; }
@media (max-width:900px){ .practice-layout{ grid-template-columns:1fr; gap:36px; } }
.practice-intro h2{ margin-top:20px; }
.practice-intro p{ margin-top:24px; }
.stagger-list{ display:flex; flex-direction:column; }
.stagger-item{
  display:grid; grid-template-columns:56px 1fr; gap:22px; align-items:baseline;
  padding:30px 0; border-top:1px solid var(--border); cursor:default;
  transition:padding-left .4s cubic-bezier(.16,1,.3,1);
}
.stagger-list .stagger-item:last-child{ border-bottom:1px solid var(--border); }
.stagger-item .num{ font-family:var(--sans); font-size:13px; font-weight:600; color:var(--brown); letter-spacing:0.06em; }
.stagger-item h3{ transition:color .3s ease; }
.stagger-item .desc{
  grid-column:2; max-height:0; overflow:hidden; opacity:0;
  transition:max-height .5s cubic-bezier(.16,1,.3,1), opacity .4s ease, margin-top .4s ease;
  color:var(--muted); font-size:15px; line-height:1.7; max-width:52ch;
}
.stagger-item:hover{ padding-left:14px; }
.stagger-item:hover h3{ color:var(--green); }
.stagger-item:hover .desc{ max-height:140px; opacity:1; margin-top:14px; }

/* -------- 04 about oversized photo -------- */
.about-big{ display:grid; grid-template-columns:1.15fr 0.85fr; gap:0; align-items:stretch; }
@media (max-width:900px){ .about-big{ grid-template-columns:1fr; } }
.about-big-photo{ position:relative; overflow:hidden; background:var(--sand); min-height:440px; }
@media (max-width:768px){ .about-big-photo{ min-height:auto; aspect-ratio:4/5; } }
.about-big-photo img{ width:100%; height:100%; object-fit:cover; }
.about-big-caption{
  position:absolute; left:28px; bottom:28px; color:var(--ivory);
  background:rgba(3,48,53,0.72); padding:14px 18px; backdrop-filter:blur(4px);
}
.about-big-caption .cap-name{ font-size:11px; letter-spacing:0.14em; text-transform:uppercase; font-weight:700; }
.about-big-caption .cap-cities{ font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase; color:rgba(242,233,222,0.72); margin-top:4px; }
.about-big-text{ display:flex; flex-direction:column; justify-content:center; padding:48px var(--pad); gap:16px; }
.about-founder-lines{ margin-top:20px; display:flex; flex-direction:column; gap:16px; }
.about-founder-lines div span.role{ display:block; font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--brown); font-weight:700; margin-bottom:3px; }
.about-founder-lines div span.org{ font-family:var(--serif); font-weight:400; font-size:var(--title-sub); color:var(--green); line-height:1.15; }

/* ============== HOME — compact About preview (small editorial photo insert) ============== */
.about-compact{ display:grid; grid-template-columns:0.4fr 0.6fr; gap:50px; align-items:center; }
@media (max-width:800px){ .about-compact{ grid-template-columns:1fr; gap:24px; } }
.about-compact-photo{ width:100%; max-width:420px; aspect-ratio:6/5; overflow:hidden; background:var(--sand); }
.about-compact-photo img{ width:100%; height:100%; object-fit:cover; }
@media (max-width:800px){ .about-compact-photo{ max-width:100%; aspect-ratio:4/3; } }

/* ============== HOME — About block: photo as edge-to-edge left wall ============== */
.about-edge{ display:flex; align-items:center; }
@media (max-width:800px){ .about-edge{ flex-direction:column; } }
.about-edge-photo{ position:relative; flex:none; }
.about-edge-photo img{ display:block; width:auto; height:480px; max-width:100%; }
@media (max-width:1200px){ .about-edge-photo img{ height:420px; } }
@media (max-width:800px){ .about-edge-photo img{ width:100%; height:auto; } }
.about-edge-text{ display:flex; flex-direction:column; justify-content:center; flex:1; min-width:0; padding:32px var(--pad); }
@media (max-width:800px){ .about-edge-text{ padding:28px var(--pad); } }

/* -------- 05 green international typographic block -------- */
.geo-block{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:70px; align-items:start; }
@media (max-width:860px){ .geo-block{ grid-template-columns:1fr; gap:40px; } }
.geo-cities{ display:flex; flex-direction:column; }
.geo-city{ padding:20px 0; border-top:1px solid var(--border-ivory); }
.geo-cities .geo-city:last-child{ border-bottom:1px solid var(--border-ivory); }
.geo-city .name{ font-family:var(--serif); font-weight:400; font-size:var(--title-sub); letter-spacing:-0.005em; line-height:1.15; display:block; }
.geo-city .country{ font-size:12px; text-transform:uppercase; letter-spacing:0.1em; color:rgba(242,233,222,0.55); margin-top:4px; display:block; }
.geo-city p{ margin-top:14px; font-size:14.5px; max-width:44ch; color:rgba(242,233,222,0.78); }

/* -------- 06/08 compact quote moment (small photo + quote) -------- */
.cinema{ display:flex; align-items:center; }
@media (max-width:860px){ .cinema{ flex-direction:column; } }
.cinema-img{ position:relative; flex:none; }
.cinema-img img{ display:block; width:auto; height:340px; max-width:100%; }
@media (max-width:1200px){ .cinema-img img{ height:300px; } }
@media (max-width:860px){ .cinema-img img{ width:100%; height:auto; } }
.cinema-text{ display:flex; flex-direction:column; justify-content:center; flex:1; min-width:0; padding:32px var(--pad); background:var(--ivory); }
.cinema-quote{ font-family:var(--serif); font-weight:400; font-size:var(--title-section); line-height:1.08; color:var(--green); }
.cinema-cite{ margin-top:16px; font-size:12.5px; text-transform:uppercase; letter-spacing:0.1em; color:var(--muted); font-weight:600; }

/* -------- 07 experience sticky timeline -------- */
.exp-wrap{ display:grid; grid-template-columns:0.8fr 1.2fr; gap:0; }
@media (max-width:900px){ .exp-wrap{ grid-template-columns:1fr; gap:0; } }
.exp-img{ position:sticky; top:0; height:min(100vh,640px); overflow:hidden; background:var(--sand); }
.exp-img img{ width:100%; height:100%; object-fit:cover; }
@media (max-width:900px){ .exp-img{ position:static; height:auto; aspect-ratio:2/3; } }
.exp-right{ padding:56px var(--pad); background:var(--white); }
.exp-item{ padding-bottom:40px; }
.exp-item:last-child{ padding-bottom:0; }
.exp-item .yr{ font-family:var(--serif); font-weight:400; font-size:var(--title-sub); color:var(--green); line-height:1.15; display:block; margin-bottom:10px; }
.exp-item h4{ font-family:var(--sans); font-weight:700; font-size:15px; margin-bottom:10px; text-transform:uppercase; letter-spacing:0.04em; }
.exp-item p{ color:var(--muted); font-size:14.5px; line-height:1.75; max-width:48ch; }
.exp-item .tags{ margin-top:12px; font-size:12.5px; color:var(--brown); line-height:1.9; }
.exp-rule{ width:60px; height:1px; background:var(--border); margin-bottom:28px; }

/* -------- 08 professional ecosystem editorial spread -------- */
.eco-spread{ display:flex; flex-direction:column; }
.eco-big{ padding:44px 0; border-top:1px solid var(--border); display:grid; grid-template-columns:1fr 1fr; gap:30px; align-items:baseline; }
.eco-spread .eco-big:last-child{ border-bottom:1px solid var(--border); }
@media (max-width:700px){ .eco-big{ grid-template-columns:1fr; gap:10px; } }
.eco-big h3{ }
.eco-big p{ color:var(--muted); font-size:15px; line-height:1.7; max-width:44ch; }
.eco-big .side-label{ writing-mode:vertical-rl; text-orientation:mixed; font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:var(--brown); font-weight:700; justify-self:start; }

/* -------- 09 second green quote split -------- */
.quote-split-green{ display:grid; grid-template-columns:1.3fr 0.7fr; gap:60px; align-items:start; }
@media (max-width:860px){ .quote-split-green{ grid-template-columns:1fr; gap:30px; } }
.quote-split-green .q{ font-family:var(--serif); font-weight:400; font-size:var(--title-section); line-height:1.05; }
.quote-split-green .side-note{ padding-top:14px; border-top:1px solid var(--border-ivory); font-size:14.5px; line-height:1.8; color:rgba(242,233,222,0.78); }

/* -------- 10 publications editorial magazine -------- */
.pub-mag{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:70px; align-items:start; }
@media (max-width:900px){ .pub-mag{ grid-template-columns:1fr; gap:34px; } }
.pub-mag-img{ overflow:hidden; background:var(--sand); aspect-ratio:3/4; }
.pub-mag-img img{ width:100%; height:100%; object-fit:cover; }
.pub-main-item{ padding-bottom:24px; border-bottom:1px solid var(--border); margin-bottom:24px; }
.pub-main-item h3{ margin:14px 0 12px; }
.pub-minor{ display:flex; flex-direction:column; gap:22px; }
.pub-minor-item{ display:flex; justify-content:space-between; gap:20px; align-items:baseline; }
.pub-minor-item h4{ font-family:var(--serif); font-weight:400; font-size:var(--title-section); line-height:1.05; }
.pub-minor-item span{ font-size:12px; color:var(--muted); text-transform:uppercase; letter-spacing:0.06em; flex:none; }

/* -------- 11 final CTA clean -------- */
.final-cta-clean{ display:grid; grid-template-columns:1fr auto; gap:60px; align-items:center; }
@media (max-width:860px){ .final-cta-clean{ grid-template-columns:1fr; gap:34px; } }
.final-cta-clean .photo-strip{ width:180px; height:260px; overflow:hidden; background:var(--sand); justify-self:end; }
.final-cta-clean .photo-strip img{ width:100%; height:100%; object-fit:cover; }
@media (max-width:860px){ .final-cta-clean .photo-strip{ display:none; } }

/* ---------- footer (classic, structured) ---------- */
.site-footer{ background:var(--green); color:var(--ivory); padding-top:1px; }
.footer-inner{ padding:90px 0 40px; }
@media (max-width:768px){ .footer-inner{ padding-left:24px; padding-right:24px; } }
@media (max-width:390px){ .footer-inner{ padding-left:20px; padding-right:20px; } }
.footer-grid{ display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:50px; padding-bottom:56px; border-top:1px solid var(--border-ivory); padding-top:70px; }
@media (max-width:768px){ .footer-grid{ grid-template-columns:1fr; gap:40px; } }

/* spacer between a dark-green content block and the (also dark-green) footer,
   so the two never read as one fused area */
.footer-spacer{ background:var(--light); height:84px; padding:0; }
@media (max-width:768px){ .footer-spacer{ height:56px; } }
.footer-brand .brand-name{ color:var(--ivory); font-size:26px; }
.footer-brand .label{ color:rgba(242,233,222,0.62); margin-top:10px; }
.footer-cities{ margin-top:16px; font-size:13px; letter-spacing:0.08em; color:rgba(242,233,222,0.62); }
.footer-col h4{ font-size:11px; text-transform:uppercase; letter-spacing:0.12em; color:rgba(242,233,222,0.5); margin-bottom:20px; font-weight:700; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14.5px; color:var(--ivory); }
.footer-col a:hover{ text-decoration:underline; text-underline-offset:4px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; border-top:1px solid var(--border-ivory); flex-wrap:wrap; gap:14px; font-size:12px; color:rgba(242,233,222,0.55); }
.footer-bottom .lang-switch a{ color:rgba(242,233,222,0.55); }
.footer-bottom .lang-switch a.active{ color:var(--ivory); border-color:var(--ivory); }

/* ---------- interior page hero ---------- */
.page-hero{ padding-top:64px; padding-bottom:56px; }
.page-hero.with-photo{ display:grid; grid-template-columns:1.1fr 0.9fr; align-items:stretch; padding:0; }
@media (max-width:900px){ .page-hero.with-photo{ grid-template-columns:1fr; } }
.page-hero-text{ display:flex; flex-direction:column; justify-content:center; padding:64px var(--pad) 56px; gap:16px; position:relative; }
@media (max-width:1024px){
  .page-hero{ padding-top:48px; padding-bottom:44px; }
  .page-hero-text{ padding-top:48px; padding-bottom:44px; }
}
@media (max-width:768px){
  .page-hero{ padding-top:36px; padding-bottom:36px; }
  .page-hero-text{ padding-top:36px; padding-bottom:32px; }
}
.page-hero-text.with-accent{ border-left:6px solid var(--green); }
.page-hero-photo{ overflow:hidden; background:var(--sand); min-height:300px; }
@media (max-width:768px){ .page-hero-photo{ min-height:auto; aspect-ratio:4/5; } }
.page-hero-photo img{ width:100%; height:100%; object-fit:cover; }
.page-hero .kicker{ display:flex; align-items:center; gap:14px; margin-bottom:4px; }
.page-hero .kicker span{ font-size:12px; letter-spacing:0.14em; text-transform:uppercase; color:var(--muted); }
.page-hero .kicker .rule-h{ width:40px; height:1px; background:var(--green); }

/* about page — education / recognition (varied, not identical rows) */
.edu-feature{ display:grid; grid-template-columns:160px 1fr; gap:40px; padding:44px 0; border-top:1px solid var(--border); }
.edu-feature:first-child{ border-top:none; }
@media (max-width:640px){ .edu-feature{ grid-template-columns:1fr; gap:10px; } }
.edu-feature .yr{ font-family:var(--serif); font-weight:400; font-size:var(--title-sub); color:var(--green); line-height:1.15; }
.edu-feature p{ color:var(--muted); font-size:15.5px; line-height:1.75; margin-bottom:8px; }
.edu-feature p strong{ color:var(--dark); font-weight:600; }

.recog-strip{ display:flex; flex-wrap:wrap; gap:1px; background:var(--border); margin-top:20px; }
.recog-cell{ flex:1 1 260px; background:var(--light); padding:32px 28px; }
.recog-cell .yr{ font-family:var(--serif); font-weight:400; font-size:var(--title-sub); color:var(--brown); line-height:1.15; display:block; margin-bottom:12px; }
.recog-cell p{ font-size:14.5px; color:var(--dark); line-height:1.6; }
.recog-cell p em{ display:block; font-style:normal; color:var(--muted); font-size:13px; margin-top:4px; }

.roles-editorial{ margin-top:10px; }
.role-row{ display:grid; grid-template-columns:1fr 1.6fr; gap:30px; padding:32px 0; border-top:1px solid var(--border); align-items:baseline; }
.roles-editorial .role-row:last-child{ border-bottom:1px solid var(--border); }
@media (max-width:700px){ .role-row{ grid-template-columns:1fr; gap:8px; } }
.role-row h3{ }
.role-row p{ color:var(--muted); font-size:14.5px; line-height:1.7; }

.civic-flow{ display:flex; flex-direction:column; }
.civic-flow-item{ display:grid; grid-template-columns:0.5fr 1.5fr; gap:40px; padding:40px 0; border-top:1px solid var(--border); }
.civic-flow .civic-flow-item:last-child{ border-bottom:1px solid var(--border); }
@media (max-width:700px){ .civic-flow-item{ grid-template-columns:1fr; gap:10px; } }
.civic-flow-item h4{ font-family:var(--serif); font-weight:400; font-size:var(--title-sub); color:var(--green); line-height:1.15; }
.civic-flow-item p{ color:var(--muted); font-size:14.5px; line-height:1.75; max-width:56ch; }

/* practice page — big intro numbers */
.practice-intro-hero{ display:grid; grid-template-columns:1fr; align-items:end; gap:30px; }
.hero-top-pad{ padding-top:56px; }
@media (max-width:1024px){ .hero-top-pad{ padding-top:44px; } }
@media (max-width:768px){ .hero-top-pad{ padding-top:36px; } }

/* ============== PRACTICE PAGE — split-screen hero (green + photo) ============== */
.practice-hero-split{
  display:grid;
  grid-template-columns:55% 45%;
  width:100%;
  min-height:560px;
  padding:0;
}
@media (max-width:1024px){ .practice-hero-split{ grid-template-columns:52% 48%; min-height:500px; } }
@media (max-width:768px){ .practice-hero-split{ display:flex; flex-direction:column; min-height:auto; } }

.practice-hero-green{
  position:relative;
  background:var(--green);
  color:#F8F5F0;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:56px 80px 44px var(--pad);
}
@media (max-width:1024px){ .practice-hero-green{ padding:48px 48px 40px var(--pad); } }
@media (max-width:768px){ .practice-hero-green{ padding:44px 24px 40px; } }
@media (max-width:390px){ .practice-hero-green{ padding-left:20px; padding-right:20px; } }

.practice-hero-green .kicker{ display:flex; align-items:center; gap:14px; margin-bottom:28px; }
.practice-hero-green .kicker span:first-child{
  font-family:var(--sans); font-size:12px; text-transform:uppercase; letter-spacing:0.14em;
  font-weight:500; color:rgba(248,245,240,0.72);
}
.practice-hero-green .kicker .rule-h{ width:60px; height:1px; background:rgba(248,245,240,0.4); }

.practice-hero-green h1{
  letter-spacing:-0.02em;
  color:#F8F5F0; max-width:600px; margin-bottom:24px;
}
@media (max-width:768px){ .practice-hero-green h1{ max-width:100%; margin-bottom:20px; } }

.practice-hero-green p.lead{
  font-family:var(--sans); font-weight:400; font-size:16px; line-height:1.5;
  color:rgba(248,245,240,0.76); max-width:540px;
}

.practice-hero-cities{ display:flex; align-items:center; gap:16px; margin-top:44px; }
.practice-hero-cities .v-line{ width:1px; height:18px; background:rgba(248,245,240,0.5); }
.practice-hero-cities span:last-child{
  font-family:var(--sans); font-size:13px; text-transform:uppercase; letter-spacing:0.2em; color:rgba(248,245,240,0.65);
}
@media (max-width:768px){ .practice-hero-cities span:last-child{ font-size:11px; } }

.practice-hero-link{
  display:inline-flex; align-items:center; gap:8px; margin-top:26px; width:fit-content;
  font-family:var(--sans); font-size:12px; text-transform:uppercase; letter-spacing:0.1em;
  color:#fff; border-bottom:1px solid rgba(248,245,240,0.45); padding-bottom:3px;
}
.practice-hero-link span{ transition:transform .3s ease; }
.practice-hero-link:hover span{ transform:translateX(5px); }

.practice-hero-micro{ position:absolute; right:80px; bottom:60px; display:flex; flex-direction:column; gap:4px; text-align:right; }
.practice-hero-micro span{ font-family:var(--sans); font-size:10.5px; text-transform:uppercase; letter-spacing:0.18em; color:rgba(248,245,240,0.5); }
@media (max-width:1024px){ .practice-hero-micro{ right:48px; bottom:48px; } }
@media (max-width:768px){ .practice-hero-micro{ display:none; } }

.practice-hero-divider{ position:absolute; top:45px; bottom:45px; right:0; width:1px; background:rgba(248,245,240,0.45); }
@media (max-width:768px){ .practice-hero-divider{ display:none; } }

.practice-hero-photo{ overflow:hidden; background:var(--sand); display:flex; align-items:stretch; justify-content:center; }
.practice-hero-photo img{ width:100%; height:100%; object-fit:cover; object-position:50% 12%; display:block; }
@media (max-width:768px){ .practice-hero-photo{ width:100%; aspect-ratio:4/5; } .practice-hero-photo img{ width:100%; height:100%; object-position:50% 12%; } }
.accordion{ margin-top:10px; }
.acc-item{ border-top:1px solid var(--border); }
.accordion .acc-item:last-child{ border-bottom:1px solid var(--border); }
.acc-trigger{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:28px 0; background:none; border:0; text-align:left; }
.acc-trigger .acc-num{ font-family:var(--sans); font-weight:600; color:var(--brown); font-size:13px; letter-spacing:0.06em; width:40px; flex:none; }
.acc-trigger h3{ flex:1; }
.acc-plus{ position:relative; width:16px; height:16px; flex:none; }
.acc-plus::before,.acc-plus::after{ content:''; position:absolute; background:var(--green); transition:transform .35s cubic-bezier(.16,1,.3,1); }
.acc-plus::before{ left:0; top:50%; width:100%; height:1px; transform:translateY(-50%); }
.acc-plus::after{ top:0; left:50%; height:100%; width:1px; transform:translateX(-50%); }
.acc-item.open .acc-plus::after{ transform:translateX(-50%) rotate(90deg); opacity:0; }
.acc-panel{ max-height:0; overflow:hidden; transition:max-height .45s cubic-bezier(.16,1,.3,1); }
.acc-panel-inner{ padding:0 0 32px 40px; max-width:62ch; }
.acc-panel-inner p{ color:var(--muted); font-size:15.5px; line-height:1.75; }
.acc-cta{ margin-top:70px; display:flex; justify-content:flex-start; }

/* international page — heavy green, typographic cities */
.jur-city-type{ display:flex; flex-direction:column; }
.jur-city-row{ padding:36px 0; border-top:1px solid var(--border-ivory); display:grid; grid-template-columns:0.4fr 0.4fr 1.2fr; gap:30px; align-items:baseline; }
.jur-city-type .jur-city-row:last-child{ border-bottom:1px solid var(--border-ivory); }
@media (max-width:800px){ .jur-city-row{ grid-template-columns:1fr; gap:12px; } }
.jur-city-row .city-name{ font-family:var(--serif); font-weight:400; font-size:var(--title-sub); line-height:1.15; }
.jur-city-row .city-num{ font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:rgba(242,233,222,0.55); align-self:start; }
.jur-city-row .city-detail ul{ display:flex; flex-wrap:wrap; gap:8px 22px; margin-bottom:14px; }
.jur-city-row .city-detail li{ font-size:14px; color:rgba(242,233,222,0.75); }
.jur-city-row .city-detail p{ font-size:15px; color:rgba(242,233,222,0.85); line-height:1.7; max-width:56ch; }

/* publications page — magazine archive */
.filters{ display:flex; gap:10px; margin-top:36px; flex-wrap:wrap; }
.filter-btn{ padding:10px 20px; border:1px solid var(--border); background:transparent; font-size:12.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--muted); border-radius:2px; transition:all .25s ease; }
.filter-btn.active, .filter-btn:hover{ background:var(--green); color:var(--ivory); border-color:var(--green); }
.pub-archive-mag{ margin-top:20px; display:flex; flex-direction:column; }
.pub-arch-feature{ display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; padding:50px 0; border-top:1px solid var(--border); }
@media (max-width:800px){ .pub-arch-feature{ grid-template-columns:1fr; gap:20px; } }
.pub-arch-feature .tag{ font-size:11.5px; text-transform:uppercase; letter-spacing:0.1em; color:var(--brown); font-weight:700; }
.pub-arch-feature h3{ margin:12px 0 10px; }
.pub-arch-feature p{ color:var(--muted); font-size:14.5px; line-height:1.7; }
.pub-arch-feature .num-lg{ font-family:var(--sans); font-weight:600; font-size:13px; color:var(--brown); letter-spacing:0.06em; text-align:right; }

/* contact page — calm split */
.contact-grid{ display:grid; grid-template-columns:minmax(320px,0.9fr) minmax(0,1.1fr); align-items:stretch; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; min-height:auto; } }
.contact-photo{ overflow:hidden; background:var(--sand); min-height:100%; }
.contact-photo img{ width:100%; height:100%; object-fit:cover; }
@media (max-width:900px){ .contact-photo{ min-height:auto; aspect-ratio:4/5; } }
.contact-right{ display:flex; flex-direction:column; justify-content:flex-start; background:var(--light); }
.contact-left{ display:flex; flex-direction:column; justify-content:center; padding:56px 48px 24px var(--pad); gap:20px; }
@media (max-width:1024px){ .contact-left{ padding-top:44px; } }
@media (max-width:768px){ .contact-left{ padding-top:36px; padding-right:var(--pad); } }

.contact-list-wrap{ display:flex; flex-direction:column; justify-content:flex-start; padding:0 48px 0 var(--pad); margin-top:0; }
@media (max-width:900px){ .contact-list-wrap{ padding:0 var(--pad) 40px; } }
.contact-list{ display:flex; flex-direction:column; }
.contact-row{ display:flex; justify-content:space-between; align-items:center; padding:20px 0; border-top:1px solid var(--border); font-size:16px; color:var(--dark); }
.contact-list .contact-row:last-of-type, .contact-list .contact-row-block:last-child{ border-bottom:1px solid var(--border); }
.contact-row .arrow{ font-size:15px; color:var(--muted); transition:transform .3s ease; }
.contact-row:hover .arrow{ transform:translate(3px,-3px); color:var(--green); }
.contact-row-block{ padding:20px 0; border-top:1px solid var(--border); }
.contact-row-block .label{ display:block; margin-bottom:8px; }
.contact-row-block p{ font-size:16px; color:var(--dark); line-height:1.5; }
.contact-row-block p a{ color:var(--dark); }

/* consultation page — minimal private office */
.consult-wrap{ display:grid; grid-template-columns:0.72fr 1.28fr; gap:90px; }
@media (max-width:960px){ .consult-wrap{ grid-template-columns:1fr; gap:40px; } }
.consult-photo{ overflow:hidden; background:var(--sand); aspect-ratio:3/4; position:sticky; top:130px; }
.consult-photo img{ width:100%; height:100%; object-fit:cover; }
@media (max-width:960px){ .consult-photo{ position:static; aspect-ratio:16/9; } }

.field{ margin-bottom:30px; }
.field label{ display:block; font-size:12px; text-transform:uppercase; letter-spacing:0.08em; color:var(--muted); margin-bottom:10px; font-weight:600; }
.field input, .field textarea, .field select{
  width:100%; border:0; border-bottom:1px solid var(--border); background:transparent;
  font-family:var(--sans); font-size:16px; padding:10px 0; color:var(--dark);
  transition:border-color .3s ease;
}
.field select{ appearance:none; -webkit-appearance:none; background:transparent; }
.field input:focus, .field textarea:focus, .field select:focus{ border-color:var(--green); outline:none; }
.field textarea{ resize:vertical; min-height:100px; }
.field.error input, .field.error textarea{ border-color:#9b3b34; }
.field-error-msg{ display:none; font-size:12.5px; color:#9b3b34; margin-top:8px; }
.field.error .field-error-msg{ display:block; }
.row-2{ display:grid; grid-template-columns:1fr 1fr; gap:30px; }
@media (max-width:560px){ .row-2{ grid-template-columns:1fr; } }
.checkbox-field{ display:flex; align-items:flex-start; gap:12px; margin-bottom:36px; }
.checkbox-field input{ margin-top:4px; width:16px; height:16px; accent-color:var(--green); flex:none; }
.checkbox-field label{ font-size:14px; color:var(--muted); line-height:1.6; text-transform:none; letter-spacing:0; font-weight:400; }
.form-success{ display:none; padding:40px 0; }
.form-success.show{ display:block; }
.form-success h3{ color:var(--green); margin-bottom:14px; }
.form-success p{ color:var(--muted); }
#consultForm.hide{ display:none; }

.center{ text-align:center; }
::selection{ background:var(--green); color:var(--ivory); }

/* ============== HOME — compact companies strip (after hero) ============== */
.companies-row{ display:grid; grid-template-columns:1fr 1fr 1fr; margin-top:26px; }
.companies-item{ padding:4px 36px; border-left:1px solid var(--border); display:flex; flex-direction:column; justify-content:center; gap:8px; }
.companies-item:first-child{ border-left:none; padding-left:0; }
.companies-item .role{ font-size:11px; text-transform:uppercase; letter-spacing:0.12em; color:var(--muted); font-weight:600; }
.companies-item .org{ font-family:var(--serif); font-weight:400; font-size:var(--title-sub); color:var(--green); line-height:1.15; }
@media (max-width:768px){
  .companies-row{ grid-template-columns:1fr; gap:20px; margin-top:20px; }
  .companies-item{ border-left:none; padding:0 0 18px; border-bottom:1px solid var(--border); }
  .companies-item:last-child{ border-bottom:none; padding-bottom:0; }
}

/* ============== HOME — social activity (light, separate from green International) ============== */
.social-top{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:50px; align-items:start; }
@media (max-width:800px){ .social-top{ grid-template-columns:1fr; gap:24px; } }
.social-icc h3{ margin-bottom:12px; }
.social-icc p{ font-size:16px; line-height:1.5; color:var(--muted); max-width:50ch; }
.social-hub{ margin-top:28px; padding-top:24px; border-top:1px solid var(--border); }
.social-hub h4{ font-family:var(--serif); font-weight:400; font-size:var(--title-sub); line-height:1.15; margin-bottom:8px; color:var(--dark); }
.social-hub p{ font-size:16px; line-height:1.5; color:var(--muted); max-width:62ch; }

/* ============== HOME — final CTA, two buttons only ============== */
.final-cta-mini{ display:flex; gap:20px; justify-content:center; align-items:center; flex-wrap:wrap; }
@media (max-width:600px){
  .final-cta-mini{ flex-direction:column; gap:12px; }
  .final-cta-mini .btn{ width:100%; }
}

/* ============== HOME — media / speaking, 3 editorial cards ============== */
.media-title-rule{ width:52px; height:1px; background:var(--green); margin-top:16px; }
.media-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:32px; }
@media (max-width:900px){ .media-grid{ grid-template-columns:1fr; gap:28px; } }
.media-card{ display:flex; flex-direction:column; }

.media-card-img{ position:relative; width:100%; aspect-ratio:4/5; overflow:hidden; background:var(--sand); }
@media (max-width:768px){ .media-card-img{ aspect-ratio:4/3; } }
.media-card-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s cubic-bezier(.16,1,.3,1); }
.media-card:hover .media-card-img img{ transform:scale(1.02); }
.media-card-category{ font-size:11px; text-transform:uppercase; letter-spacing:0.1em; color:var(--brown); font-weight:600; margin-bottom:12px; }

.media-card-body{ background:var(--ivory); padding:24px 26px 0; display:flex; flex-direction:column; flex:1; }
.media-card-body h3{ margin-bottom:10px; }
.media-card-body p{ font-size:16px; line-height:1.5; color:var(--muted); margin-bottom:16px; flex:1; }
.media-card-link{
  display:flex; align-items:center; justify-content:space-between;
  padding:17px 0; margin-top:auto;
  border-top:1px solid var(--border);
  font-family:var(--sans); font-size:12.5px; font-weight:600; text-transform:uppercase; letter-spacing:0.08em;
  color:var(--green); transition:border-color .3s ease;
}
.media-card-link span:last-child{ transition:transform .3s ease; }
.media-card:hover .media-card-link{ border-top-color:var(--green); }
.media-card:hover .media-card-link span:last-child{ transform:translateX(5px); }

/* ============== article page (media) ============== */
.article-hero{ overflow:hidden; background:var(--sand); aspect-ratio:16/7; }
@media (max-width:768px){ .article-hero{ aspect-ratio:4/3; } }
.article-hero img{ width:100%; height:100%; object-fit:cover; }
.article-body{ max-width:760px; margin:0 auto; }
.article-body p{ font-size:16px; line-height:1.5; color:var(--dark); margin-bottom:20px; max-width:none; }
.article-body p:last-child{ margin-bottom:0; }
.article-intro{ font-size:16px; line-height:1.5; color:var(--muted); margin-bottom:32px; }

/* ==========================================================
   V13.1 — precision grid / multilingual alignment pass
   One axis, one scale, no accidental offsets.
   ========================================================== */
:root{
  /* max width includes the horizontal padding because the project uses border-box */
  --max:1400px;
  --pad:64px;
  --section-y:72px;
  --title-hero:clamp(52px,4.15vw,70px);
  --title-section:36px;
  --title-sub:25px;
  /* Same X coordinate as .wrap content, including centered max-width layouts. */
  --content-axis-x:max(var(--pad), calc((100vw - var(--max))/2 + var(--pad)));
}

@media (max-width:1024px){
  :root{
    --pad:40px;
    --section-y:56px;
    --content-axis-x:var(--pad);
  }
}
@media (max-width:768px){
  :root{
    --pad:22px;
    --section-y:44px;
    --title-hero:42px;
    --title-section:30px;
    --title-sub:23px;
    --content-axis-x:var(--pad);
  }
}

/* ---------- exact typographic scale ---------- */
h1{ font-size:var(--title-hero); line-height:.98; letter-spacing:-.02em; }
h2{ font-size:var(--title-section); line-height:1.05; letter-spacing:-.005em; }
h3{ font-size:var(--title-sub); line-height:1.15; }
p.lead,
p.body-text,
.stagger-item .desc,
.geo-city p,
.exp-item p,
.eco-big p,
.quote-split-green .side-note,
.jur-city-row .city-detail p,
.pub-arch-feature p,
.acc-panel-inner p,
.social-icc p,
.social-hub p,
.media-card-body p,
.article-body p,
.article-intro,
.contact-row,
.contact-row-block p{
  font-size:16px;
  line-height:1.5;
}

/* Home hero previously overrode the global h1 scale. Keep one scale everywhere. */
.hero h1{
  font-size:var(--title-hero);
  line-height:.98;
  letter-spacing:-.02em;
  max-width:none;
}

/* ---------- one hard left axis ---------- */
.hero-left{
  padding-left:var(--content-axis-x);
}
.practice-hero-green{
  padding-left:var(--content-axis-x);
}

/* .footer-inner is also .wrap. Do not wipe out .wrap's horizontal padding. */
.footer-inner{
  padding-top:90px;
  padding-bottom:40px;
  padding-left:var(--pad);
  padding-right:var(--pad);
}

/* ---------- locked multilingual headline rhythm ---------- */
.hero-title-lock{ display:block; }
.hero-title-line{
  display:block;
  white-space:nowrap;
}

/* The hero is an exact photo/text composition; text is vertically centered. */
.hero{ align-items:stretch; }
.hero-left{ justify-content:center; }

/* ---------- photo/text pairs: center on the same vertical axis ---------- */
.about-edge,
.cinema,
.pub-arch-feature,
.contact-grid,
.consult-wrap{
  align-items:center;
}
.practice-hero-green{
  justify-content:center;
}

/* Practice split has one deterministic height in all three languages. */
.practice-hero-split{
  height:600px;
  min-height:600px;
  align-items:stretch;
}
.practice-hero-photo,
.practice-hero-photo img{
  height:100%;
}

/* Contact: image and the complete text stack share one centered axis. */
.contact-grid{
  height:640px;
  min-height:640px;
}
.contact-photo,
.contact-photo img{
  height:100%;
}
.contact-right{
  justify-content:center;
  padding:48px 0;
}
.contact-left{
  padding:0 48px 24px var(--pad);
}
.contact-list-wrap{
  padding:0 48px 0 var(--pad);
}

/* Consultation image should sit in the optical middle of the form column. */
.consult-wrap{ align-items:center; }
.consult-photo{ align-self:center; }

/* ---------- repeated modules: identical geometry across UA / EN / DE ---------- */
.companies-item{
  min-height:96px;
  justify-content:center;
}
.companies-item .org{
  min-height:2.30em;
  display:flex;
  align-items:flex-start;
}

.stagger-item{
  align-items:start;
}
.stagger-item h3{
  min-height:2.30em;
  display:flex;
  align-items:center;
}

.acc-trigger h3{
  min-height:2.30em;
  display:flex;
  align-items:center;
}

.media-card-body h3{
  min-height:4.60em;
}

/* Publication archive rows follow one baseline and one width. */
.pub-arch-feature > div:first-child{
  width:100%;
}
.pub-arch-feature h3{
  min-height:2.30em;
  display:flex;
  align-items:center;
}

/* Long translated section headings may never create a different compositional row. */
@media (min-width:901px){
  .social-top > div:first-child h2{
    white-space:nowrap;
  }
}

/* Equal visual centering inside the two editorial photo/text strips. */
.about-edge-text,
.cinema-text{
  justify-content:center;
}

/* ---------- desktop precision ---------- */
@media (min-width:1025px){
  .header-inner,
  .footer-grid,
  .footer-bottom{
    width:100%;
  }

  /* Keep section intro columns on repeatable proportions. */
  .practice-layout{ grid-template-columns:minmax(0,.66fr) minmax(0,1.34fr); }
  .social-top{ grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); }
  .geo-block{ grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); }
  .pub-mag{ grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); }
}

/* ---------- tablet/mobile: keep the same system without overflow ---------- */
@media (max-width:1024px){
  .practice-hero-split{
    height:560px;
    min-height:560px;
  }
  .contact-grid{
    height:auto;
    min-height:0;
  }
}

@media (max-width:900px){
  .contact-grid{
    align-items:stretch;
  }
  .contact-right{
    padding:0;
  }
  .contact-left{
    padding:36px var(--pad) 24px;
  }
  .contact-list-wrap{
    padding:0 var(--pad) 40px;
  }
  .consult-wrap{ align-items:start; }
}

@media (max-width:768px){
  .hero-title-line{
    white-space:normal;
  }
  .practice-hero-split{
    height:auto;
    min-height:0;
  }
  .practice-hero-green{
    justify-content:center;
    padding-left:var(--pad);
    padding-right:var(--pad);
  }
  .companies-item{
    min-height:0;
  }
  .companies-item .org,
  .stagger-item h3,
  .acc-trigger h3,
  .media-card-body h3,
  .pub-arch-feature h3{
    min-height:0;
  }
}

/* Final optical balancing for split layouts. */
@media (min-width:1025px){
  .practice-hero-split{ grid-template-columns:60% 40%; }
  .contact-grid{ grid-template-columns:42% 58%; }
  .pub-mag{ grid-template-columns:minmax(0,.75fr) minmax(0,1.25fr); align-items:center; }
  .pub-mag h1{ white-space:nowrap; }
}
@media (min-width:769px) and (max-width:1024px){
  .practice-hero-split{ grid-template-columns:58% 42%; }
  .pub-mag{ align-items:center; }
}

/* Header geometry is language-independent: the centre navigation never drifts
   when the CTA/locale strings change length. */
.header-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  justify-content:initial;
  gap:32px;
}
.brand{ justify-self:start; white-space:nowrap; }
.main-nav{ justify-self:center; }
.header-right{ justify-self:end; }
@media (max-width:960px){
  .header-inner{ grid-template-columns:1fr auto; gap:20px; }
  .header-right{ grid-column:2; justify-self:end; }
}

/* Article titles use the same two-line editorial rhythm in every locale. */
.article-page-title{ min-height:1.96em; }
@media (max-width:768px){ .article-page-title{ min-height:0; } }

.practice-title-line{ display:block; }
@media (min-width:1025px){
  .practice-title-line{ white-space:nowrap; }
  .practice-hero-green{ padding-right:48px; }
  .article-page-title{ white-space:nowrap; }
  .contact-left h1{ white-space:nowrap; }
  .about-edge-text h2,
  .geo-block h2{ white-space:nowrap; }
}

/* Cross-language vertical anchors: translated copy may change length,
   but CTAs, filters, images and following modules stay on the same baseline. */
.recog-cell p{ font-size:16px; line-height:1.5; }
.media-card-category{
  min-height:2.4em;
  display:flex;
  align-items:flex-start;
}
.pub-arch-feature .tag{
  min-height:2.4em;
  display:flex;
  align-items:flex-start;
}

@media (min-width:901px){
  .hero-left .lead{ min-height:4.5em; }
  .practice-hero-green .lead{ min-height:4.5em; }
  .contact-left .lead{ min-height:3em; }
  .pub-mag .lead{ min-height:3em; }
  .consult-wrap > div:last-child > .lead{ min-height:4.5em; }
  .consult-wrap > div:last-child > .body-text{ min-height:3em; }
  .about-edge-text .body-text{ min-height:4.5em; }
  .article-intro{ min-height:4.5em; }
}

@media (max-width:900px){
  .media-card-category,
  .pub-arch-feature .tag{
    min-height:0;
  }
}


/* TEMP: language switcher hidden */
.lang-switch{ display:none !important; }
