:root {
  --ink: #101413;
  --ink-2: #18211f;
  --forest: #202b27;
  --forest-2: #27342f;
  --ivory: #f4efe7;
  --ivory-2: #ebe3d8;
  --paper: #fbf8f2;
  --stone: #d7cabb;
  --line: rgba(173, 151, 109, 0.34);
  --gold: #c2a46e;
  --gold-2: #e1c58b;
  --muted: #6d665d;
  --white: #ffffff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(16, 20, 19, 0.96);
  color: var(--ivory);
  border-bottom: 1px solid rgba(194, 164, 110, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 270px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 3px solid var(--gold);
  border-right-color: transparent;
  border-radius: 999px;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.brand-mark::before { top: 1px; right: 2px; }
.brand-mark::after { bottom: 1px; left: 2px; }

.brand-lines {
  display: grid;
  gap: 0;
}

.brand-name {
  font-family: "Baskerville", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 23px;
  line-height: 1;
  font-weight: 500;
}

.brand-subtitle {
  color: rgba(244,239,231,.78);
  font-family: "Baskerville", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 12px;
  margin-top: 5px;
  letter-spacing: .03em;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(194, 164, 110, 0.34);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--gold-2);
  transition: transform .25s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav a,
.footer-links span {
  opacity: 0.9;
  transition: color .2s ease, opacity .2s ease;
}

.nav a:hover,
.footer-links span:hover {
  color: var(--gold-2);
  opacity: 1;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-items: center;
  justify-items: start;
  column-gap: 10px;
  row-gap: 2px;
  color: rgba(244, 239, 231, .7);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.1;
}

.language-switch > span {
  display: none;
}

.lang-button {
  border: 0;
  background: transparent;
  color: rgba(244, 239, 231, .7);
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.lang-button.active {
  color: var(--gold-2);
  border-bottom: 1px solid var(--gold-2);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, #d5bb82, #b28d55);
  color: #181513;
  box-shadow: 0 10px 35px rgba(194, 164, 110, .16);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--ivory);
  background: rgba(255,255,255,.03);
  border-color: rgba(244,239,231,.55);
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("assets/images/locarno.webp");
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
  filter: saturate(.8) contrast(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,17,16,.98) 0%, rgba(13,17,16,.86) 35%, rgba(13,17,16,.28) 68%, rgba(13,17,16,.12) 100%),
    linear-gradient(0deg, rgba(13,17,16,.45), rgba(13,17,16,.18));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 560px) 1fr;
  gap: 48px;
  align-items: end;
  min-height: 560px;
  padding: 72px 0 62px;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.048em;
  line-height: .92;
  font-size: clamp(50px, 6.8vw, 86px);
  max-width: 640px;
}

.gold-rule {
  display: block;
  width: 44px;
  height: 2px;
  margin: 28px 0 22px;
  background: var(--gold);
}

.gold-rule.small {
  width: 34px;
  margin: 12px 0 0;
}

.lead {
  max-width: 555px;
  color: rgba(244,239,231,.9);
  font-size: 16px;
  line-height: 1.62;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 22px;
  margin-top: 34px;
  flex-wrap: wrap;
  align-items: center;
}

.text-link {
  color: var(--ivory);
  font-size: 14px;
  letter-spacing: .01em;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(194,164,110,.5);
  opacity: .88;
  transition: opacity .2s ease, border-color .2s ease;
}

.text-link:hover {
  opacity: 1;
  border-bottom-color: var(--gold-2);
}

.hero-card {
  justify-self: end;
  width: min(360px, 100%);
  display: flex;
  gap: 18px;
  padding: 29px 30px;
  background: rgba(20, 23, 21, .9);
  border: 1px solid rgba(194,164,110,.28);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}

.hero-card span {
  display: block;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: var(--serif);
  font-size: 13px;
  margin-bottom: 10px;
}

.hero-card p {
  margin: 0;
  color: rgba(244,239,231,.84);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
}

