@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
:root {
  --obsidian: #0D0B08;
  --bronze: #1A1510;
  --bark: #241C13;
  --warm-mid: #2E2318;
  --gold-dk: #8A6D2F;
  --ember: #6B4F2A;
  --fog: #9A8E7E;
  --linen: #C8BBA8;
  --bg: #0D0B08;
  --bg-2: #1A1510;
  --panel: #241C13;
  --panel-2: #2E2318;
  --cream: #EDE8DF;
  --cream-2: #C8BBA8;
  --ink: #0D0B08;
  --muted: #9A8E7E;
  --muted-dark: #9A8E7E;
  --line: rgba(191, 155, 78, 0.18);
  --line-dark: rgba(191, 155, 78, 0.18);
  --gold: #BF9B4E;
  --gold-light: #D4B06A;
  --success: #D4B06A;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.5;
  min-width: 320px;
}

body.menu-open {
  overflow: hidden;
}

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

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

button, input, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  z-index: 999;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(13, 18, 24, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.02em;
  font-weight: 760;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 40px rgba(191, 155, 78, 0.22);
}

.brand-wordmark {
  display: grid;
  line-height: 1;
}

.brand-wordmark span:first-child {
  font-size: 1.02rem;
}

.brand-wordmark span:last-child {
  margin-top: 5px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 650;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(246, 240, 230, 0.78);
  font-size: 0.94rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.nav-cta {
  border: 1px solid rgba(191, 155, 78, 0.5) !important;
  color: var(--gold-light) !important;
  background: rgba(191, 155, 78, 0.08) !important;
}

main {
  overflow: clip;
}

.section {
  padding: 92px 24px;
}

.section.tight {
  padding-top: 64px;
  padding-bottom: 64px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 79px);
  display: grid;
  align-items: center;
  padding: 76px 24px 56px;
  background:
    radial-gradient(circle at 15% 18%, rgba(191, 155, 78, 0.19), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(107, 79, 42, 0.22), transparent 32%),
    linear-gradient(160deg, var(--obsidian) 0%, var(--bronze) 60%, var(--obsidian) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 58% 35%, black, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 780;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 9vw, 7.2rem);
  max-width: 880px;
}

.hero h1 {
  font-size: clamp(2.35rem, 6.2vw, 5.15rem);
  max-width: 760px;
  line-height: 1.02;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.lead {
  color: rgba(246, 240, 230, 0.75);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  max-width: 700px;
  margin-top: 24px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 760;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--cream);
  color: var(--ink);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-top {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
}

.panel-top strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 5px;
}

.panel-top small {
  color: var(--muted);
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(131, 211, 164, 0.12);
  flex: 0 0 auto;
  margin-top: 6px;
}

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

.metric {
  padding: 24px;
  min-height: 132px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric:nth-child(2n) {
  border-right: 0;
}

.metric:nth-last-child(-n+2) {
  border-bottom: 0;
}

.metric span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 740;
}

.metric strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.06em;
}

.ticker {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.ticker-track {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  animation: ticker 28s linear infinite;
}

.ticker span {
  white-space: nowrap;
  color: rgba(246, 240, 230, 0.68);
  font-size: 0.88rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.light-section {
  background: var(--cream);
  color: var(--ink);
}

.light-section .section-kicker,
.light-section .muted,
.light-section .card p,
.light-section .service-card p,
.light-section .insight-card p,
.light-section .split-copy p {
  color: var(--muted-dark);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.section-kicker {
  display: block;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 780;
  margin-bottom: 14px;
}

.light-section .section-kicker {
  color: #8d6a2c;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: stretch;
}

.statement-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-dark);
  background: var(--warm-mid);
  box-shadow: 0 18px 60px rgba(16, 24, 32, 0.08);
}

.statement-card .big-number {
  font-size: clamp(3.6rem, 9vw, 7rem);
  letter-spacing: -0.08em;
  line-height: 0.9;
  color: var(--gold-light);
  font-weight: 820;
}

.statement-card p {
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.service-card,
.insight-card,
.office-card,
.form-card,
.transaction-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  padding: 24px;
}

.light-section .card,
.light-section .service-card,
.light-section .insight-card,
.light-section .office-card,
.light-section .form-card,
.light-section .transaction-card {
  border-color: var(--line-dark);
  background: var(--warm-mid);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  margin-bottom: 20px;
  font-weight: 820;
}

.card h3,
.service-card h3,
.insight-card h3,
.office-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.card p,
.service-card p,
.insight-card p,
.office-card p {
  color: var(--muted);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(191, 155, 78, 0.5);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(191, 155, 78, 0.14);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(191, 155, 78, 0.35);
  color: var(--gold-light);
  background: rgba(191, 155, 78, 0.08);
  font-size: 0.82rem;
  font-weight: 720;
}

.light-section .chip {
  color: var(--gold-light);
  background: rgba(191, 155, 78, 0.12);
}

.dark-band {
  background: linear-gradient(155deg, var(--obsidian), var(--bronze));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.process-step::before {
  counter-increment: process;
  content: "0" counter(process);
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 840;
  margin-bottom: 34px;
}

.process-step h3 {
  font-size: 1.18rem;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted);
}

.insight-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.insight-card.featured {
  grid-row: span 2;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 25% 15%, rgba(191, 155, 78, 0.25), transparent 28%),
    rgba(255, 255, 255, 0.055);
}

.light-section .insight-card.featured {
  background:
    radial-gradient(circle at 25% 15%, rgba(191, 155, 78, 0.2), transparent 28%),
    var(--warm-mid);
}

