/* ============================================================
   DefesaLegal.pt — global.css
   Boutique legal identity · dark base · gold accent
   Display: Cormorant Garamond · UI/body: DM Sans
   ============================================================ */

:root {
  /* surfaces */
  --ink:      #0c0c0e;   /* page base */
  --ink-2:    #121215;   /* raised */
  --ink-3:    #1a1a1e;   /* cards */
  --ink-4:    #232328;   /* hover */
  --paper:    #f4f0e8;   /* warm bone (light section) */
  --paper-2:  #ebe5d8;

  /* lines */
  --line:     rgba(255,255,255,0.09);
  --line-2:   rgba(255,255,255,0.18);
  --line-ink: rgba(12,12,14,0.14);

  /* ink on dark */
  --fg:       #f5f3ee;
  --fg-2:     rgba(245,243,238,0.66);
  --fg-3:     rgba(245,243,238,0.42);

  /* gold */
  --gold:     #c4a36a;
  --gold-2:   #b08f54;
  --gold-3:   #d8bd86;
  --gold-ink: #1a1407;

  /* fonts */
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:    "DM Sans", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1320px;
  --pad:  clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
::selection { background: var(--gold); color: var(--gold-ink); }

html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--ink);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }
body.intro-locked { overflow: hidden; height: 100vh; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- bilingual visibility ---------- */
html[lang="pt"] [data-l="en"] { display: none !important; }
html[lang="en"] [data-l="pt"] { display: none !important; }

/* ---------- layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.container--narrow { max-width: 880px; }

/* ---------- type system ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.eyebrow--center { justify-content: center; }
.eyebrow--dark { color: var(--gold-ink); }
.eyebrow--dark::before { background: var(--gold-ink); }
.eyebrow--paper { color: var(--gold-2); }
.eyebrow--paper::before { background: var(--gold-2); }

.display {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--gold); font-weight: 500; }

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.005em;
  margin: 0 0 26px;
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--gold); }

.lede {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
  color: var(--fg-2);
  max-width: 62ch;
  margin: 0;
}

.section-head { margin-bottom: clamp(48px, 6vw, 80px); }
.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.section-pad { padding: clamp(80px, 11vw, 150px) 0; }

.roman {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
}

.disclaimer {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--fg-3);
  font-style: italic;
  border-left: 2px solid var(--line-2);
  padding-left: 16px;
  max-width: 70ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}
.btn i { font-style: normal; transition: transform .4s var(--ease); }
.btn:hover i { transform: translateX(5px); }
.btn--gold { background: var(--gold); color: var(--gold-ink); }
.btn--gold:hover { background: var(--gold-3); }
.btn--ghost { border-color: var(--line-2); color: var(--fg); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--dark { background: var(--gold-ink); color: var(--gold-3); }
.btn--dark:hover { background: #000; }
.btn--ink { border-color: var(--line-ink); color: var(--gold-ink); }
.btn--ink:hover { background: var(--gold-ink); color: var(--paper); border-color: var(--gold-ink); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(196,163,106,0.32);
  padding-bottom: 6px;
  transition: border-color .3s ease;
}
.link-arrow i { font-style: normal; transition: transform .35s var(--ease); }
.link-arrow:hover { border-color: var(--gold); }
.link-arrow:hover i { transform: translateX(5px); }

.iconbtn {
  width: 54px; height: 54px;
  border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px;
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}
.iconbtn i { font-style: normal; }
.iconbtn:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  position: fixed; inset: 0; background: #000; z-index: 1000;
  display: grid; place-items: center;
  animation: introOut 1100ms var(--ease) 2100ms forwards;
}
.intro.is-done { display: none; }
.intro__inner { text-align: center; padding: 0 24px; }
.intro__rule {
  width: 0; height: 1px; background: var(--gold); margin: 0 auto 28px;
  animation: introRule 900ms var(--ease) 200ms forwards;
}
@keyframes introRule { to { width: 64px; } }
.intro__word {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1; letter-spacing: -0.01em; margin: 0; color: var(--fg);
}
.intro__word .n {
  display: inline-block; opacity: 0; filter: blur(10px); transform: translateY(14px);
  animation: introUp 1000ms var(--ease) 350ms forwards;
}
.intro__word .t {
  display: inline-block; color: var(--gold);
  opacity: 0; filter: blur(10px); transform: translateY(14px);
  animation: introUp 1000ms var(--ease) 560ms forwards;
}
.intro__sub {
  margin: 22px 0 0; font-family: var(--sans); font-weight: 400;
  font-size: clamp(10px, 1vw, 12px); letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--fg-3); opacity: 0;
  animation: introFade 800ms var(--ease) 1150ms forwards;
}
@keyframes introUp { to { opacity: 1; filter: blur(0); transform: translateY(0); } }
@keyframes introFade { to { opacity: 1; } }
@keyframes introOut { to { opacity: 0; visibility: hidden; } }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease, padding .4s ease;
}
.header.is-scrolled {
  background: rgba(12,12,14,0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding: 14px 0;
}
.header__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}

/* wordmark */
.logo { display: inline-flex; flex-direction: column; line-height: 1; }
.logo__mark {
  font-family: var(--display); font-weight: 600; font-size: 21px;
  letter-spacing: -0.01em; color: var(--fg);
}
.logo__mark .tld { color: var(--gold); }
.logo__sub {
  font-family: var(--sans); font-weight: 500; font-size: 9px;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--fg-3);
  margin-top: 5px; padding-left: 2px;
}
.logo--lg .logo__mark { font-size: 30px; }

