/* Sterling Mason Group — property development + investment (AU desktop-first) */
:root {
  --charcoal: #2a2a2a;
  --olive: #4a5d23;
  --cream: #f5f5f5;
  --mist: #e0e0e0;
  --gold: #d4af37;
  --gold-hover: #c49e2d;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-muted: #5c5c5c;
  --max: 1140px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  min-width: 1100px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--olive);
  box-shadow: 0 4px 24px rgba(42, 42, 42, 0.06);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand img { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-text strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}
.brand-text span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
}

/* Primary navigation + dropdowns */
.nav-main {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0 4px;
  flex: 1;
}

.nav-item {
  position: relative;
}
.nav-item > .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  border-bottom: 2px solid transparent;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.nav-item > a.nav-trigger { cursor: pointer; }
.nav-item:hover > .nav-trigger,
.nav-item:focus-within > .nav-trigger {
  color: var(--olive);
  border-bottom-color: var(--gold);
}
.nav-item.is-active > .nav-trigger {
  color: var(--olive);
  border-bottom-color: var(--olive);
}

.nav-caret {
  font-size: 9px;
  opacity: 0.75;
  margin-top: 1px;
}

.nav-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 260px;
  max-width: 300px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-top: 3px solid var(--olive);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 18px 48px rgba(42, 42, 42, 0.14);
  padding: 8px 0 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dd-hint {
  display: block;
  padding: 8px 18px 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--mist);
  margin-bottom: 4px;
}
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: none;
  line-height: 1.35;
}
.nav-dropdown a:hover {
  background: var(--cream);
  color: var(--olive);
}

/* In-page anchors clear sticky header */
#top,
#page-top,
section[id],
.page-hero[id],
#commissioned,
#office,
#message {
  scroll-margin-top: 88px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Active nav from body[data-nav] — header identical on all pages */
body[data-nav="home"] .nav-item[data-nav="home"] > .nav-trigger,
body[data-nav="home"] .nav-item[data-nav="home"] > a.nav-trigger {
  color: var(--olive);
  border-bottom-color: var(--olive);
}
body[data-nav="company"] .nav-item[data-nav="company"] > .nav-trigger,
body[data-nav="company"] .nav-item[data-nav="company"] > a.nav-trigger {
  color: var(--olive);
  border-bottom-color: var(--olive);
}
body[data-nav="developments"] .nav-item[data-nav="developments"] > .nav-trigger,
body[data-nav="developments"] .nav-item[data-nav="developments"] > a.nav-trigger {
  color: var(--olive);
  border-bottom-color: var(--olive);
}
body[data-nav="investment"] .nav-item[data-nav="investment"] > .nav-trigger,
body[data-nav="investment"] .nav-item[data-nav="investment"] > a.nav-trigger {
  color: var(--olive);
  border-bottom-color: var(--olive);
}
body[data-nav="insights"] .nav-item[data-nav="insights"] > .nav-trigger,
body[data-nav="insights"] .nav-item[data-nav="insights"] > a.nav-trigger {
  color: var(--olive);
  border-bottom-color: var(--olive);
}
body[data-nav="contact"] .nav-item[data-nav="contact"] > .nav-trigger,
body[data-nav="contact"] .nav-item[data-nav="contact"] > a.nav-trigger {
  color: var(--olive);
  border-bottom-color: var(--olive);
}
body[data-nav="legal"] .nav-item[data-nav="legal"] > .nav-trigger {
  color: var(--olive);
  border-bottom-color: var(--olive);
}

/* Image strip directly under global nav (unique image per page) */
.header-banner {
  min-height: 300px;
  background-color: #1f1f1f;
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid var(--gold);
  position: relative;
}
.header-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 42, 42, 0.15) 0%, rgba(42, 42, 42, 0.5) 100%);
  pointer-events: none;
}

.page-stub {
  min-height: 42vh;
  background: var(--cream);
}
.page-stub .wrap {
  padding: 48px 0 96px;
}
.page-stub h1 {
  margin: 0 0 12px;
  font-size: 28px;
  color: var(--charcoal);
}