.insight-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(191, 155, 78, 0.12);
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 780;
}

.light-section .insight-tag {
  color: var(--gold-light);
}

.insight-card h3 {
  margin-bottom: 14px;
}

.insight-card time {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(191, 155, 78, 0.34);
  background:
    linear-gradient(135deg, rgba(191, 155, 78, 0.14), rgba(255, 255, 255, 0.04)),
    var(--panel);
}

.cta-panel p {
  color: var(--muted);
  max-width: 700px;
  margin-top: 12px;
}

.page-hero {
  padding: 86px 24px 68px;
  background:
    radial-gradient(circle at 16% 20%, rgba(191, 155, 78, 0.18), transparent 32%),
    linear-gradient(155deg, var(--obsidian), var(--bronze));
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.45fr);
  gap: 44px;
  align-items: end;
}

.page-hero p {
  color: rgba(246, 240, 230, 0.75);
  font-size: 1.08rem;
  max-width: 680px;
  margin-top: 24px;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--gold-light);
}

.mini-stat-grid {
  display: grid;
  gap: 12px;
}

.mini-stat {
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.mini-stat strong {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.045em;
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.split-copy {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
  align-items: start;
}

.split-copy p + p {
  margin-top: 18px;
}

.values-list {
  display: grid;
  gap: 14px;
}

.value-row {
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--warm-mid);
}

.value-row strong {
  display: block;
  margin-bottom: 6px;
}

.value-row span {
  color: var(--muted-dark);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.detail-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
}

.detail-panel h3 {
  font-size: 1.3rem;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.detail-panel p,
.detail-panel li {
  color: var(--muted);
}

.detail-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-btn {
  border: 1px solid var(--line-dark);
  background: var(--warm-mid);
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 720;
}

.filter-btn.active {
  background: var(--ink);
  color: var(--cream);
}

.transaction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.transaction-card strong {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.transaction-card span {
  display: block;
  color: var(--gold-light);
  font-weight: 780;
  margin-bottom: 10px;
}

.transaction-card p {
  color: var(--muted-dark);
}

.newsletter-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.field-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field-group label {
  font-weight: 720;
  font-size: 0.92rem;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--warm-mid);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dark-band input,
.dark-band textarea,
.newsletter-panel input {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(191, 155, 78, 0.14);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.office-list {
  display: grid;
  gap: 14px;
}

.office-card a {
  display: flex;
  width: fit-content;
  margin-top: 12px;
  color: var(--gold-light);
  font-weight: 780;
}

.office-card a + a {
  margin-top: 6px;
}

.form-card {
  padding: 28px;
}

.hidden {
  display: none !important;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--obsidian);
  padding: 56px 24px 26px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.55fr);
  gap: 34px;
}

.footer-brand p {
  color: var(--muted);
  margin-top: 16px;
  max-width: 380px;
}

.footer-col strong {
  display: block;
  margin-bottom: 16px;
  color: var(--cream);
}

.footer-col a,
.footer-col span {
  display: block;
  color: var(--muted);
  margin: 9px 0;
}

.footer-bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(13, 18, 24, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.menu-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 13px 14px;
  }

  .hero-grid,
  .page-hero .container,
  .section-head,
  .split-grid,
  .split-copy,
  .newsletter-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .card-grid,
  .process-grid,
  .transaction-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .insight-card.featured {
    grid-column: span 2;
    min-height: 300px;
  }

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

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

@media (max-width: 640px) {
  .nav-shell {
    padding: 14px 16px;
  }

  .brand-wordmark span:first-child {
    font-size: 0.95rem;
  }

  .brand-wordmark span:last-child {
    font-size: 0.64rem;
  }

  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

  .lead {
    font-size: 1.02rem;
  }

  .button-row,
  .newsletter-form,
  .cta-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .metrics-grid,
  .card-grid,
  .process-grid,
  .insight-grid,
  .transaction-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
  }

  .metric:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .insight-card.featured {
    grid-column: auto;
  }

  .statement-card,
  .cta-panel,
  .newsletter-panel,
  .form-card {
    padding: 24px;
  }

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Nexus Gremont color-only refresh from the supplied sample HTML */
body {
  background: var(--obsidian);
  color: var(--linen);
}
.site-header {
  background: rgba(13, 11, 8, 0.93);
  border-bottom-color: var(--line);
}
.brand-mark {
  color: var(--obsidian);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 40px rgba(191, 155, 78, 0.22);
}
.brand-wordmark span:first-child { color: var(--cream); }
.brand-wordmark span:last-child { color: var(--fog); }
.primary-nav a { color: var(--fog); }
.primary-nav a:hover,
.primary-nav a.active {
  background: rgba(191, 155, 78, 0.08);
  color: var(--cream);
}
.nav-cta {
  border-color: rgba(191, 155, 78, 0.5) !important;
  color: var(--gold-light) !important;
  background: rgba(191, 155, 78, 0.08) !important;
}
.nav-toggle {
  border-color: var(--line);
  background: rgba(191, 155, 78, 0.06);
  color: var(--cream);
}
@media (max-width: 980px) {
  .primary-nav {
    border-color: var(--line);
    background: rgba(13, 11, 8, 0.97);
  }
}
.hero {
  background:
    radial-gradient(circle at 15% 18%, rgba(191, 155, 78, 0.19), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(107, 79, 42, 0.22), transparent 32%),
    linear-gradient(160deg, var(--obsidian) 0%, var(--bronze) 56%, var(--bark) 100%);
}
.hero::before {
  background-image:
    linear-gradient(rgba(191, 155, 78, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 155, 78, 0.045) 1px, transparent 1px);
}
.eyebrow,
.section-kicker,
.breadcrumb a,
.insight-tag,
.card-icon,
.chip,
.office-card a {
  color: var(--gold-light);
}
.eyebrow::before { background: var(--gold-light); }
h1, h2, h3 { color: var(--cream); }
.light-section h1,
.light-section h2,
.light-section h3,
.light-section .card h3,
.light-section .service-card h3,
.light-section .insight-card h3,
.light-section .office-card h3,
.light-section .transaction-card h3 { color: var(--cream); }
.lead,
.panel-top small,
.metric span,
.section-head p,
.card p,
.service-card p,
.insight-card p,
.office-card p,
.process-step p,
.detail-panel p,
.detail-panel li,
.breadcrumb,
.mini-stat span,
.footer-brand p,
.footer-col a,
.footer-col span,
.footer-bottom,
.cta-panel p,
.newsletter-panel p,
.value-row span,
.transaction-card p,
.light-section .section-kicker,
.light-section .muted,
.light-section .card p,
.light-section .service-card p,
.light-section .insight-card p,
.light-section .split-copy p,
.light-section .office-card p {
  color: var(--fog);
}
.btn-primary,
.btn-gold,
.process-step::before,
.card-icon {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--obsidian);
}
.btn-secondary {
  border-color: var(--line);
  background: rgba(191, 155, 78, 0.06);
  color: var(--linen);
}
.light-section .btn-secondary {
  color: var(--linen) !important;
  border-color: var(--line) !important;
  background: rgba(191, 155, 78, 0.06) !important;
}
.hero-panel,
.card,
.service-card,
.insight-card,
.office-card,
.form-card,
.transaction-card,
.process-step,
.detail-panel,
.newsletter-panel,
.cta-panel,
.mini-stat {
  border-color: var(--line);
  background: var(--bark);
}
.panel-top,
.ticker,
.footer-bottom { border-color: var(--line); }
.ticker { background: rgba(191, 155, 78, 0.04); }
.ticker span { color: var(--fog); }
.metric { border-color: var(--line); }
.metric strong { color: var(--cream); }
.pulse {
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(191, 155, 78, 0.12);
}
.light-section {
  background: var(--bark);
  color: var(--linen);
}
.light-section .card,
.light-section .service-card,
.light-section .insight-card,
.light-section .office-card,
.light-section .form-card,
.light-section .transaction-card,
.statement-card,
.value-row,
.filter-btn {
  border-color: var(--line);
  background: var(--warm-mid);
  color: var(--linen);
}
.statement-card .big-number,
.transaction-card span,
.light-section .section-kicker,
.light-section .insight-tag,
.light-section .chip,
.office-card a {
  color: var(--gold-light);
}
.dark-band {
  background: linear-gradient(155deg, var(--obsidian), var(--bronze));
}
.service-card:hover {
  border-color: rgba(191, 155, 78, 0.5);
}
.service-card::after,
.insight-card.featured,
.light-section .insight-card.featured {
  background:
    radial-gradient(circle at 25% 15%, rgba(191, 155, 78, 0.2), transparent 28%),
    var(--bark);
}
.chip,
.light-section .chip,
.insight-tag,
.light-section .insight-tag {
  background: rgba(191, 155, 78, 0.10);
  border-color: rgba(191, 155, 78, 0.28);
  color: var(--gold-light);
}
.cta-panel {
  background:
    linear-gradient(135deg, rgba(191, 155, 78, 0.14), rgba(237, 232, 223, 0.035)),
    var(--bark);
}
.page-hero {
  background:
    radial-gradient(circle at 16% 20%, rgba(191, 155, 78, 0.18), transparent 32%),
    linear-gradient(155deg, var(--obsidian), var(--bronze));
  border-bottom-color: var(--line);
}
input, textarea, select,
.dark-band input,
.dark-band textarea,
.newsletter-panel input {
  border-color: rgba(191, 155, 78, 0.18);
  background: var(--warm-mid);
  color: var(--linen);
}
input::placeholder,
textarea::placeholder { color: rgba(154, 142, 126, 0.65); }
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(191, 155, 78, 0.14);
}
.filter-btn.active {
  background: var(--gold);
  color: var(--obsidian);
}
.site-footer {
  border-top-color: var(--line);
  background: var(--obsidian);
}
.footer-col strong { color: var(--gold-light); }