.purpose-panel,
.method-panel,
.people-panel {
  background: linear-gradient(180deg, #fbf8f2, #f1eadf);
}

.purpose-panel {
  padding: 76px 0 70px;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.section-kicker p {
  margin: 0;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--ink);
  font-size: 17px;
}

.section-kicker.dark p {
  color: var(--ivory);
}

.section-kicker.dark h2 {
  color: var(--ivory);
}

.section-kicker h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(31px, 3.1vw, 42px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  margin: 30px 0 0;
  color: var(--ink-2);
}

.proof-card {
  padding-left: 30px;
  border-left: 1px solid rgba(28,28,26,.12);
}

.proof-card h3,
.focus-card h3,
.principle h3,
.step h3,
.profile-copy h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.1;
}

.proof-card h3::before,
.focus-card h3::before,
.principle h3::before {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 14px;
  opacity: .85;
}

.proof-card p,
.focus-card p,
.principle p,
.step p,
.profile-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.focus-panel {
  position: relative;
  padding: 74px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(194,164,110,.1), transparent 38%),
    linear-gradient(135deg, #1a2320, #26322e);
  color: var(--ivory);
  overflow: hidden;
}

.focus-panel::before,
.principles-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.03) 25%, transparent 25%);
  background-size: 18px 18px;
}

.focus-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 34px;
}

.focus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.focus-card {
  min-height: 154px;
  padding: 24px 25px 23px;
  border: 1px solid rgba(194,164,110,.34);
  background: rgba(255,255,255,.025);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

.focus-card h3 {
  color: var(--ivory);
  font-size: 20px;
}

.focus-card p {
  color: rgba(244,239,231,.75);
}

.selectivity-panel {
  position: relative;
  background: var(--paper);
  border-top: 1px solid rgba(194,164,110,.16);
  border-bottom: 1px solid rgba(194,164,110,.16);
  overflow: hidden;
}

.marble {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 32%;
  background:
    linear-gradient(110deg, rgba(160,143,127,.24), rgba(255,255,255,0) 58%),
    radial-gradient(circle at 22% 25%, rgba(130,120,108,.18), transparent 26%),
    radial-gradient(circle at 55% 70%, rgba(194,164,110,.14), transparent 28%);
}

.selectivity-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 82px;
  align-items: center;
  gap: 60px;
  min-height: 104px;
  padding: 28px 0;
}

.selectivity-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: clamp(24px, 2.4vw, 32px);
}

.selectivity-grid p {
  margin: 0;
  color: var(--muted);
}

.compass {
  justify-self: end;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(194,164,110,.38);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
}

.method-panel {
  padding: 66px 0 60px;
}

.method-grid {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 28px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(194,164,110,.35) 100%);
}

.step {
  position: relative;
  min-height: 160px;
  padding: 0 24px 0 28px;
  border-left: 0;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 18px;
}

.step h3 {
  margin-top: 0;
  color: var(--ink);
}

.principles-panel {
  position: relative;
  padding: 42px 0;
  background: linear-gradient(135deg, #141b19, #25312d);
  color: var(--ivory);
  overflow: hidden;
}

.principles-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 170px repeat(4, 1fr);
  gap: 26px;
  align-items: start;
}

.principle {
  min-height: 112px;
  padding-left: 24px;
  border-left: 1px solid rgba(194,164,110,.27);
}

.principle h3 {
  color: var(--ivory);
  font-size: 19px;
  margin: 4px 0 6px;
}

.principle p {
  color: rgba(244,239,231,.72);
}

.people-panel {
  padding: 28px 0 54px;
}

.people-grid {
  display: grid;
  grid-template-columns: 155px repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}

.profile-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 210px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(28,28,26,.1);
}

.profile-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: center 24%;
  background: #d5d0c8;
}

.profile-iatarulo { object-position: center center; }
.profile-bonalumi { object-position: center 16%; }