.nav { display: flex; gap: 34px; }
.nav a {
  display: inline-flex; align-items: baseline; gap: 7px;
  font-size: 13px; letter-spacing: 0.06em; color: var(--fg-2);
  transition: color .3s ease; position: relative; padding: 6px 0;
}
.nav a .num {
  font-family: var(--display); font-style: italic; font-size: 12px; color: var(--gold);
  opacity: 0.7;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after { transform: scaleX(1); }

.header__right { display: flex; align-items: center; gap: 22px; }
.lang { display: flex; align-items: center; gap: 9px; font-size: 12px; letter-spacing: 0.1em; }
.lang__btn { padding: 4px 0; color: var(--fg-3); text-transform: uppercase; transition: color .3s ease; }
.lang__btn.is-active { color: var(--gold); }
.lang__btn:hover { color: var(--fg); }
.lang__sep { color: var(--fg-3); }
.header .btn--head {
  padding: 12px 22px; font-size: 11px;
  border: 1px solid var(--line-2); color: var(--fg);
}
.header .btn--head:hover { border-color: var(--gold); color: var(--gold); }

.hamburger {
  display: none; width: 34px; height: 34px; flex-direction: column;
  justify-content: center; align-items: flex-end; gap: 6px;
}
.hamburger span { display: block; width: 24px; height: 1px; background: var(--fg); transition: transform .3s var(--ease), width .3s ease; }
.hamburger span:last-child { width: 16px; }
.hamburger.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); width: 24px; }
.hamburger.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); width: 24px; }

.drawer {
  position: fixed; inset: 0; background: #000; z-index: 90;
  transform: translateX(100%); transition: transform .5s var(--ease);
  padding: 110px var(--pad) 40px;
}
.drawer.is-open { transform: translateX(0); }
.drawer__inner { height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a {
  font-family: var(--display); font-weight: 500; font-size: clamp(2rem, 8vw, 2.8rem);
  letter-spacing: -0.01em; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--fg);
  display: flex; align-items: baseline; gap: 12px;
}
.drawer nav a .num { font-style: italic; font-size: 1.2rem; color: var(--gold); }
.drawer__foot { display: flex; justify-content: space-between; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-3); padding-top: 24px; border-top: 1px solid var(--line); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  padding: 150px var(--pad) 64px;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; background: var(--ink-3); }
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns { 0% { transform: scale(1.05); } 100% { transform: scale(1.14); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,14,0.62) 0%, rgba(12,12,14,0.38) 38%, rgba(12,12,14,0.95) 100%),
    linear-gradient(90deg, rgba(12,12,14,0.7) 0%, rgba(12,12,14,0.12) 64%);
}
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='6'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero__content { position: relative; z-index: 1; max-width: 980px; margin-top: auto; }
.hero__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.9rem, 7.4vw, 6.6rem); line-height: 1.0;
  letter-spacing: -0.012em; margin: 0 0 30px; text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__lede {
  font-size: clamp(15.5px, 1.35vw, 19px); line-height: 1.6;
  color: var(--fg-2); max-width: 64ch; margin: 0 0 38px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta {
  position: relative; z-index: 1; margin-top: clamp(44px, 7vw, 84px);
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px;
  padding-top: 26px; border-top: 1px solid var(--line); max-width: 760px;
}
.hero__metaCol { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; }
.hero__metaLabel { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--fg-3); }
.hero__metaCol strong { font-weight: 500; color: var(--fg); }