/* Final legibility, logo, mobile, and form refinements */
:root {
  --fog: #B9AC99;
  --linen: #DED4C5;
  --cream: #F4EFE7;
  --muted: #B9AC99;
  --muted-dark: #D8CDBD;
}

*, *::before, *::after {
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { scroll-padding-top: 92px; }
body { font-size: 17px; line-height: 1.68; text-rendering: optimizeLegibility; }
p, li { line-height: 1.72; }

.site-header,
.nav-shell,
.primary-nav,
.brand,
.brand-logo,
.card,
.service-card,
.insight-card,
.office-card,
.form-card,
.transaction-card,
.process-step,
.detail-panel,
.mini-stat,
.cta-panel,
input,
textarea,
select,
.btn {
  transition-property: color, background-color, border-color, box-shadow, transform, opacity, width, height, padding, margin, grid-template-columns;
  transition-duration: 260ms;
  transition-timing-function: cubic-bezier(.2,.8,.2,1);
}

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
}
.nav-shell {
  width: 100%;
  padding: 16px 28px;
}
.brand {
  min-width: 0;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.brand-logo-full {
  height: 44px;
  max-width: 300px;
}
.brand-logo-icon {
  display: none;
  height: 42px;
  width: 42px;
}
.brand-logo-footer {
  height: 54px;
  max-width: 310px;
}
.brand-mark,
.brand-wordmark { display: none !important; }

.primary-nav a { font-size: 1rem; font-weight: 600; }
.nav-cta { color: var(--cream) !important; }

h1 { font-size: clamp(3.4rem, 8vw, 6.3rem); line-height: .98; }
h2 { font-size: clamp(2.15rem, 4.5vw, 4.1rem); line-height: 1.05; }
h3 { line-height: 1.18; }
.lead { font-size: clamp(1.15rem, 2vw, 1.38rem); color: var(--linen); }
.section-head p,
.page-hero p,
.card p,
.service-card p,
.insight-card p,
.office-card p,
.process-step p,
.detail-panel p,
.detail-panel li,
.footer-col a,
.footer-col span,
.footer-brand p { color: var(--linen); }

.hero { padding-top: 92px; }
.hero-copy { padding-top: 12px; }

.card,
.service-card,
.insight-card,
.office-card,
.form-card,
.transaction-card,
.process-step,
.detail-panel,
.newsletter-panel,
.cta-panel,
.mini-stat,
.statement-card,
.value-row {
  border-color: rgba(191,155,78,.28);
}

input, textarea, select {
  min-height: 52px;
  font-size: 1rem;
  color: var(--cream);
  background: #33271B;
  border-color: rgba(212,176,106,.34);
}
input::placeholder, textarea::placeholder { color: #C5B7A2; opacity: .86; }
.field-group label { color: var(--cream); font-size: 1rem; }
.form-feedback {
  min-height: 1.5em;
  color: var(--gold-light);
  margin-top: 16px;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms cubic-bezier(.2,.8,.2,1), transform 760ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { min-height: 76px; }
  .nav-shell {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
  }
  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    justify-content: center;
  }
  .nav-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
  }
  .brand-logo-full { display: none; }
  .brand-logo-icon { display: block; height: 44px; width: 44px; }
  .primary-nav {
    top: 82px;
    left: 18px;
    right: 18px;
    padding: 18px;
  }
  .primary-nav a { font-size: 1.08rem; padding: 15px 16px; }
  .hero { padding-top: 76px; }
  .hero-grid { gap: 28px; }
  .page-hero { padding-top: 74px; }
  .mini-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .nav-shell { padding: 12px 16px; }
  .brand-logo-icon { height: 42px; width: 42px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .section, .page-hero { padding-left: 20px; padding-right: 20px; }
  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3.1rem); }
  .lead { font-size: 1.16rem; }
  .btn { min-height: 54px; font-size: 1rem; justify-content: center; }
  .hero-panel,
  .statement-card,
  .cta-panel,
  .newsletter-panel,
  .form-card,
  .card,
  .service-card,
  .insight-card,
  .office-card,
  .transaction-card,
  .process-step,
  .detail-panel { padding: 24px; border-radius: 20px; }
  .metrics-grid, .mini-stat-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 28px; }
  .brand-logo-footer { height: 48px; max-width: 260px; }
}