.profile-copy {
  padding: 30px 24px 22px;
  display: flex;
  flex-direction: column;
}

.profile-copy h3 {
  font-size: 19px;
  margin: 0 0 4px;
}

.profile-name {
  min-height: 2.55em;
  line-height: 1.05;
}

.profile-name span {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.05;
}

.profile-copy span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
  margin-bottom: 16px;
}

.profile-role {
  display: block;
  min-height: 2.8em;
  line-height: 1.15;
  white-space: pre-line;
}

.profile-copy p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-2);
}

.profile-copy a {
  margin-top: auto;
  font-weight: 700;
  color: var(--ink);
  opacity: .86;
}

.contact-panel {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: #151c1a;
  color: var(--ivory);
}

.contact-image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 22%;
  background-image:
    linear-gradient(90deg, rgba(18,24,22,.05), rgba(18,24,22,.92)),
    url("assets/images/locarno.webp");
  background-size: cover;
  background-position: left center;
  filter: saturate(.65) contrast(.95);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .9fr 110px;
  gap: 56px;
  align-items: center;
  min-height: 210px;
  padding: 42px 0;
}

.contact-copy {
  padding-left: 180px;
}

.contact-copy h2 {
  max-width: 500px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.03;
  margin: 0;
  letter-spacing: -0.03em;
}

.contact-copy p {
  margin: 18px 0 0;
  color: rgba(244,239,231,.77);
  max-width: 520px;
}

.contact-actions {
  display: grid;
  gap: 18px;
}

.contact-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(194,164,110,.58);
  border-radius: 50%;
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
}

.contact-row strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  color: var(--ivory);
}

.contact-row em {
  display: block;
  font-style: normal;
  color: rgba(244,239,231,.67);
  font-size: 13px;
  margin-top: 2px;
}

.big-ring {
  width: 92px;
  height: 92px;
  border: 13px solid var(--gold);
  border-left-color: transparent;
  border-radius: 50%;
  opacity: .86;
}

.site-footer {
  background: #0e1211;
  color: rgba(244,239,231,.7);
  border-top: 1px solid rgba(194,164,110,.15);
  font-size: 13px;
}

.footer-grid {
  min-height: 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  color: var(--ivory);
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .14em;
}

.footer-brand span {
  color: var(--gold);
  font-family: var(--serif);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-grid p {
  justify-self: end;
  margin: 0;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    height: auto;
    min-height: 74px;
    padding: 16px 28px;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: start;
    flex-wrap: wrap;
    gap: 18px;
  }

  .header-actions {
    justify-self: end;
  }

  .purpose-grid,
  .principles-grid,
  .people-grid,
  .method-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .focus-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .steps::before {
    display: none;
  }

  .people-grid .section-kicker {
    margin-bottom: 16px;
  }

  .contact-copy {
    padding-left: 0;
  }

  .contact-image {
    opacity: .18;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .big-ring {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 34px, var(--max));
  }

  .site-header {
    position: sticky;
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: flex;
    order: 2;
    justify-self: end;
  }

  .header-actions {
    order: 3;
  }

  .nav {
    order: 4;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    background: rgba(16, 20, 19, 0.98);
    border-bottom: 1px solid rgba(194, 164, 110, 0.18);
    backdrop-filter: blur(14px);
    transition: max-height .3s ease, padding .3s ease;
  }

  .nav.open {
    max-height: 60vh;
    padding: 8px 28px 18px;
  }

  .nav a {
    width: 100%;
    padding: 13px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(194, 164, 110, 0.12);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .brand {
    min-width: auto;
  }

  .brand-subtitle {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 70px 0 38px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-card {
    justify-self: start;
  }

  .purpose-panel,
  .focus-panel,
  .method-panel {
    padding: 52px 0;
  }

  .proof-card {
    padding-left: 0;
    border-left: 0;
  }

  .focus-cards,
  .steps,
  .selectivity-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .selectivity-grid {
    gap: 20px;
  }

  .compass {
    justify-self: start;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-card img {
    height: 260px;
  }

  .footer-grid,
  .footer-brand {
    justify-items: start;
    align-items: start;
  }

  .footer-grid p {
    justify-self: start;
  }
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(194,164,110,.20));
}

.profile-copy > span {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
  margin: 0 0 16px;
}

.address-row {
  margin-top: 2px;
}

.footer-brand {
  align-items: center;
}

.footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(194,164,110,.18));
}