.legal-doc {
  min-height: 42vh;
  background: var(--cream);
}
.legal-doc .wrap {
  max-width: 760px;
  padding: 48px 0 96px;
}
.legal-doc h1 {
  margin: 0 0 8px;
  font-size: 28px;
  color: var(--charcoal);
}
.legal-doc .legal-meta {
  margin: 0 0 28px;
  font-size: 13px;
  color: rgba(42, 42, 42, 0.65);
}
.legal-doc h2 {
  margin: 28px 0 10px;
  font-size: 17px;
  color: var(--olive);
}
.legal-doc p,
.legal-doc li {
  margin: 0 0 12px;
  line-height: 1.65;
  color: rgba(42, 42, 42, 0.92);
  font-size: 14px;
}
.legal-doc ul {
  margin: 0 0 16px;
  padding-left: 1.25em;
}
.legal-doc a {
  color: var(--olive);
  font-weight: 600;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn:active { transform: scale(0.98); }
.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}
.btn--gold:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.45);
}
.btn--olive {
  background: var(--olive);
  color: var(--cream);
}
.btn--olive:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn--outline:hover { border-color: var(--olive); color: var(--olive); }
.btn--ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.2); }

/* ----- Sections ----- */
.section { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--mist { background: var(--mist); }
.section--dark {
  background: var(--charcoal);
  color: var(--cream);
}
.section--dark .eyebrow { color: var(--gold); }
.section--dark p { color: rgba(245, 245, 245, 0.88); }

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 12px;
}
.section h1, .section h2 {
  margin: 0 0 16px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--charcoal);
}
.section--dark h2 { color: var(--cream); }
.lead { font-size: 17px; color: var(--text-muted); max-width: 640px; margin: 0 0 20px; line-height: 1.6; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  padding: 22px;
  text-align: center;
}
.stat b {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.stat span { font-size: 13px; color: rgba(245, 245, 245, 0.75); }

/* Cards */
.card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--mist);
  box-shadow: 0 12px 40px rgba(42, 42, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(42, 42, 42, 0.1);
}
.card__img { height: 200px; object-fit: cover; width: 100%; background: var(--mist); }
.card__body { padding: 22px; }
.card__body h3 { margin: 0 0 8px; font-size: 18px; color: var(--charcoal); }
.card__body p { margin: 0; font-size: 14px; color: var(--text-muted); }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--olive);
  background: rgba(74, 93, 35, 0.12);
  padding: 6px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}

/* Pillar / split hero */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--mist);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 28px;
}
.pillar {
  background: var(--white);
  padding: 32px 28px;
}
.pillar h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--olive);
}
.pillar p { margin: 0; font-size: 15px; color: var(--text-muted); }

/* Hero home */
.hero-home {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1f16 45%, var(--olive) 100%);
  color: var(--cream);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}
.hero-home .wrap { position: relative; z-index: 1; }
.hero-home h1 {
  margin: 0 0 18px;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 720px;
}
.hero-home .sub {
  font-size: 18px;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 0 28px;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-home .dual-line {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  font-size: 14px;
  opacity: 0.9;
}
.hero-home .dual-line strong { color: var(--gold); display: block; margin-bottom: 6px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }

/* Page hero inner */
.page-hero {
  background: var(--charcoal);
  color: var(--cream);
  padding: 52px 0 56px;
  border-bottom: 4px solid var(--gold);
}
.page-hero h1 { margin: 0; font-size: 36px; font-weight: 800; letter-spacing: -0.02em; }
.page-hero p { margin: 12px 0 0; opacity: 0.85; max-width: 560px; font-size: 16px; }

/* Forms */
.form-grid { display: grid; gap: 18px; max-width: 560px; }
.form-row label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--charcoal); margin-bottom: 6px; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--mist);
  border-radius: 4px;
  background: var(--white);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 12px; }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(245, 245, 245, 0.82);
  padding: 48px 0 24px;
  margin-top: 0;
}
.site-footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.site-footer h4 {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.site-footer p, .site-footer a {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.85);
  margin: 0 0 6px;
}
.site-footer .legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding-top: 22px;
  justify-content: center;
  font-size: 13px;
}
.site-footer .legal-row a { display: inline; color: var(--mist); }
.site-footer .copy { text-align: center; padding-top: 18px; font-size: 12px; color: rgba(245, 245, 245, 0.5); }

/* Lists */
.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--mist);
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 1px;
}

/* Tables / disclaimer */
.disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  margin-top: 28px;
  border-radius: 0 4px 4px 0;
}