.footer-brand .brand-logo-footer { display: block !important; height: 54px; width: auto; max-width: 310px; }
@media (max-width: 640px) { .footer-brand .brand-logo-footer { height: 48px; max-width: 260px; } }

/* Source-faithful content polish */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.meta-label { display: inline-block; margin-top: 18px; color: var(--gold-light); font-size: 0.92rem; font-weight: 600; }
.lender-values { margin-top: 10px; }
@media (max-width: 720px) { .field-row { grid-template-columns: 1fr; gap: 0; } }


/* Material icon mobile menu refinement */
.nav-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  place-items: center;
  padding: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(191, 155, 78, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--cream);
  cursor: pointer;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(191, 155, 78, 0.12);
  border-color: rgba(191, 155, 78, 0.58);
  color: #ffffff;
  outline: none;
}

.nav-toggle:active {
  transform: scale(0.97);
}

.nav-toggle span:not(.material-symbols-rounded) {
  display: none !important;
}

.nav-toggle-icon,
.material-symbols-rounded.nav-toggle-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  margin: 0 !important;
  font-family: 'Material Symbols Rounded' !important;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'liga';
  transform: translateY(0);
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .nav-toggle-icon {
  transform: rotate(90deg);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex !important;
  }

  .nav-shell {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
  }

  .primary-nav {
    transform-origin: top center;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }
}

/* Inline SVG mobile menu: no external icon font dependency */
.nav-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  border: 1px solid rgba(191, 155, 78, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--cream);
  cursor: pointer;
  line-height: 0;
  overflow: hidden;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(191, 155, 78, 0.12);
  border-color: rgba(191, 155, 78, 0.58);
  color: #ffffff;
  outline: none;
}

.nav-toggle:active { transform: scale(0.97); }

.nav-toggle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  display: block !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.nav-icon-menu {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.nav-icon-close {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg) scale(0.82);
}

body.menu-open .nav-icon-menu {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(0.82);
}

body.menu-open .nav-icon-close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

body.menu-open .nav-toggle {
  background: rgba(191, 155, 78, 0.16);
  border-color: rgba(191, 155, 78, 0.62);
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex !important; }
}