.footer-brand > div {
  display: grid;
  gap: 2px;
}

.footer-brand small {
  display: block;
  color: rgba(244,239,231,.52);
  font-size: 11px;
  line-height: 1.2;
}

.big-footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: .7;
  filter: grayscale(.35) brightness(1.02);
}

.footer-links a {
  opacity: 0.9;
  transition: color .2s ease, opacity .2s ease;
}

.footer-links a:hover {
  color: var(--gold-2);
  opacity: 1;
}

.legal-page {
  background: linear-gradient(180deg, #fbf8f2, #f1eadf);
  min-height: 100vh;
}

.simple-page {
  padding: 64px 0 90px;
}

.simple-copy {
  max-width: 840px;
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(28,28,26,.1);
  padding: 42px 42px 48px;
  box-shadow: 0 16px 40px rgba(0,0,0,.05);
}

.simple-copy h1,
.simple-copy h2 {
  font-family: "Baskerville", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-weight: 400;
  color: var(--ink-2);
}

.simple-copy h1 {
  font-size: 40px;
  margin: 10px 0 20px;
}

.simple-copy h2 {
  font-size: 25px;
  margin: 32px 0 10px;
}

.simple-copy p {
  color: var(--ink-2);
  margin: 0 0 14px;
}

.eyebrow-lite {
  color: var(--gold);
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  margin: 0;
}

.brand-name {
  font-family: "Didot", "Bodoni 72", "Bodoni MT", "Hoefler Text", "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: 0.17em;
  font-size: 24px;
}

.brand-subtitle {
  font-family: "Didot", "Bodoni 72", "Bodoni MT", "Hoefler Text", Georgia, serif;
  letter-spacing: 0.06em;
  color: rgba(244,239,231,.74);
}

.header-cta {
  width: 132px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.brand-name,
.footer-signature strong,
.contact-signature strong,
.footer-brand strong {
  font-family: "Avenir Next", "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 300 !important;
  text-transform: none !important;
  letter-spacing: 0.055em !important;
}

.brand-name {
  font-size: 26px !important;
}

.footer-signature strong,
.contact-signature strong {
  font-size: 16px !important;
}

.footer-brand strong {
  font-size: 14px !important;
}

.brand-subtitle,
.footer-signature span,
.contact-signature span {
  font-family: "Avenir Next", "Montserrat", "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.045em !important;
}

.footer-logo-only {
  justify-self: end;
}

.contact-panel .big-footer-logo {
  justify-self: end;
}

html {
  scroll-padding-top: 112px;
}

section[id] {
  scroll-margin-top: 112px;
}

.brand-name {
  text-transform: uppercase !important;
}

.contact-lion-block {
  justify-self: end;
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
  color: var(--ivory);
  min-width: 160px;
}

.contact-lion-block .big-footer-logo {
  justify-self: center;
}

.contact-lion-block strong {
  font-family: "Avenir Next", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 15px;
  line-height: 1;
  margin-top: 3px;
}

.contact-lion-block span {
  font-family: "Avenir Next", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .045em;
  font-size: 11px;
  line-height: 1.15;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 24px;
  }

  section[id] {
    scroll-margin-top: 24px;
  }

  .contact-lion-block {
    justify-self: start;
  }
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro-panel {
  background: linear-gradient(180deg, #f6f0e6 0%, #fbf8f2 100%);
  padding: 74px 0 78px;
  border-top: 1px solid rgba(194,164,110,.12);
  border-bottom: 1px solid rgba(194,164,110,.12);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(300px, .95fr);
  gap: 56px;
  align-items: center;
}

.intro-eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Avenir Next", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 12px;
  font-weight: 400;
}

.intro-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(31px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink-2);
  max-width: 760px;
}

.intro-lead {
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 640px;
}

.intro-text {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 620px;
}

.intro-visual {
  display: grid;
  gap: 12px;
}

.intro-photo {
  min-height: 360px;
  border: 1px solid rgba(194,164,110,.18);
  background:
    linear-gradient(0deg, rgba(18,24,22,.22), rgba(18,24,22,.22)),
    url("assets/images/intro-lake.webp");
  background-size: cover;
  background-position: center center;
  box-shadow: 0 18px 42px rgba(0,0,0,.12);
}

.intro-caption {
  color: rgba(16,20,19,.55);
  font-size: 12px;
  letter-spacing: .03em;
}

@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-photo {
    min-height: 260px;
  }
}