.scroll-indicator {
  position: absolute; right: var(--pad); bottom: 30px; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--fg-3);
}
.scroll-indicator__line { width: 1px; height: 54px; background: var(--line-2); position: relative; overflow: hidden; }
.scroll-indicator__line::after {
  content: ""; position: absolute; top: -54px; left: 0; right: 0; height: 54px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollb 2.2s ease-in-out infinite;
}
@keyframes scrollb { 0% { top: -54px; } 60% { top: 54px; } 100% { top: 54px; } }

/* ============================================================
   METHOD ("Rigor & cuidado") + consultation list
   ============================================================ */
.method { background: var(--ink); }
.method__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.method__title {
  font-family: var(--display); font-weight: 500; font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02; letter-spacing: -0.01em; margin: 0 0 28px;
}
.method__title em { font-style: italic; color: var(--gold); }
.method__body { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.66; color: var(--fg-2); max-width: 56ch; }
.method__body strong { color: var(--fg); font-weight: 600; }
.method__panel {
  border: 1px solid var(--line); background: var(--ink-2); padding: 36px;
}
.method__panelHead {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 26px; padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.checklist li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.checklist li:last-child { border-bottom: 0; padding-bottom: 0; }
.checklist__t { font-size: 15px; color: var(--fg); }
.checklist__m { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); white-space: nowrap; }

/* ============================================================
   PRINCIPLES (replaces stats)
   ============================================================ */
.principles { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0; }
.principle { padding: 8px 36px 8px 0; border-right: 1px solid var(--line); }
.principle:last-child { border-right: 0; }
.principle__k {
  font-family: var(--display); font-style: italic; font-size: 14px;
  color: var(--gold); margin-bottom: 18px;
}
.principle__v {
  font-family: var(--display); font-weight: 500; font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1.08; letter-spacing: -0.005em; color: var(--fg); margin-bottom: 12px;
}
.principle__d { font-size: 13.5px; line-height: 1.5; color: var(--fg-2); }

/* ============================================================
   PRIORITY CARDS
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card {
  background: var(--ink-2); padding: 44px 38px 38px;
  display: flex; flex-direction: column; gap: 14px; min-height: 320px; position: relative;
  transition: background .4s ease, transform .5s var(--ease);
}
.card::before { content: ""; position: absolute; inset: 0; border: 1px solid transparent; transition: border-color .4s ease; pointer-events: none; }
.card:hover { background: var(--ink-3); transform: translateY(-4px); }
.card:hover::before { border-color: var(--gold); }
.card:hover .card__num { color: var(--gold); }
.card:hover .card__link i { transform: translateX(6px); }
.card__num { font-family: var(--display); font-style: italic; font-size: 16px; color: var(--fg-3); transition: color .3s ease; }
.card__title {
  font-family: var(--display); font-weight: 500; font-size: clamp(1.7rem, 2.3vw, 2.15rem);
  line-height: 1.08; letter-spacing: -0.005em; margin: 0;
}
.card__title span { color: var(--fg-3); }
.card__desc { font-size: 14.5px; line-height: 1.58; color: var(--fg-2); margin: 0; flex: 1; }
.card__link { margin-top: 10px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 10px; }
.card__link i { font-style: normal; transition: transform .4s var(--ease); }
.section-foot { margin-top: 48px; display: flex; justify-content: center; }

/* practice index (14) */
.areaindex {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0; border: 1px solid var(--line); margin-top: 56px;
}
.area {
  display: flex; align-items: baseline; gap: 16px; padding: 20px 26px;
  border-bottom: 1px solid var(--line); transition: background .3s ease, color .3s ease;
}
.area:nth-child(odd) { border-right: 1px solid var(--line); }
.area:hover { background: var(--ink-2); }
.area:hover .area__name { color: var(--gold); }
.area__num { font-family: var(--display); font-style: italic; font-size: 14px; color: var(--gold); min-width: 32px; }
.area__name { font-size: 15px; color: var(--fg); transition: color .3s ease; font-weight: 500; }
.area__tag { font-size: 12px; color: var(--fg-3); margin-left: auto; letter-spacing: 0.04em; }