/* Final mobile menu visibility/alignment fix */
.nav-toggle {
  position: relative;
  isolation: isolate;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  overflow: visible;
}
.nav-toggle .nav-toggle-icon {
  position: absolute !important;
  inset: 50% auto auto 50% !important;
  width: 24px !important;
  height: 24px !important;
  display: block !important;
  color: currentColor;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.35 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  opacity: 1;
  pointer-events: none;
  transform-origin: center center;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(.2,.8,.2,1);
}
.nav-toggle .nav-icon-menu {
  opacity: 1 !important;
  transform: translate(-50%, -50%) rotate(0deg) scale(1) !important;
}
.nav-toggle .nav-icon-close {
  opacity: 0 !important;
  transform: translate(-50%, -50%) rotate(-90deg) scale(.86) !important;
}
body.menu-open .nav-toggle .nav-icon-menu {
  opacity: 0 !important;
  transform: translate(-50%, -50%) rotate(90deg) scale(.86) !important;
}
body.menu-open .nav-toggle .nav-icon-close {
  opacity: 1 !important;
  transform: translate(-50%, -50%) rotate(0deg) scale(1) !important;
}
.nav-toggle:active .nav-toggle-icon {
  transition-duration: 120ms;
}
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex !important; }
}


/* Hero logo card added above headline */
.hero-logo-card {
  width: min(100%, 520px);
  margin: 0 0 30px 0;
  padding: 18px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(191, 155, 78, 0.28);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.8,.2,1), box-shadow 280ms cubic-bezier(.2,.8,.2,1), margin 280ms cubic-bezier(.2,.8,.2,1), padding 280ms cubic-bezier(.2,.8,.2,1);
}

.hero-logo-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 980px) {
  .hero-logo-card {
    width: min(100%, 460px);
    margin: 0 auto 28px auto;
    padding: 16px 18px;
    border-radius: 20px;
  }
}

@media (max-width: 640px) {
  .hero-logo-card {
    width: 100%;
    max-width: 390px;
    margin-bottom: 24px;
    padding: 14px 14px;
    border-radius: 18px;
  }
}


/* Stock imagery restored from the original attached site, styled for the current build */
.hero-stock-panel {
  overflow: hidden;
  padding: 0;
  gap: 0;
  background: rgba(36, 28, 19, 0.82);
  border: 1px solid rgba(191, 155, 78, 0.22);
}

.hero-photo-card {
  position: relative;
  margin: 0;
  min-height: 285px;
  overflow: hidden;
  border-bottom: 1px solid rgba(191, 155, 78, 0.18);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62) saturate(0.72);
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 420ms ease;
}

.hero-photo-card::after,
.photo-banner::after,
.image-tile::after,
.office-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 25%, rgba(13, 11, 8, 0.72));
}

.hero-photo-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: var(--cream);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-stock-panel .panel-top,
.hero-stock-panel .metrics-grid {
  margin: 0;
  padding: 24px;
}

.hero-stock-panel .metrics-grid {
  padding-top: 0;
}

.hero-stock-panel:hover .hero-photo-card img {
  transform: scale(1.035);
  filter: brightness(0.7) saturate(0.8);
}

.image-strip {
  padding-top: 78px;
}

.team-image-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4px;
  min-height: 430px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(191, 155, 78, 0.16);
  box-shadow: var(--shadow);
}

.image-tile,
.office-cell {
  position: relative;
  margin: 0;
  min-height: 280px;
  overflow: hidden;
  background: var(--panel);
}

.image-tile img,
.office-cell img,
.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.58) saturate(0.68);
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 420ms ease;
}

.image-tile:hover img,
.office-cell:hover img,
.photo-banner:hover img {
  transform: scale(1.04);
  filter: brightness(0.7) saturate(0.78);
}

.image-tile figcaption,
.office-cell figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.image-tile figcaption span,
.office-cell figcaption {
  color: var(--gold-light);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.image-tile figcaption strong {
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 600;
}

.photo-banner {
  position: relative;
  min-height: 405px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--obsidian);
}

.photo-banner img {
  position: absolute;
  inset: 0;
}

.photo-banner::after {
  background: linear-gradient(90deg, rgba(13,11,8,0.9), rgba(13,11,8,0.46) 58%, rgba(13,11,8,0.12));
}

.photo-banner-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.photo-banner blockquote {
  margin: 12px 0 0;
  max-width: 680px;
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.photo-banner blockquote em {
  color: var(--gold-light);
  font-style: normal;
}

.office-grid-section {
  background: var(--obsidian);
  padding: clamp(4px, 1vw, 10px);
}

.office-grid {
  --office-card-min: 240px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--office-card-min)), 1fr));
  grid-auto-flow: dense;
  gap: clamp(4px, 0.8vw, 10px);
  margin: 0 auto;
  width: 100%;
}

.office-cell {
  position: relative;
  min-height: clamp(230px, 24vw, 360px);
  border-radius: clamp(16px, 1.6vw, 26px);
  overflow: hidden;
  background: var(--bark);
  isolation: isolate;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.office-cell.featured {
  grid-column: span 2;
}

.office-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.66) saturate(0.72);
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.office-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 11, 8, 0.05) 0%, rgba(13, 11, 8, 0.28) 48%, rgba(13, 11, 8, 0.82) 100%);
  pointer-events: none;
  z-index: 1;
}