/* In case the contact background image is applied directly to the panel */
.contact-panel::before {
  background:
    linear-gradient(90deg,
      rgba(17, 22, 20, 0) 0%,
      rgba(17, 22, 20, 0.16) 43%,
      rgba(17, 22, 20, 0.68) 74%,
      var(--deep) 100%),
    inherit;
}

/* keep any old generic pseudo-overlay from touching image content */
.contact-image::after,
.contact-photo::after,
.contact-panel::before {
  content: none !important;
  display: none !important;
}

.contact-visual {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 52%,
    rgba(0,0,0,.72) 70%,
    rgba(0,0,0,.28) 88%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 52%,
    rgba(0,0,0,.72) 70%,
    rgba(0,0,0,.28) 88%,
    rgba(0,0,0,0) 100%
  );
}

.contact-visual::after,
.contact-image::after,
.contact-photo::after,
.contact-panel::before {
  content: none !important;
  display: none !important;
}

.contact-visual img,
.contact-image img,
.contact-photo img {
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 52%,
    rgba(0,0,0,.72) 70%,
    rgba(0,0,0,.28) 88%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 52%,
    rgba(0,0,0,.72) 70%,
    rgba(0,0,0,.28) 88%,
    rgba(0,0,0,0) 100%
  );
}

.brand {
  cursor: pointer;
}

.contact-lion-block-link {
  text-decoration: none;
  cursor: pointer;
}

.contact-lion-block-link:hover .big-footer-logo {
  transform: translateY(-1px);
  transition: transform .18s ease;
}

.intro-copy h2 {
  white-space: pre-line;
}



/* v47: new content boxes + selected logo */
.case-panel {
  background: linear-gradient(180deg, #f7f1e8 0%, #fbf8f2 100%);
  padding: 74px 0 76px;
  border-top: 1px solid rgba(194,164,110,.14);
}

.case-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  align-items: start;
}

.case-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.case-card {
  min-height: 210px;
  padding: 25px 24px 24px;
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(28,28,26,.10);
  box-shadow: 0 14px 34px rgba(0,0,0,.035);
}

.case-card h3,
.role-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
}

.case-card h3::before,
.role-card h3::before {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 14px;
  opacity: .85;
}

.case-card p,
.role-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.58;
}

.role-panel {
  position: relative;
  padding: 74px 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(194,164,110,.12), transparent 34%),
    linear-gradient(135deg, #17201d, #26322e);
  color: var(--ivory);
  overflow: hidden;
}

.role-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.03) 25%, transparent 25%);
  background-size: 18px 18px;
}

.role-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
}