/* ============================================================
   SPLIT (international clients / firm)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 96px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--ink-3); }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.split__media:hover img { transform: scale(1.04); }
.media-tag {
  position: absolute; left: 22px; bottom: 22px; background: rgba(12,12,14,0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 13px 18px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; flex-direction: column; gap: 4px; border-left: 2px solid var(--gold);
}
.media-tag span:first-child { color: var(--gold); }
.media-tag span:last-child { color: var(--fg-2); }
.placeholder-badge {
  position: absolute; top: 16px; right: 16px; font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--fg-3); border: 1px solid var(--line-2);
  padding: 5px 9px; background: rgba(12,12,14,0.7);
}
.split__para { font-size: clamp(15px, 1.25vw, 17.5px); line-height: 1.66; color: var(--fg-2); margin: 0 0 22px; max-width: 56ch; }
.split__para strong { color: var(--fg); font-weight: 500; }

.minilist { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; }
.minilist li { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 18px 0; border-top: 1px solid var(--line); align-items: baseline; }
.minilist li:last-child { border-bottom: 1px solid var(--line); }
.minilist__k { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--gold); }
.minilist__b { font-size: 14.5px; line-height: 1.55; color: var(--fg-2); }
.minilist__b strong { color: var(--fg); font-weight: 500; }

/* ============================================================
   PAPER SECTION (família e menores) — warm contrast
   ============================================================ */
.paper { background: var(--paper); color: var(--gold-ink); position: relative; }
.paper::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='8'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/></svg>");
}
.paper__grid { position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 7vw, 90px); align-items: center; }
.paper__media { position: relative; aspect-ratio: 5/6; overflow: hidden; background: var(--paper-2); }
.paper__media img { width: 100%; height: 100%; object-fit: cover; }
.paper .section-title { color: var(--gold-ink); }
.paper .section-title em { color: var(--gold-2); }
.paper__para { font-size: clamp(15.5px, 1.3vw, 18.5px); line-height: 1.68; color: rgba(26,20,7,0.78); margin: 0 0 22px; max-width: 56ch; }
.paper__para strong { color: var(--gold-ink); font-weight: 600; }
.paper .disclaimer { color: rgba(26,20,7,0.6); border-left-color: rgba(26,20,7,0.2); }
.paper__tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 30px; }
.paper__tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-2); border: 1px solid rgba(26,20,7,0.22); padding: 8px 14px; }

/* ============================================================
   INSIGHTS
   ============================================================ */
.insights { background: var(--ink-2); }
.insights__controls { display: flex; gap: 8px; }
.notice {
  display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); border: 1px solid rgba(196,163,106,0.4); padding: 8px 14px; margin-bottom: 22px;
}
.notice::before { content: "⟡"; font-style: normal; }
.carousel { overflow: hidden; margin: 0 calc(-1 * var(--pad)); padding: 0 var(--pad); }
.carousel__track { display: flex; gap: 24px; transition: transform .8s var(--ease); will-change: transform; cursor: grab; }
.carousel__track:active { cursor: grabbing; }
.article { flex: 0 0 calc((100% - 48px)/3); background: var(--ink); display: flex; flex-direction: column; transition: transform .5s var(--ease); }
.article:hover { transform: translateY(-4px); }
.article:hover .article__media img { transform: scale(1.05); }
.article__media { aspect-ratio: 16/10; overflow: hidden; background: var(--ink-3); position: relative; }
.article__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.article__body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.article__meta { display: flex; align-items: center; justify-content: space-between; }
.tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 6px 10px; }
.article__status { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); }
.article__title { font-family: var(--display); font-weight: 500; font-size: clamp(1.4rem, 1.8vw, 1.7rem); line-height: 1.16; letter-spacing: -0.005em; margin: 0; flex: 1; text-wrap: balance; }
.article__read { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; }
.article__read i { font-style: normal; }

/* ============================================================
   CTA
   ============================================================ */