/* ----- Long-form content pages ----- */
.nav-dropdown--scroll {
  max-height: min(72vh, 520px);
  overflow-y: auto;
  padding-right: 4px;
}
.page-rich {
  background: var(--cream);
  padding-bottom: 72px;
}
.page-rich--flush-top {
  padding-top: 0;
}
.page-rich .wrap {
  padding-top: 40px;
}
.page-rich .rich-lead {
  max-width: 860px;
}
.page-rich .rich-lead p.lead {
  margin-bottom: 16px;
}
.rich-h2 {
  margin: 32px 0 12px;
  font-size: 20px;
  color: var(--olive);
  letter-spacing: 0.02em;
}
.prose-flow p,
.rich-lead p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.rich-list {
  margin: 16px 0 24px;
  padding-left: 1.2em;
  color: var(--text-muted);
  line-height: 1.6;
}
.rich-list--links li {
  margin-bottom: 10px;
}
.rich-list--links a {
  color: var(--olive);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rich-ol {
  margin: 12px 0 20px;
  padding-left: 1.2em;
  color: var(--text-muted);
  line-height: 1.6;
}
.rich-quote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  font-size: 17px;
  font-style: italic;
  color: var(--charcoal);
}
.rich-figure {
  margin: 24px 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(42, 42, 42, 0.1);
}
.rich-figure--narrow {
  max-width: 720px;
}
.rich-figure--banner img {
  width: 100%;
  height: auto;
}
.rich-columns {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
  margin-top: 8px;
}
.rich-aside {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 6px;
  padding: 20px 18px;
  font-size: 13px;
  color: var(--text-muted);
  box-shadow: 0 8px 28px rgba(42, 42, 42, 0.06);
}
.rich-aside h3 {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive);
}
.rich-two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
  margin-top: 12px;
}
.rich-figures-stack .rich-figure {
  margin-top: 0;
}
.rich-narrow {
  max-width: 640px;
}

/* Insights / projects grids */
.insight-grid-section,
.project-grid-section {
  background: var(--white);
  border-block: 1px solid var(--mist);
  padding: 40px 0 48px;
  margin-top: 28px;
}
.insight-grid,
.project-grid-lg {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.insight-card,
.project-card-lg {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--mist);
  background: var(--white);
  box-shadow: 0 10px 36px rgba(42, 42, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.insight-card:hover,
.project-card-lg:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(42, 42, 42, 0.12);
}
.insight-card__link,
.project-card-lg__link {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 200px;
  color: inherit;
}
.insight-card__media,
.project-card-lg__media {
  min-height: 200px;
}
.insight-card__media img,
.project-card-lg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insight-card__body,
.project-card-lg__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.insight-card__body h2,
.project-card-lg__body h2 {
  margin: 0;
  font-size: 18px;
  color: var(--charcoal);
}
.insight-card__excerpt,
.project-card-lg__body p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.insight-card__cta,
.project-card-lg__cta {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

/* Quotation form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 8px;
  padding: 22px 22px 26px;
  box-shadow: 0 10px 32px rgba(42, 42, 42, 0.06);
}
.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  border: 1px solid var(--mist);
  border-radius: 4px;
  padding: 10px 12px;
  background: var(--cream);
}
.quote-form textarea {
  resize: vertical;
  min-height: 120px;
}
.quote-form__check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 13px !important;
  color: var(--text-muted) !important;
}
.quote-form--compact {
  max-width: 520px;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 8px;
}
.small-print {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* Homepage cinematic */
.home-body {
  background: var(--charcoal);
}
.header-banner--home {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.home-main {
  position: relative;
}
.home-hero-cinematic {
  position: relative;
  margin-top: -1px;
  padding: 56px 0 72px;
  overflow: hidden;
  color: var(--cream);
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 20% 20%, rgba(212, 175, 55, 0.18), transparent 55%),
    radial-gradient(ellipse 90% 70% at 90% 60%, rgba(74, 93, 35, 0.35), transparent 50%),
    linear-gradient(165deg, #1a1a1a 0%, #2a2a2a 45%, #1f1f1f 100%);
  animation: homeBgDrift 22s ease-in-out infinite alternate;
}
@keyframes homeBgDrift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-2%, 1%, 0); }
}
.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.home-hero__title {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.home-hero__break {
  display: block;
  color: var(--gold);
}
.home-hero__lead {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(245, 245, 245, 0.88);
  margin-bottom: 26px;
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.home-hero__panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  padding: 16px 18px;
  backdrop-filter: blur(6px);
}
.home-stat span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.55);
}
.home-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  color: var(--gold);
}
.home-stat small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(245, 245, 245, 0.65);
}
.eyebrow--gold {
  color: var(--gold) !important;
}
.home-bento {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}
.home-bento__intro {
  grid-column: 1 / -1;
  max-width: 720px;
}
.home-bento__card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 8px;
  padding: 22px 22px 26px;
  box-shadow: 0 8px 28px rgba(42, 42, 42, 0.06);
}
.home-bento__card--wide {
  grid-column: span 2;
}
.home-bento__card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--olive);
}
.home-bento__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}
.card--lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card--lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(42, 42, 42, 0.12);
}
.card__action {
  margin-top: 14px;
}
.home-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--d, 0ms);
}
.home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