.role-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.role-card {
  min-height: 190px;
  padding: 26px 25px 25px;
  border: 1px solid rgba(194,164,110,.34);
  background: rgba(255,255,255,.025);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

.role-card h3 {
  color: var(--ivory);
}

.role-card p {
  color: rgba(244,239,231,.76);
}

.brand-logo {
  width: 46px;
  height: 42px;
  object-fit: contain;
}

.contact-grid {
  grid-template-columns: 1.25fr .9fr 150px;
}

.big-footer-logo {
  width: 142px;
  height: auto;
  max-height: 154px;
  object-fit: contain;
  opacity: .92;
  filter: none;
}

.contact-lion-block strong,
.contact-lion-block span {
  display: none;
}

@media (max-width: 1100px) {
  .case-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .case-cards,
  .role-cards {
    grid-template-columns: 1fr;
  }

  .case-card,
  .role-card {
    min-height: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .big-footer-logo {
    width: 118px;
  }
}


/* v48: requested discursive Ambiti section + exact selected logos */
.focus-discursive .focus-grid {
  grid-template-columns: 260px 1fr;
  align-items: start;
}

.focus-prose {
  max-width: 900px;
}

.focus-lead {
  margin: 0 0 26px;
  max-width: 780px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(244,239,231,.82);
}

.focus-text-block {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-top: 1px solid rgba(194,164,110,.26);
}

.focus-text-block:last-child {
  border-bottom: 1px solid rgba(194,164,110,.26);
}

.focus-text-block h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
}

.focus-text-block p {
  margin: 0;
  color: rgba(244,239,231,.74);
  font-size: 15px;
  line-height: 1.65;
}

.brand-logo {
  width: 58px;
  height: 46px;
  object-fit: contain;
}

.big-footer-logo {
  width: 170px;
  height: auto;
  max-height: 170px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .focus-discursive .focus-grid,
  .focus-text-block {
    grid-template-columns: 1fr;
  }

  .focus-text-block {
    gap: 8px;
  }

  .focus-lead {
    font-size: 16px;
  }

  .brand-logo {
    width: 50px;
    height: 42px;
  }

  .big-footer-logo {
    width: 138px;
  }
}


/* v49: crisper logo rendering */
.brand-logo {
  width: 68px;
  height: 52px;
  object-fit: contain;
}

.big-footer-logo {
  width: 220px;
  height: auto;
  max-height: 220px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .brand-logo {
    width: 60px;
    height: 48px;
  }

  .big-footer-logo {
    width: 168px;
    max-height: 168px;
  }
}


/* v52: larger vector logos, tighter header mark, enlarged footer emblem */
.site-header {
  height: 88px;
}

.brand {
  gap: 14px;
}

.brand-logo {
  width: 86px;
  height: 74px;
  object-fit: contain;
  flex: 0 0 auto;
}

.contact-grid {
  grid-template-columns: minmax(280px, 1.12fr) minmax(280px, 0.92fr) 360px;
  align-items: center;
}

.big-footer-logo {
  width: 360px;
  max-width: 100%;
  max-height: 360px;
  height: auto;
  object-fit: contain;
}

.contact-lion-block {
  justify-self: end;
}

@media (max-width: 1100px) {
  .site-header {
    height: auto;
    min-height: 86px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-lion-block {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .brand-logo {
    width: 72px;
    height: 62px;
  }

  .big-footer-logo {
    width: 260px;
    max-height: 260px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 82px;
  }

  .brand-logo {
    width: 64px;
    height: 56px;
  }
}


/* v53: header crop + contact balance + larger footer logo */
.contact-copy {
  padding-left: 168px;
}

.contact-copy h2 {
  max-width: 560px;
  font-size: clamp(28px, 2.7vw, 40px);
}

.contact-copy p {
  max-width: 560px;
}

.contact-grid {
  grid-template-columns: minmax(320px, 1.23fr) minmax(280px, 0.87fr) 432px;
  gap: 52px;
}

.brand-logo {
  width: 88px;
  height: 74px;
}

.big-footer-logo {
  width: 432px;
  max-width: 100%;
  max-height: 432px;
}

@media (max-width: 1100px) {
  .contact-copy {
    padding-left: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .brand-logo {
    width: 74px;
    height: 62px;
  }

  .big-footer-logo {
    width: 312px;
    max-height: 312px;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    width: 66px;
    height: 56px;
  }

  .contact-copy h2 {
    max-width: 420px;
    font-size: clamp(26px, 9vw, 36px);
  }
}


/* v54: lower band rebalance + header mark crop */
.contact-image {
  width: 20%;
}

.contact-grid {
  grid-template-columns: minmax(480px, 1.55fr) minmax(300px, 0.95fr) minmax(360px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.contact-copy {
  padding-left: 124px;
}

.contact-copy h2 {
  max-width: 640px;
  font-size: clamp(26px, 2.45vw, 38px);
  line-height: 1.04;
}

.contact-copy p {
  max-width: 620px;
}

.brand-logo {
  width: 90px;
  height: 76px;
}

.big-footer-logo {
  width: 432px;
  max-width: 100%;
  max-height: 432px;
}

.contact-lion-block {
  justify-self: center;
}

@media (max-width: 1180px) {
  .contact-grid {
    grid-template-columns: minmax(420px, 1.35fr) minmax(280px, 0.9fr) minmax(320px, 0.95fr);
    gap: 34px;
  }

  .contact-copy {
    padding-left: 104px;
  }

  .contact-copy h2 {
    max-width: 560px;
  }

  .big-footer-logo {
    width: 392px;
    max-height: 392px;
  }
}

@media (max-width: 1100px) {
  .contact-image {
    width: 26%;
  }

  .contact-copy {
    padding-left: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .brand-logo {
    width: 76px;
    height: 64px;
  }

  .big-footer-logo {
    width: 312px;
    max-height: 312px;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    width: 68px;
    height: 58px;
  }

  .contact-copy h2 {
    max-width: 430px;
    font-size: clamp(24px, 8vw, 34px);
  }
}


/* v56: corrected header lion crop, no forced cover */
.brand-logo {
  width: 92px;
  height: 74px;
  object-fit: contain;
  object-position: center center;
  flex: 0 0 auto;
}

/* v58 public launch: management portraits */

/* v59: four-language selector and multilingual legal pages */
.legal-header-actions {
  justify-self: end;
}
@media (max-width: 760px) {
  .language-switch { column-gap: 8px; row-gap: 2px; font-size: 13px; }
  .legal-page .site-header { grid-template-columns: auto 1fr; }
  .legal-page .header-actions { order: initial; justify-self: end; }
}

/* v60: final multilingual responsive hardening */
@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 10px 17px;
    min-height: 72px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    width: 54px;
    height: 48px;
  }

  .brand-lines {
    min-width: 0;
  }

  .brand-name {
    font-size: 18px !important;
    letter-spacing: .035em !important;
    white-space: nowrap;
  }

  .header-actions {
    order: 2;
    justify-self: end;
    align-items: center;
    gap: 0;
  }

  .nav-toggle {
    order: 3;
  }

  .nav {
    order: 4;
    flex-wrap: nowrap;
  }

  .language-switch {
    grid-template-columns: repeat(2, max-content);
    column-gap: 6px;
    row-gap: 2px;
    font-size: 12px;
    white-space: nowrap;
  }

  .simple-copy {
    padding: 32px 24px 36px;
  }

  .simple-copy h1 {
    font-size: clamp(30px, 9vw, 36px);
  }

  .simple-copy h2 {
    font-size: clamp(22px, 7vw, 25px);
  }

  .legal-page .site-header {
    grid-template-columns: auto 1fr;
  }

  .legal-page .header-actions {
    order: initial;
    justify-self: end;
  }
}

@media (max-width: 350px) {
  .brand-lines {
    display: none;
  }

  .site-header {
    gap: 8px;
  }

  .brand-logo {
    width: 50px;
    height: 44px;
  }
}




/* v73: guarantee name styling */
.profile-copy h3.profile-name span, .profile-copy .profile-name span {
  display:block;
  color: var(--ink) !important;
  font-family: var(--serif) !important;
  font-size: 19px !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
}