.cta { background: var(--gold); color: var(--gold-ink); position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.08; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.cta__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: end; }
.cta__title { font-family: var(--display); font-weight: 500; font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: 1.0; letter-spacing: -0.01em; margin: 0; color: var(--gold-ink); }
.cta__title em { font-style: italic; }
.cta__right { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; padding-bottom: 6px; }
.cta__lede { font-size: clamp(15.5px, 1.3vw, 18px); line-height: 1.6; color: rgba(26,20,7,0.78); max-width: 50ch; margin: 0; }
.cta__alt { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(26,20,7,0.7); }
.cta__alt a { color: var(--gold-ink); border-bottom: 1px solid rgba(26,20,7,0.4); padding-bottom: 1px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--fg-2); padding: clamp(72px, 9vw, 110px) 0 30px; border-top: 1px solid var(--line); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(32px, 4vw, 64px); padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.footer__brandtext { font-size: 13.5px; line-height: 1.62; color: var(--fg-2); max-width: 36ch; margin: 22px 0 0; }
.footer__col h4 { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 0 0 24px; }
.footer__col address { font-style: normal; font-size: 13.5px; line-height: 1.7; color: var(--fg-2); margin: 0 0 22px; }
.footer__col address strong { color: var(--fg); font-weight: 500; display: inline-block; margin-bottom: 3px; }
.footer__col address a { color: var(--gold); transition: opacity .3s; }
.footer__col address a:hover { opacity: 0.7; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col ul li { padding: 9px 0; border-bottom: 1px solid var(--line); }
.footer__col ul li:first-child { border-top: 1px solid var(--line); }
.footer__col ul a { font-size: 13px; color: var(--fg-2); transition: color .3s ease; }
.footer__col ul a:hover { color: var(--gold); }
.footer__bar { padding-top: 28px; display: flex; justify-content: space-between; gap: 22px; flex-wrap: wrap; font-size: 12px; letter-spacing: 0.04em; color: var(--fg-3); }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--gold); }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.pagehead { position: relative; padding: 180px var(--pad) 80px; overflow: hidden; border-bottom: 1px solid var(--line); }
.pagehead__bg { position: absolute; inset: 0; z-index: 0; }
.pagehead__bg img { width: 100%; height: 100%; object-fit: cover; }
.pagehead__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,12,14,0.7), rgba(12,12,14,0.92)); }
.pagehead__inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }
.crumb { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 26px; display: flex; gap: 10px; }
.crumb a { color: var(--fg-3); transition: color .3s; }
.crumb a:hover { color: var(--gold); }
.crumb span { color: var(--gold); }

/* table of contents (pillar) */
.toc { position: sticky; top: 110px; border-left: 1px solid var(--line); padding-left: 24px; }
.toc h4 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 0 0 20px; }
.toc ol { list-style: none; counter-reset: toc; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.toc li { counter-increment: toc; }
.toc a { font-size: 13.5px; color: var(--fg-2); display: flex; gap: 12px; transition: color .3s; }
.toc a::before { content: counter(toc, decimal-leading-zero); font-family: var(--display); font-style: italic; color: var(--gold); }
.toc a:hover { color: var(--fg); }

.prose { max-width: 68ch; }
.prose h2 { font-family: var(--display); font-weight: 500; font-size: clamp(1.9rem, 3vw, 2.8rem); line-height: 1.08; letter-spacing: -0.005em; margin: 64px 0 22px; scroll-margin-top: 120px; }
.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: italic; color: var(--gold); }
.prose h3 { font-family: var(--display); font-weight: 600; font-size: clamp(1.3rem, 1.8vw, 1.6rem); margin: 36px 0 14px; }
.prose p { font-size: 16.5px; line-height: 1.7; color: var(--fg-2); margin: 0 0 20px; }
.prose p strong { color: var(--fg); font-weight: 500; }
.prose ul { margin: 0 0 24px; padding: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 16px; line-height: 1.6; color: var(--fg-2); }
.prose ul li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.prose ol { margin: 0 0 24px; padding: 0; list-style: none; counter-reset: step; }
.prose ol li { position: relative; padding-left: 48px; margin-bottom: 20px; font-size: 16px; line-height: 1.6; color: var(--fg-2); counter-increment: step; }
.prose ol li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: 0; font-family: var(--display); font-style: italic; font-size: 18px; color: var(--gold); }
.prose ol li strong { color: var(--fg); font-weight: 500; }