.office-cell figcaption {
  position: absolute;
  left: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 26px);
  z-index: 2;
  color: var(--cream);
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.92;
  transform: translateY(4px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.office-cell:hover img {
  transform: scale(1.055);
  filter: brightness(0.78) saturate(0.86);
}

.office-cell:hover figcaption {
  opacity: 1;
  transform: none;
}

.transaction-banner {
  min-height: 370px;
}

@media (max-width: 980px) {
  .hero-stock-panel {
    margin-top: 4px;
  }

  .hero-photo-card,
  .hero-photo-card img {
    min-height: 330px;
  }

  .team-image-grid {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }

  .image-tile-large {
    grid-column: span 2;
  }

  .photo-banner {
    min-height: 330px;
  }

  .office-grid {
    --office-card-min: 220px;
  }

  .office-cell.featured {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .hero-photo-card,
  .hero-photo-card img {
    min-height: 260px;
  }

  .hero-stock-panel .panel-top,
  .hero-stock-panel .metrics-grid {
    padding: 20px;
  }

  .team-image-grid {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .image-tile,
  .image-tile-large {
    grid-column: auto;
    min-height: 260px;
  }

  .photo-banner {
    min-height: 300px;
  }

  .photo-banner-content {
    width: min(100% - 40px, 1180px);
    padding: 56px 0;
  }

  .photo-banner blockquote {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .office-grid {
    --office-card-min: 100%;
    gap: 8px;
  }

  .office-cell,
  .office-cell.featured {
    grid-column: auto;
    min-height: 230px;
  }

  .office-cell figcaption {
    opacity: 1;
    transform: none;
  }
}


/* Mosaic caption positioning refinement */
.office-grid .office-cell figcaption {
  left: clamp(16px, 2vw, 26px);
  right: auto;
  bottom: clamp(16px, 2vw, 24px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - clamp(32px, 4vw, 52px));
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 212, 160, 0.18);
  background: linear-gradient(135deg, rgba(13, 11, 8, 0.84), rgba(36, 28, 19, 0.72));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
  font-size: clamp(0.78rem, 0.95vw, 0.95rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  opacity: 0.96;
  transform: translateY(6px);
  transition: opacity 320ms ease, transform 320ms ease, background 320ms ease, box-shadow 320ms ease;
}

.office-grid .office-cell.featured figcaption {
  font-size: clamp(0.82rem, 1vw, 1rem);
}

.office-grid .office-cell:hover figcaption {
  opacity: 1;
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(13, 11, 8, 0.88), rgba(46, 35, 24, 0.78));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 640px) {
  .office-grid .office-cell figcaption {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 0.68rem 0.9rem;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    opacity: 1;
    transform: none;
  }
}


/* Ensure Toronto contact details do not run together in the Submit a Deal contact box */
.mini-stat span,
.mini-stat span a {
  display: block;
}

.mini-stat span + span {
  margin-top: 6px;
}


/* Articles and reports library */
.article-library-section { background: var(--cream); }
.article-library-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.article-entry { display: flex; flex-direction: column; justify-content: space-between; min-height: 260px; padding: clamp(24px, 3vw, 36px); border: 1px solid rgba(31,43,56,.14); border-radius: 24px; background: rgba(255,255,255,.78); color: var(--ink); text-decoration: none; box-shadow: 0 16px 42px rgba(22,29,37,.08); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.article-entry:hover { transform: translateY(-4px); box-shadow: 0 22px 52px rgba(22,29,37,.13); border-color: rgba(191,155,78,.5); }
.article-entry-featured { grid-column: span 2; min-height: 300px; background: linear-gradient(135deg, rgba(31,43,56,.98), rgba(47,61,76,.94)); color: var(--cream); }
.article-type { display: inline-block; margin-bottom: 18px; color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.article-entry h3 { margin: 0 0 12px; font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.2; }
.article-entry p { margin: 0; max-width: 760px; opacity: .76; }
.article-action { margin-top: 28px; font-weight: 700; color: var(--gold-dark); }
.article-entry-featured .article-action { color: var(--gold-light); }
.article-admin-note { margin-top: 18px; padding: 18px 20px; border-radius: 16px; background: rgba(31,43,56,.06); color: rgba(31,43,56,.8); font-size: .9rem; }
.article-admin-note code { font-size: .84em; }
@media (max-width: 760px) { .article-library-grid { grid-template-columns: 1fr; } .article-entry-featured { grid-column: auto; } .article-entry { min-height: 230px; } }

/* Insights page legibility refinements — July 2026 */
.page-hero .container {
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.48fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.page-hero .reveal:first-child {
  max-width: 860px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 5.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
  color: #fffaf1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.page-hero p {
  max-width: 760px;
  color: #eee5d7;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.72;
  font-weight: 450;
}

.page-hero .eyebrow,
.page-hero .breadcrumb,
.page-hero .breadcrumb a {
  opacity: 1;
}

.page-hero .breadcrumb {
  color: #d8ccbb;
  font-size: 0.98rem;
}

.page-hero .eyebrow {
  color: #f2d99d;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
}

.page-hero .mini-stat-grid {
  gap: 14px;
}

.page-hero .mini-stat {
  padding: 21px 22px;
  border-color: rgba(242, 217, 157, 0.34);
  background: rgba(20, 25, 31, 0.64);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.page-hero .mini-stat strong {
  color: #fffaf1;
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  line-height: 1.05;
}

.page-hero .mini-stat span {
  margin-top: 6px;
  color: #e7ddcf;
  font-size: 0.96rem;
  line-height: 1.45;
}

.article-library-section .section-head h2 {
  max-width: 760px;
  color: #1f2b38;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  line-height: 1.08;
  text-wrap: balance;
}

.article-library-section .section-head p {
  color: #4e5965;
  font-size: 1.05rem;
  line-height: 1.7;
}

.article-entry h3 {
  color: inherit;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.article-entry p {
  color: #4e5965;
  opacity: 1;
  font-size: 1rem;
  line-height: 1.65;
}

.article-entry-featured p {
  color: #e9e2d7;
}

.article-entry-featured .article-type {
  color: #f1d58f;
}

.article-entry-featured .article-action {
  color: #f4da99;
}

.article-action {
  font-size: 1rem;
}

.article-admin-note {
  color: #374451;
  background: #e9e4dc;
  border: 1px solid rgba(31, 43, 56, 0.12);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .page-hero {
    padding: 72px 22px 56px;
  }

  .page-hero .container {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-hero h1 {
    max-width: 720px;
    font-size: clamp(2.55rem, 8vw, 4.3rem);
  }

  .page-hero .mini-stat-grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 58px 18px 44px;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
    line-height: 1.04;
  }

  .page-hero p {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .page-hero .mini-stat-grid {
    grid-template-columns: 1fr;
  }

  .page-hero .mini-stat {
    padding: 18px 20px;
  }

  .article-entry {
    padding: 24px 22px;
  }
}

/* Article library spacing update: clearer separation and easier scanning */
.article-library-section .section-head {
  margin-bottom: clamp(34px, 5vw, 54px);
}

.article-library-grid {
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 44px);
}

.article-entry,
.article-entry-featured {
  grid-column: auto;
  min-height: 0;
  padding: clamp(30px, 4vw, 46px);
}

.article-entry > div {
  display: grid;
  gap: 16px;
}

.article-entry .article-type {
  margin-bottom: 2px;
}

.article-entry h3 {
  margin: 0;
  max-width: 900px;
  line-height: 1.24;
}

.article-entry p {
  margin: 0;
  max-width: 820px;
  line-height: 1.75;
}

.article-action {
  display: inline-block;
  margin-top: clamp(28px, 4vw, 42px);
  padding-top: 18px;
  border-top: 1px solid rgba(31, 43, 56, 0.14);
}

.article-entry-featured .article-action {
  border-top-color: rgba(255, 250, 241, 0.2);
}

.article-admin-note {
  margin-top: clamp(34px, 5vw, 54px);
  padding: 22px 24px;
}

@media (max-width: 640px) {
  .article-library-section .section-head {
    margin-bottom: 30px;
  }

  .article-library-grid {
    gap: 24px;
  }

  .article-entry,
  .article-entry-featured {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .article-entry > div {
    gap: 14px;
  }

  .article-action {
    margin-top: 26px;
    padding-top: 16px;
  }
}

/* Responsive refinement: optimized article reading on desktop and mobile */
.article-library-section {
  padding-top: clamp(72px, 8vw, 118px);
  padding-bottom: clamp(76px, 9vw, 128px);
}

.article-library-section > .container {
  max-width: 1180px;
}

.article-library-section .section-head {
  max-width: 820px;
}

.article-library-grid {
  max-width: 1080px;
  margin-inline: auto;
}

.article-entry,
.article-entry-featured {
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .article-entry:hover,
  .article-entry-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(22, 29, 37, 0.14);
  }
}

.article-entry h3 {
  font-size: clamp(1.55rem, 2.25vw, 2.15rem);
  max-width: 34ch;
}

.article-entry p {
  max-width: 68ch;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.article-action {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: flex-end;
  font-weight: 650;
}

.article-admin-note {
  max-width: 1080px;
  margin-inline: auto;
}

@media (min-width: 1100px) {
  .page-hero .container {
    column-gap: 72px;
  }

  .page-hero .reveal:first-child {
    max-width: 760px;
  }

  .page-hero h1 {
    max-width: 13ch;
  }

  .article-library-grid {
    gap: 48px;
  }

  .article-entry,
  .article-entry-featured {
    padding: 48px 52px;
  }
}

@media (min-width: 641px) and (max-width: 1099px) {
  .article-library-section > .container {
    padding-inline: 28px;
  }

  .article-library-grid {
    gap: 34px;
  }

  .article-entry,
  .article-entry-featured {
    padding: 38px 40px;
  }
}

@media (max-width: 640px) {
  .article-library-section {
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .article-library-section > .container {
    padding-inline: 18px;
  }

  .article-library-section .section-head h2 {
    font-size: clamp(1.95rem, 9.5vw, 2.55rem);
    line-height: 1.12;
  }

  .article-library-section .section-head p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .article-library-grid {
    gap: 28px;
  }

  .article-entry,
  .article-entry-featured {
    padding: 26px 22px 24px;
    border-radius: 18px;
  }

  .article-entry h3 {
    max-width: none;
    font-size: clamp(1.35rem, 6.3vw, 1.7rem);
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .article-entry p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.7;
  }

  .article-type {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .article-action {
    margin-top: 24px;
    padding-top: 16px;
    min-height: 44px;
    font-size: 0.98rem;
  }

  .article-admin-note {
    margin-top: 32px;
    padding: 18px;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .page-hero {
    padding-inline: 16px;
  }

  .article-library-section > .container {
    padding-inline: 14px;
  }

  .article-entry,
  .article-entry-featured {
    padding-inline: 18px;
  }
}

/* Article cards v2: strong visual separation on desktop and mobile */
.article-library-section {
  background: #f5f1e9;
}

.article-library-section .section-head {
  margin-bottom: clamp(32px, 4.5vw, 52px);
}

.article-library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 38px);
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

.article-entry,
.article-entry-featured {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: clamp(30px, 3.5vw, 44px);
  border: 1px solid rgba(31, 43, 56, 0.18);
  border-radius: 24px;
  background: #ffffff;
  color: #1f2b38;
  box-shadow: 0 16px 42px rgba(22, 29, 37, 0.10);
  overflow: hidden;
}

.article-entry-featured {
  background: linear-gradient(145deg, #1f2b38 0%, #354454 100%);
  border-color: rgba(242, 217, 157, 0.34);
  color: #fffaf1;
}

.article-entry > div {
  display: block;
}

.article-entry .article-type {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(191, 155, 78, 0.12);
  color: #8b6b2d;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.article-entry-featured .article-type {
  background: rgba(242, 217, 157, 0.14);
  color: #f2d99d;
}

.article-entry h3 {
  margin: 0 0 18px;
  max-width: 27ch;
  font-size: clamp(1.5rem, 2.25vw, 2rem);
  line-height: 1.24;
  overflow-wrap: normal;
}

.article-entry p {
  margin: 0;
  max-width: 58ch;
  color: #53606d;
  font-size: 1.02rem;
  line-height: 1.72;
}

.article-entry-featured p {
  color: #e7e0d5;
}

.article-action {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: auto;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 43, 56, 0.14);
  color: #8b6b2d;
  font-size: 1rem;
  font-weight: 750;
}

.article-entry-featured .article-action {
  border-top-color: rgba(255, 250, 241, 0.18);
  color: #f2d99d;
}

.article-admin-note {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .article-entry:hover,
  .article-entry-featured:hover {
    transform: translateY(-5px);
    border-color: rgba(191, 155, 78, 0.54);
    box-shadow: 0 24px 60px rgba(22, 29, 37, 0.16);
  }
}

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

  .article-entry,
  .article-entry-featured {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .article-library-grid {
    gap: 24px;
  }

  .article-entry,
  .article-entry-featured {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .article-entry .article-type {
    margin-bottom: 18px;
  }

  .article-entry h3 {
    margin-bottom: 14px;
    max-width: none;
    font-size: clamp(1.35rem, 6vw, 1.65rem);
    line-height: 1.3;
  }

  .article-entry p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .article-action {
    margin-top: 26px;
    padding-top: 17px;
  }
}

/* Publications cards: website-matched bronze, gold, cream palette */
.article-library-section {
  background:
    radial-gradient(circle at top right, rgba(191, 155, 78, 0.10), transparent 32%),
    var(--bronze);
  color: var(--cream);
}

.article-library-section .section-kicker {
  color: var(--gold-light);
}

.article-library-section .section-head h2 {
  color: var(--cream);
}

.article-library-section .section-head > p {
  color: var(--linen);
}

.article-library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 42px);
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

.publication-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  border: 1px solid rgba(191, 155, 78, 0.32);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(46, 35, 24, 0.98), rgba(26, 21, 16, 0.98));
  color: var(--cream);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.30);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.publication-card-linkedin {
  padding: clamp(30px, 3.7vw, 46px);
  justify-content: space-between;
}

.publication-card-pdf {
  display: grid;
  grid-template-columns: minmax(180px, 37%) 1fr;
}

.publication-preview {
  position: relative;
  min-height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111015;
  border-right: 1px solid rgba(191, 155, 78, 0.25);
}

.publication-preview img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0,0,0,.38);
}

.publication-preview-label {
  position: absolute;
  left: 30px;
  bottom: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(13, 11, 8, 0.86);
  color: var(--gold-light);
  border: 1px solid rgba(191,155,78,.38);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.publication-content {
  padding: clamp(28px, 3.3vw, 42px);
  display: flex;
  flex-direction: column;
}

.publication-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.publication-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(191, 155, 78, 0.14);
  border: 1px solid rgba(191, 155, 78, 0.24);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}

.publication-date {
  color: var(--fog);
  font-size: .82rem;
  font-weight: 500;
  text-align: right;
}

.publication-subtitle {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.publication-card h3 {
  margin: 0 0 18px;
  color: var(--cream);
  font-size: clamp(1.5rem, 2.3vw, 2.05rem);
  line-height: 1.24;
  letter-spacing: -.025em;
  overflow-wrap: break-word;
}

.publication-description {
  margin: 0;
  color: var(--linen);
  font-size: 1rem;
  line-height: 1.72;
}

.publication-action {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--gold-light);
  font-size: .98rem;
  font-weight: 750;
}

.publication-content .publication-action {
  margin-top: 32px;
  border-top: 1px solid rgba(191, 155, 78, 0.18);
}

.publication-card-linkedin .publication-action {
  margin-top: 34px;
  border-top: 1px solid rgba(191, 155, 78, 0.18);
}

@media (hover: hover) and (pointer: fine) {
  .publication-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 176, 106, 0.68);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.40);
  }
}

@media (max-width: 980px) {
  .article-library-grid {
    grid-template-columns: 1fr;
  }

  .publication-card-pdf {
    grid-template-columns: minmax(180px, 32%) 1fr;
  }
}

@media (max-width: 700px) {
  .article-library-grid {
    gap: 24px;
  }

  .publication-card,
  .publication-card-linkedin {
    border-radius: 18px;
  }

  .publication-card-linkedin {
    padding: 26px 22px;
  }

  .publication-card-pdf {
    display: flex;
    flex-direction: column;
  }

  .publication-preview {
    min-height: 0;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(191, 155, 78, 0.25);
  }

  .publication-preview img {
    width: min(100%, 330px);
    max-height: 360px;
  }

  .publication-preview-label {
    left: 26px;
    bottom: 26px;
  }

  .publication-content {
    padding: 26px 22px;
  }

  .publication-card-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
  }

  .publication-date {
    text-align: left;
  }

  .publication-card h3 {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
    line-height: 1.3;
  }

  .publication-description {
    font-size: .98rem;
    line-height: 1.68;
  }
}
