  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  a { color: inherit; text-decoration: none; }
  h1, h2, h3, p { margin: 0; }
  ul { margin: 0; padding: 0; list-style: none; }

  :focus-visible { outline: 2px solid var(--text); outline-offset: 3px; }

  /* ---------- Variant scopes ---------- */
  .variant-light {
    --bg: #FFFFFF;
    --text: #0A0A0A;
    --text-muted: #6B6B6B;
    --text-soft: #4A4A48;
    --line: #D4CFC4;
    --watermark: #0A0A0A;
    --watermark-opacity: 0.05;
  }
  .variant-dark {
    --bg: #0A0A0A;
    --text: #FAFAF7;
    --text-muted: #888884;
    --text-soft: #B4B2A9;
    --line: #2C2C2A;
    --watermark: #FAFAF7;
    --watermark-opacity: 0.04;
  }

  .site {
    background: var(--bg);
    color: var(--text);
  }

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
  }

  /* ============================================================
     HERO (single block, single bg, integrated subheadline)
     ============================================================ */
  .hero-wrap {
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
  }

  .watermark {
    position: absolute;
    right: -80px;
    bottom: -120px;
    height: 640px;
    width: auto;
    color: var(--watermark);
    opacity: var(--watermark-opacity);
    pointer-events: none;
    user-select: none;
    z-index: 1;
  }
  .watermark svg { display: block; height: 100%; width: auto; }

  .hero-header {
    position: relative;
    z-index: 3;
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
  }
  .brand-mark {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text);
  }
  .brand-mark svg { display: block; height: 100%; width: auto; }
  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .brand-mark img {
    height: 46px;
    width: auto;
    display: block;
  }
  .brand-name-img {
    height: 20px;
    width: auto;
    display: block;
    filter: var(--logo-filter, none);
  }
  .brand-tagline-img {
    height: 13px;
    width: auto;
    display: block;
    margin-top: 8px;
    filter: var(--logo-filter, none);
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: opacity 200ms ease;
    padding-bottom: 4px;
  }
  .nav a:hover { opacity: 0.7; }
  .nav a.is-active {
    color: var(--text);
    border-bottom: 1px solid var(--text);
  }

  .lang {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .lang .sep { color: var(--line); }
  .lang a { transition: opacity 200ms ease; }
  .lang a:hover { opacity: 0.7; }
  .lang .is-active { color: var(--text); }

  /* Hero content */
  .hero {
    position: relative;
    z-index: 2;
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 96px 0;
  }
  .eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    text-transform: uppercase;
  }
  .hero-eyebrow { margin-bottom: 32px; }
  .hero-headline {
    font-size: clamp(38px, 4.8vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 500;
    color: var(--text);
    max-width: 1100px;
    text-wrap: pretty;
  }
  .hero-subheadline {
    margin-top: 48px;
    font-size: clamp(20px, 1.8vw, 24px);
    line-height: 1.45;
    letter-spacing: -0.01em;
    font-weight: 400;
    color: var(--text-soft);
    max-width: 780px;
    text-wrap: pretty;
  }

  /* ============================================================
     PAGE HEADER (interior pages — shorter than the Home hero)
     ============================================================ */
  .page-header {
    padding: 64px 0 96px;
    position: relative;
    overflow: hidden;
  }
  .page-title {
    font-size: clamp(40px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 40px;
  }
  .page-lead {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .page-lead p {
    font-size: clamp(17px, 1.4vw, 19px);
    line-height: 1.6;
    letter-spacing: -0.005em;
    color: var(--text-soft);
    text-wrap: pretty;
  }

  /* ============================================================
     CONTACT
     ============================================================ */
  .contact {
    padding: 0 0 160px;
  }
  .contact-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
  }
  .contact-info {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .office-info {
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
  .office-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
  }
  .office-city {
    font-size: 20px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
  }
  .office-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-soft);
    margin-top: 10px;
  }
  .office-address:first-of-type {
    margin-top: 0;
  }
  .office-address a {
    color: var(--text-soft);
    transition: color 200ms ease;
  }
  .office-address a:hover {
    color: var(--text);
  }
  .office-address svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--text-muted);
  }
  .contact-map {
    width: 100%;
    height: 320px;
    border: 1px solid var(--line);
    filter: grayscale(0.15);
  }
  .contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .form-row {
    display: flex;
    gap: 32px;
  }
  .form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .form-field label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-muted);
  }
  .form-field input,
  .form-field textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    outline: none;
    transition: border-color 200ms ease;
  }
  .form-field input:focus,
  .form-field textarea:focus {
    border-color: var(--text);
  }
  .form-field textarea {
    resize: vertical;
    min-height: 120px;
  }
  .form-submit {
    align-self: flex-start;
    display: inline-block;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0 0 4px;
    cursor: pointer;
    transition: opacity 200ms ease;
  }
  .form-submit:hover {
    opacity: 0.7;
  }

  @media (max-width: 1024px) {
    .contact-grid { flex-direction: column; }
    .contact-info { flex: 1 1 auto; width: 100%; }
  }
  @media (max-width: 768px) {
    .form-row { flex-direction: column; gap: 20px; }
  }

  /* ============================================================
     GRAPHIC DIVIDER
     ============================================================ */
  .graphic-divider {
    position: relative;
    height: 130px;
    background: #F7F5EF;
    overflow: hidden;
  }
  .graphic-divider svg {
    position: absolute;
    right: 24px;
    top: -18px;
    width: 130px;
    height: auto;
    color: var(--watermark);
    opacity: 0.16;
  }

  /* ============================================================
     PERSPECTIVAS
     ============================================================ */
  .perspectives {
    padding: 96px 0;
  }
  .perspectives-eyebrow {
    margin-bottom: 56px;
  }
  .perspectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .perspective-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
  .perspective-title {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--text);
  }
  .perspective-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-soft);
  }
  @media (max-width: 900px) {
    .perspectives-grid { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ============================================================
     ABSTRACT BAND
     ============================================================ */
  .abstract-band {
    padding: 0;
    background: #F7F5EF;
    line-height: 0;
  }
  .abstract-band svg {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  .site-footer {
    border-top: 1px solid var(--line);
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding: 56px 0 40px;
  }
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .footer-mark {
    height: 26px;
    width: auto;
  }
  .footer-name {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text);
  }
  .footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 200ms ease;
  }
  .footer-nav a:hover {
    color: var(--text);
  }
  .footer-address {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: right;
  }
  .footer-bottom {
    border-top: 1px solid var(--line);
    padding: 20px 0;
  }
  .footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
  }
  @media (max-width: 700px) {
    .footer-inner { flex-direction: column; }
    .footer-address { text-align: left; }
  }

  /* ============================================================
     AREAS ACCORDION
     ============================================================ */
  .areas {
    padding: 0 0 160px;
  }
  .area-item {
    border-top: 1px solid var(--line);
  }
  .area-item:last-child {
    border-bottom: 1px solid var(--line);
  }
  .area-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 4px;
    cursor: pointer;
    list-style: none;
    font-size: clamp(19px, 1.8vw, 22px);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text);
    transition: padding-left 250ms ease, color 250ms ease;
  }
  .area-summary:hover {
    padding-left: 12px;
    color: var(--text);
  }
  .area-summary::-webkit-details-marker {
    display: none;
  }
  .area-summary::marker {
    content: '';
  }
  .area-icon {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform 250ms ease;
  }
  details[open] .area-icon {
    transform: rotate(45deg);
  }
  .area-body {
    max-width: 720px;
    padding: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    transition: max-height 300ms ease;
  }
  .area-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-soft);
  }
  .area-sublist {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .area-sublist li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-soft);
  }
  .area-sublist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background: var(--text-muted);
  }
  .area-sublist strong {
    font-weight: 500;
    color: var(--text);
  }

  /* ============================================================
     PROFESSIONALS LIST
     ============================================================ */
  .professionals {
    padding: 0 0 160px;
  }
  .professional-list {
    display: flex;
    flex-direction: column;
  }
  .professional-item {
    display: flex;
    gap: 48px;
    padding: 40px 4px;
    border-top: 1px solid var(--line);
    transition: padding-left 250ms ease;
  }
  .professional-item:hover {
    padding-left: 16px;
  }
  .professional-item:last-child {
    border-bottom: 1px solid var(--line);
  }
  .professional-head {
    flex: 0 0 280px;
  }
  .professional-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 6px;
  }
  .professional-role {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .professional-body {
    flex: 1;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .areas-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
  }
  .areas-list {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-soft);
  }
  .professional-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-soft);
  }
  .professional-mail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    transition: opacity 200ms ease, color 200ms ease;
    width: fit-content;
  }
  .professional-mail:hover {
    opacity: 0.7;
    color: var(--text);
  }
  .professional-mail svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  .principles {
    padding: 0 0 160px;
  }
  .principles-eyebrow {
    margin-bottom: 32px;
  }
  .principles-text {
    max-width: 780px;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.65;
    letter-spacing: -0.005em;
    color: var(--text-soft);
    font-weight: 400;
    text-wrap: pretty;
    margin-bottom: 24px;
  }
  .principles-text:last-child {
    margin-bottom: 0;
  }

  /* ============================================================
     INSIGHTS
     ============================================================ */
  .statement {
    padding: 0 0 128px;
    text-align: left;
  }
  .statement-text {
    max-width: 720px;
    margin: 0 0 32px;
    font-size: clamp(19px, 1.7vw, 24px);
    line-height: 1.55;
    letter-spacing: -0.01em;
    color: var(--text-soft);
    font-weight: 400;
    text-wrap: pretty;
  }
  .statement-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--text);
    padding-bottom: 2px;
    transition: opacity 200ms ease;
  }
  .statement-link:hover {
    opacity: 0.7;
  }

  .insights {
    background: var(--bg);
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .insights-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 64px;
  }
  .insights-eyebrow { /* eyebrow only */ }
  .insights-all {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--text);
    padding-bottom: 2px;
    transition: opacity 200ms ease;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .insights-all:hover { opacity: 0.7; }

  .insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  .card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid var(--line);
    padding-top: 28px;
  }
  .card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
  }
  .card-meta .dot { color: var(--line); }
  .card-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-wrap: pretty;
  }
  .card-deck {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-soft);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card-link {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    transition: transform 200ms ease-out;
  }
  .card-link:hover { transform: translateX(4px); }

  /* ============================================================
     Variant divider
     ============================================================ */
  .variant-divider {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: #888;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
  }

  /* ============================================================
     Responsive
     ============================================================ */
  @media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .hero-headline { font-size: clamp(40px, 5vw, 64px); }
    .hero-subheadline { font-size: clamp(18px, 1.6vw, 22px); margin-top: 40px; }
    .insights { padding-top: 120px; padding-bottom: 120px; }
    .hero-wrap { padding-bottom: 96px; }
    .insights-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  }

  @media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav { display: none; }
    .hero-headline { font-size: clamp(36px, 9vw, 56px); }
    .hero-subheadline { font-size: 17px; margin-top: 32px; }
    .insights-grid { grid-template-columns: 1fr; gap: 32px; }
    .insights-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .watermark {
      height: 380px;
      right: -40px;
      bottom: -80px;
    }
    .insights { padding-top: 80px; padding-bottom: 80px; }
    .brand-name { font-size: 12px; }
    .card-title { font-size: 22px; }
  }

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