.callout { border: 1px solid var(--line); background: var(--ink-2); padding: 28px 30px; margin: 32px 0; }
.callout h4 { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.callout p { font-size: 14.5px; line-height: 1.6; color: var(--fg-2); margin: 0; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; text-align: left; font-family: var(--display); font-weight: 500; font-size: clamp(1.2rem, 1.8vw, 1.5rem); color: var(--fg); transition: color .3s; }
.faq__q:hover { color: var(--gold); }
.faq__q .pm { font-family: var(--sans); font-size: 22px; color: var(--gold); transition: transform .3s var(--ease); flex-shrink: 0; }
.faq__item.is-open .faq__q .pm { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq__a-inner { padding: 0 0 28px; font-size: 15.5px; line-height: 1.66; color: var(--fg-2); max-width: 70ch; }

/* contact / form */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.field { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.field label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--fg); background: var(--ink-2);
  border: 1px solid var(--line); padding: 15px 16px; transition: border-color .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 12.5px; line-height: 1.5; color: var(--fg-3); margin-bottom: 26px; }
.form-consent input { margin-top: 3px; accent-color: var(--gold); }

.contact-channels { display: flex; flex-direction: column; }
.channel { padding: 24px 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.channel:last-child { border-bottom: 1px solid var(--line); }
.channel__k { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.channel__v { font-family: var(--display); font-size: clamp(1.3rem, 1.8vw, 1.7rem); color: var(--fg); }
.channel__v a { transition: color .3s; }
.channel__v a:hover { color: var(--gold); }
.channel__m { font-size: 13px; color: var(--fg-2); }
.calendar-slot { border: 1px dashed var(--line-2); padding: 40px 30px; text-align: center; margin-top: 26px; }
.calendar-slot .placeholder-badge { position: static; display: inline-block; margin-bottom: 16px; }
.calendar-slot p { font-size: 13.5px; color: var(--fg-2); margin: 0; }

/* landing-specific */
.landing-hero { position: relative; padding: 150px var(--pad) 90px; overflow: hidden; border-bottom: 1px solid var(--line); }
.landing-hero__bg { position: absolute; inset: 0; z-index: 0; }
.landing-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.landing-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(12,12,14,0.95) 30%, rgba(12,12,14,0.6)); }
.landing-grid { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.lead-card { background: var(--ink-2); border: 1px solid var(--line-2); padding: 38px; }
.lead-card h3 { font-family: var(--display); font-weight: 500; font-size: 1.8rem; margin: 0 0 8px; }
.lead-card p.sub { font-size: 13.5px; color: var(--fg-2); margin: 0 0 26px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px 28px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item__k { font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--gold); }
.trust-item__v { font-size: 12px; letter-spacing: 0.06em; color: var(--fg-2); }
.steprow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.steprow > div { background: var(--ink-2); padding: 34px 30px; }
.steprow__n { font-family: var(--display); font-style: italic; font-size: 1.6rem; color: var(--gold); margin-bottom: 14px; }
.steprow h4 { font-family: var(--display); font-weight: 500; font-size: 1.4rem; margin: 0 0 8px; }
.steprow p { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.hero .reveal { transition-delay: calc(var(--d, 0s) + 2.5s); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .lang, .header .btn--head { display: none; }
  .method__grid, .split, .split--rev .split__media, .paper__grid, .contact-grid, .landing-grid { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media, .paper__media { aspect-ratio: 4/3; max-width: 620px; }
  .principles__grid { grid-template-columns: repeat(2,1fr); }
  .principle { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .principle:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 24px; }
  .principle:nth-child(even) { padding-left: 24px; }
  .principle:nth-last-child(-n+2) { border-bottom: 0; }
  .cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .article { flex: 0 0 calc((100% - 24px)/2); }
  .cta__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .toc { display: none; }
  .steprow { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding-top: 130px; }
  .hero__meta { grid-template-columns: 1fr; gap: 14px; }
  .scroll-indicator { display: none; }
  .cards, .areaindex { grid-template-columns: 1fr; }
  .area:nth-child(odd) { border-right: 0; }
  .card { min-height: 260px; padding: 36px 28px; }
  .article { flex: 0 0 86%; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
  .field--row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .intro { display: none; }
}
