:root {
  --bg: #0d1014;
  --bg-elevated: rgba(22, 27, 34, 0.72);
  --panel: #171b20;
  --panel-light: #f6f2ea;
  --panel-soft: rgba(255, 255, 255, 0.06);
  --text-light: #f5efe3;
  --text-dark: #151515;
  --muted-light: rgba(245, 239, 227, 0.7);
  --muted-dark: rgba(21, 21, 21, 0.68);
  --gold: #b89561;
  --gold-strong: #d6b27b;
  --line: rgba(184, 149, 97, 0.28);
  --shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

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

html.is-chat-locked,
body.is-chat-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  margin: 0;
  font-family: "Manrope", "PingFang SC", "Hiragino Sans GB", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(184, 149, 97, 0.16), transparent 30%),
    linear-gradient(180deg, #07090d 0%, #0d1014 22%, #14181d 100%);
  color: var(--text-light);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.page-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 20px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(9, 11, 15, 0.64);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-copy small {
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--muted-light);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted-light);
  font-size: 13px;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--text-light);
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

section {
  position: relative;
  padding: 112px 0;
}

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

.section-dark {
  color: var(--text-light);
}

.section-light {
  background:
    radial-gradient(circle at top right, rgba(184, 149, 97, 0.08), transparent 32%),
    linear-gradient(180deg, #f8f4ed 0%, #f3ede5 100%);
  color: var(--text-dark);
}

.hero {
  padding-top: clamp(68px, 7vw, 84px);
  padding-bottom: clamp(64px, 7vw, 82px);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.55), rgba(7, 9, 13, 0.82)),
    radial-gradient(circle at 15% 20%, rgba(184, 149, 97, 0.22), transparent 28%),
    radial-gradient(circle at 80% 16%, rgba(214, 178, 123, 0.12), transparent 20%);
  pointer-events: none;
}

.hero::before {
  content: "KEYMAN";
  position: absolute;
  right: min(6vw, 72px);
  bottom: 110px;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: clamp(82px, 15vw, 180px);
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero-grid,
.metrics-strip,
.section-heading,
.about-layout,
.brand-origin-shell,
.brand-history-shell,
.leadership-intro,
.leadership-grid,
.services-grid,
.timeline-panel,
.results-layout,
.influence-layout,
.contact-card {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
}

.hero h1,
.section-heading h2,
.timeline-copy h3,
.contact-copy h2 {
  margin: 0;
  font-family: "Noto Serif SC", "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.08;
}

.hero h1 {
  max-width: 11.2ch;
  font-size: clamp(50px, 6.8vw, 84px);
}

.hero h1 span {
  display: inline-block;
  color: var(--gold-strong);
}

.hero-text,
.about-copy p,
.service-card p,
.timeline-copy p,
.results-copy p,
.influence-copy p,
.contact-copy p,
.contact-meta dd {
  margin: 0;
  line-height: 1.9;
  font-size: 16px;
}

.hero-text {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted-light);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #161616;
  box-shadow: 0 20px 50px rgba(184, 149, 97, 0.3);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
}

.section-light .button-secondary {
  border-color: rgba(21, 21, 21, 0.12);
  background: rgba(21, 21, 21, 0.04);
  color: var(--text-dark);
}

.hero-points,
.service-card ul,
.result-notes {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-points li,
.service-card li,
.result-notes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.7;
}

.section-light .result-notes li {
  color: var(--muted-dark);
}

.hero-points li::before,
.service-card li::before,
.result-notes li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: clamp(390px, 33vw, 452px);
  padding: 8px 0 18px 28px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 68px 10px 18px 74px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 78% 22%, rgba(214, 178, 123, 0.16), transparent 26%),
    radial-gradient(circle at 18% 68%, rgba(255, 255, 255, 0.06), transparent 28%);
  border: 1px solid rgba(214, 178, 123, 0.08);
  pointer-events: none;
}

.hero-frame {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-frame-main {
  position: absolute;
  top: 76px;
  right: 0;
  width: min(100%, 536px);
  background: rgba(255, 255, 255, 0.04);
  isolation: isolate;
}

.hero-frame-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 13, 0.02) 0%, rgba(8, 10, 13, 0.14) 100%),
    linear-gradient(90deg, rgba(8, 10, 13, 0.18) 0%, transparent 26%);
  pointer-events: none;
}

.hero-frame-main img {
  filter: saturate(0.82) contrast(1.06);
}

.floating-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 21, 27, 0.92), rgba(15, 17, 22, 0.82));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.floating-card p {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-strong);
}

.floating-stats {
  left: 38px;
  bottom: 0;
  width: min(322px, 62%);
  padding: 18px 20px 16px;
}

.floating-stats dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.floating-stats dt {
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text-light);
}

.floating-stats dd {
  margin: 4px 0 0;
  color: var(--muted-light);
  font-size: 13px;
}

.floating-quote {
  top: 0;
  left: 10px;
  width: min(280px, 48%);
  padding: 16px 20px 18px;
}

.floating-quote strong {
  display: block;
  max-width: 12ch;
  line-height: 1.58;
  font-size: 14px;
}

.metrics-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(22px, 3vw, 32px);
}

.metrics-strip article,
.service-card,
.timeline-panel,
.contact-card {
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.metrics-strip article {
  padding: 24px;
  border-radius: 24px;
}

.metrics-strip strong {
  display: block;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: 40px;
  color: var(--gold-strong);
}

.metrics-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted-light);
  font-size: 14px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 46px;
}

.section-heading-centered {
  justify-items: center;
  text-align: center;
}

.section-heading-centered h2 {
  max-width: none;
}

.section-heading-tight {
  margin-top: 76px;
}

.section-heading h2 {
  max-width: 16ch;
  font-size: clamp(34px, 5vw, 58px);
}

.section-light .eyebrow,
.section-light .section-heading h2,
.section-light .timeline-copy h3,
.section-light .contact-copy h2 {
  color: var(--text-dark);
}

.section-light .eyebrow {
  color: #a88756;
}

.about-layout,
.results-layout,
.influence-layout {
  display: grid;
  gap: 36px;
}

.about-layout {
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
}

.about-copy,
.about-visual,
.brand-origin-copy,
.brand-origin-visual,
.brand-history-aside,
.brand-history-card,
.leader-card {
  min-width: 0;
}

.about-copy {
  display: grid;
  gap: 20px;
}

.editorial-quote {
  margin-top: 6px;
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  background: rgba(184, 149, 97, 0.1);
  border: 1px solid rgba(184, 149, 97, 0.24);
}

.editorial-quote span {
  display: block;
  margin-bottom: 10px;
  color: #8f7248;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-quote strong {
  font-family: "Noto Serif SC", "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.5;
}

.about-visual {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 90px rgba(86, 68, 41, 0.15);
}

.about-visual img {
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
}

.brand-chronicle {
  padding-top: 96px;
  background:
    radial-gradient(circle at 10% 12%, rgba(184, 149, 97, 0.14), transparent 26%),
    linear-gradient(180deg, #f5efe6 0%, #f7f1e9 52%, #f2ebe2 100%);
}

.brand-origin-shell,
.brand-history-shell {
  display: grid;
  gap: 34px;
}

.brand-origin-shell {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  margin-bottom: 12px;
}

.brand-origin-copy,
.brand-history-aside,
.leader-card {
  border: 1px solid rgba(184, 149, 97, 0.18);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 70px rgba(86, 68, 41, 0.11);
}

.brand-origin-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 36px 34px;
  border-radius: 32px;
}

.brand-origin-copy p,
.brand-history-aside p,
.leadership-intro p,
.brand-history-card p,
.leader-highlights li {
  margin: 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.9;
}

.brand-origin-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.brand-origin-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(184, 149, 97, 0.2);
  background: rgba(184, 149, 97, 0.1);
  color: #8f7248;
  font-size: 13px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand-origin-visual {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(86, 68, 41, 0.16);
}

.brand-origin-visual img {
  height: 100%;
  aspect-ratio: 0.96 / 1;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.brand-origin-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(184, 149, 97, 0.18);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.brand-origin-badge span,
.leader-role {
  display: block;
  color: #916d3d;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-origin-badge strong {
  display: block;
  margin-top: 8px;
  font-family: "Noto Serif SC", "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.45;
  color: #32281d;
}

.brand-history-shell {
  grid-template-columns: 0.4fr 0.6fr;
  align-items: start;
}

.brand-history-aside {
  position: sticky;
  top: 120px;
  padding: 34px 30px;
  border-radius: 30px;
}

.brand-history-summary {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 149, 97, 0.18);
}

.brand-history-summary strong {
  font-family: "Noto Serif SC", "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
  color: #77592f;
}

.brand-history-summary span {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.8;
}

.brand-history-list {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 10px 0;
  margin: 0;
  list-style: none;
}

.brand-history-list::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 132px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(184, 149, 97, 0.1) 0%,
    rgba(184, 149, 97, 0.48) 16%,
    rgba(184, 149, 97, 0.18) 100%
  );
}

.brand-history-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  align-items: start;
}

.brand-history-item::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 126px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(245, 239, 227, 0.95);
}

.brand-history-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  padding-top: 10px;
}

.brand-history-meta small {
  color: #b08a54;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-history-meta strong {
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 0.95;
  color: #77592f;
}

.brand-history-card {
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(184, 149, 97, 0.16);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(86, 68, 41, 0.09);
}

.leadership-section {
  padding-top: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(184, 149, 97, 0.1), transparent 24%),
    linear-gradient(180deg, #f2ebe2 0%, #f6f1ea 100%);
}

.leadership-intro {
  max-width: 820px;
  margin-bottom: 42px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.leader-card {
  display: grid;
  gap: 26px;
  padding: 32px 28px;
  border-radius: 32px;
}

.leader-portrait-frame {
  position: relative;
  width: min(238px, 78%);
  padding: 14px;
  margin: 0 auto;
}

.leader-portrait-frame::before,
.leader-portrait-frame::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: var(--gold);
  border-style: solid;
}

.leader-portrait-frame::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
  border-radius: 18px 0 0 0;
}

.leader-portrait-frame::after {
  right: 0;
  bottom: 0;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 18px 0;
}

.leader-portrait-frame img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 1px solid rgba(184, 149, 97, 0.18);
  background: #efe7dc;
  box-shadow: 0 22px 55px rgba(86, 68, 41, 0.16);
}

.leader-body {
  display: grid;
  gap: 16px;
  text-align: center;
}

.leader-highlights {
  display: grid;
  gap: 12px;
  padding: 18px 0 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(184, 149, 97, 0.18);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  padding: 28px 28px 30px;
  border-radius: 28px;
}

.service-card > span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--gold-strong);
  font-size: 14px;
  letter-spacing: 0.18em;
}

.service-card h3 {
  margin: 0;
  font-family: "Noto Serif SC", "Cormorant Garamond", serif;
  font-size: 32px;
}

.service-subtitle {
  margin-top: 10px;
  color: var(--gold-strong);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card p + ul {
  margin-top: 22px;
}

.timeline-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  margin-top: 36px;
  padding: 32px;
  border-radius: 30px;
}

.timeline-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.timeline-grid li {
  min-height: 110px;
  padding: 18px 16px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.timeline-grid li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: var(--gold-strong);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.results-layout {
  grid-template-columns: 0.36fr 0.64fr;
  align-items: start;
}

.results-copy {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 22px;
}

.offer-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.offer-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 60px rgba(86, 68, 41, 0.12);
}

.offer-card img {
  aspect-ratio: 0.705 / 1;
  object-fit: cover;
}

.offer-card div {
  display: grid;
  gap: 6px;
  padding: 18px 18px 20px;
}

.offer-card strong,
.contact-meta dt {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card span {
  color: var(--muted-dark);
  font-size: 13px;
}

.offer-card:nth-child(2),
.offer-card:nth-child(5) {
  transform: translateY(48px);
}

.influence-layout {
  grid-template-columns: 0.42fr 0.58fr;
  align-items: start;
}

.influence-copy {
  display: grid;
  gap: 20px;
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.platform-list span {
  padding: 12px 16px;
  border: 1px solid rgba(214, 178, 123, 0.28);
  border-radius: 999px;
  color: var(--gold-strong);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.03);
}

.influence-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.poster-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.poster-card img {
  height: 100%;
  object-fit: cover;
}

.poster-tall {
  grid-row: span 2;
}

.poster-wide img {
  aspect-ratio: 0.9 / 1.15;
}

.contact-section {
  padding-bottom: 126px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(184, 149, 97, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.65);
  border-color: rgba(184, 149, 97, 0.2);
  box-shadow: 0 28px 80px rgba(86, 68, 41, 0.14);
}

.contact-info {
  display: grid;
  gap: 28px;
  align-content: start;
}

.contact-meta {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-meta div {
  display: grid;
  gap: 8px;
}

.contact-meta dd {
  color: var(--muted-dark);
}

.contact-showcase {
  display: grid;
  gap: 20px;
}

.contact-demo-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(184, 149, 97, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 56px rgba(86, 68, 41, 0.12);
}

.demo-card-heading {
  display: grid;
  gap: 8px;
}

.demo-card-heading .eyebrow {
  margin-bottom: 0;
}

.demo-card-heading h3 {
  margin: 0;
  font-family: "Noto Serif SC", "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.chat-demo-description {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.9;
  font-size: 15px;
}

.chat-demo-card {
  align-content: start;
}

.chat-demo-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chat-demo-shortcuts span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(184, 149, 97, 0.08);
  border: 1px solid rgba(184, 149, 97, 0.14);
  color: #9b7a45;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.chat-demo-button {
  width: fit-content;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.chat-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-width: 188px;
  padding: 12px 14px 12px 12px;
  border: 1px solid rgba(214, 178, 123, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at top right, rgba(214, 178, 123, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(20, 23, 29, 0.96), rgba(12, 14, 19, 0.94));
  color: var(--text-light);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.chat-launcher:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 178, 123, 0.3);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
}

.chat-launcher.is-active {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
}

.chat-launcher-mark,
.chat-widget-avatar {
  display: inline-flex;
  width: 46px;
  height: 46px;
  padding: 4px;
  overflow: hidden;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(10, 12, 16, 0.92);
  box-shadow: inset 0 0 0 1px rgba(214, 178, 123, 0.12);
}

.chat-launcher-mark img,
.chat-widget-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chat-launcher-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.chat-launcher-copy strong {
  font-size: 14px;
  line-height: 1.4;
}

.chat-launcher-copy small {
  color: var(--muted-light);
  font-size: 12px;
}

.scroll-top-button {
  position: fixed;
  right: 24px;
  bottom: 110px;
  z-index: 38;
  display: grid;
  justify-items: center;
  gap: 2px;
  width: 58px;
  padding: 10px 0 8px;
  border: 1px solid rgba(214, 178, 123, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(214, 178, 123, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(20, 23, 29, 0.96), rgba(12, 14, 19, 0.94));
  color: var(--text-light);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.scroll-top-button span {
  font-size: 18px;
  line-height: 1;
}

.scroll-top-button small {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted-light);
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-button.is-hidden-for-chat {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.96);
}

.chat-backdrop {
  position: fixed;
  inset: 0;
  z-index: 38;
  border: 0;
  background: rgba(6, 8, 11, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.chat-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 98px;
  z-index: 39;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  width: min(388px, calc(100vw - 32px));
  height: min(680px, calc(100vh - 132px));
  padding: 18px;
  border: 1px solid rgba(214, 178, 123, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(214, 178, 123, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(18, 21, 27, 0.98), rgba(12, 14, 19, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transform-origin: bottom right;
  isolation: isolate;
  overscroll-behavior: contain;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.chat-widget.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.chat-widget-title {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.chat-widget-title div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.chat-widget-title strong {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-light);
}

.chat-widget-title small {
  color: var(--muted-light);
  font-size: 12px;
  line-height: 1.5;
}

.chat-widget-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
  cursor: pointer;
}

.chat-widget-close span {
  font-size: 18px;
  line-height: 1;
}

.chat-widget-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.chat-widget-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #53d769;
  box-shadow: 0 0 0 6px rgba(83, 215, 105, 0.14);
}

.chat-widget-status p {
  margin: 0;
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.6;
}

.chat-widget-messages {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 0;
  margin-top: 16px;
  padding-right: 4px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.chat-widget-message {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.chat-widget-message-user {
  justify-content: flex-end;
}

.chat-widget-message-user .chat-widget-avatar {
  display: none;
}

.chat-widget-bubble {
  max-width: 82%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.75;
}

.chat-widget-message-service .chat-widget-bubble {
  border-bottom-left-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.chat-widget-message-user .chat-widget-bubble {
  border-bottom-right-radius: 8px;
  background: linear-gradient(135deg, rgba(214, 178, 123, 0.96), rgba(184, 149, 97, 0.96));
  color: #151515;
}

.chat-widget-message-typing .chat-widget-bubble {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.chat-widget-message-typing .chat-widget-bubble span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(245, 239, 227, 0.72);
  animation: chatPulse 1.1s infinite ease-in-out;
}

.chat-widget-message-typing .chat-widget-bubble span:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-widget-message-typing .chat-widget-bubble span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chatPulse {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.chat-widget-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chat-widget-shortcuts button {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-strong);
  font-size: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.chat-widget-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  min-width: 0;
  margin-top: 18px;
}

.chat-widget-input-shell {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  isolation: isolate;
}

.chat-widget-input-shell::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 34px;
  border-radius: 0 18px 18px 0;
  background:
    linear-gradient(90deg, rgba(22, 25, 31, 0) 0%, rgba(22, 25, 31, 0.9) 34%, rgba(22, 25, 31, 0.98) 100%);
  pointer-events: none;
}

.chat-widget-input {
  display: block;
  width: 100%;
  min-width: 0;
  max-height: 140px;
  min-height: 52px;
  padding: 14px 48px 14px 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-light);
  font: inherit;
  line-height: 1.65;
  caret-color: var(--gold-strong);
  appearance: none;
  -webkit-appearance: none;
  overflow-x: hidden;
  overflow-y: hidden;
  resize: none;
  scrollbar-width: none;
  background-clip: padding-box;
}

.chat-widget-input::placeholder {
  color: rgba(245, 239, 227, 0.42);
}

.chat-widget-input::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.chat-widget-input::-webkit-scrollbar-corner,
.chat-widget-input::-webkit-resizer {
  display: none;
  background: transparent;
}

.chat-widget-input:focus {
  outline: 0;
}

.chat-widget-input-shell:focus-within {
  border-color: rgba(214, 178, 123, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(214, 178, 123, 0.2),
    0 0 0 3px rgba(214, 178, 123, 0.12);
}

.chat-widget-input-shell:focus-within::after {
  background:
    linear-gradient(90deg, rgba(22, 25, 31, 0) 0%, rgba(22, 25, 31, 0.94) 34%, rgba(22, 25, 31, 1) 100%);
}

.chat-widget-send {
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #161616;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.chat-widget-close:hover,
.chat-widget-shortcuts button:hover,
.chat-widget-send:hover {
  filter: brightness(1.04);
}

.wechat-demo-card {
  gap: 20px;
}

.wechat-follow-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.wechat-qr-block {
  display: grid;
  justify-items: center;
  gap: 10px;
  flex: none;
}

.wechat-qr-frame {
  width: 164px;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(184, 149, 97, 0.16);
  background: #fffdfa;
  box-shadow: 0 16px 36px rgba(86, 68, 41, 0.12);
}

.wechat-qr-frame img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.wechat-qr-block small {
  color: #9b845d;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.wechat-demo-copy {
  display: grid;
  gap: 10px;
}

.wechat-demo-copy > strong {
  color: var(--text-dark);
}

.wechat-account {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wechat-avatar {
  display: inline-flex;
  width: 46px;
  height: 46px;
  padding: 4px;
  overflow: hidden;
  border-radius: 50%;
  background: #11151a;
  box-shadow:
    inset 0 0 0 1px rgba(184, 149, 97, 0.12),
    0 10px 30px rgba(17, 21, 26, 0.12);
}

.wechat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wechat-account-copy {
  display: grid;
  gap: 2px;
}

.wechat-account-copy small {
  color: #9b845d;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.wechat-demo-copy p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.85;
  font-size: 15px;
}

html.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

html.js-enabled [data-reveal].is-visible,
html.preview-static [data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

html.preview-static [data-reveal] {
  transition: none;
}

@media (max-width: 1280px) {
  .hero-grid {
    gap: 28px;
  }

  .hero-visual {
    min-height: 428px;
    padding-left: 18px;
  }

  .hero-visual::before {
    inset: 64px 8px 14px 52px;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-layout,
  .brand-origin-shell,
  .brand-history-shell,
  .results-layout,
  .influence-layout,
  .timeline-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 412px;
    padding: 18px 0 20px 16px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .services-grid,
  .metrics-strip,
  .timeline-grid,
  .influence-visuals,
  .leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-history-aside {
    position: static;
  }

  .brand-history-list::before {
    left: 110px;
  }

  .brand-history-item {
    grid-template-columns: 88px 1fr;
    gap: 26px;
  }

  .brand-history-item::before {
    left: 104px;
  }

  .brand-history-meta strong {
    font-size: 38px;
  }

  .results-copy {
    position: static;
  }

  .contact-card {
    align-items: start;
  }

  .contact-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chat-widget {
    width: min(380px, calc(100vw - 28px));
  }

  .hero-visual::before {
    inset: 62px 8px 12px 44px;
  }

  .hero-frame-main {
    top: 72px;
    right: 0;
    width: min(100%, 500px);
  }

  .floating-quote {
    top: 0;
    left: 8px;
    width: min(264px, 50%);
  }

  .floating-stats {
    left: 26px;
    bottom: 0;
    width: min(312px, 66%);
  }
}

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

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

  .site-header {
    width: calc(100% - 20px);
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 24px;
  }

  .site-nav {
    display: none;
  }

  section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .hero-grid {
    gap: 28px;
    align-items: start;
  }

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

  .hero-text,
  .about-copy p,
  .brand-origin-copy p,
  .service-card p,
  .timeline-copy p,
  .results-copy p,
  .influence-copy p,
  .contact-copy p,
  .contact-meta dd,
  .brand-history-aside p,
  .leadership-intro p,
  .brand-history-card p,
  .leader-highlights li {
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-actions,
  .contact-actions {
    gap: 12px;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 320px;
    padding: 0;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-frame-main {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }

  .floating-card {
    position: absolute;
  }

  .floating-quote {
    left: 12px;
    top: -12px;
    width: min(64%, 240px);
    padding: 16px 18px;
  }

  .floating-stats {
    left: 12px;
    right: 12px;
    bottom: 0;
    width: auto;
  }

  .metrics-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .metrics-strip article {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .metrics-strip strong {
    font-size: 30px;
  }

  .services-grid,
  .offer-gallery,
  .influence-visuals,
  .leadership-grid,
  .contact-showcase {
    grid-template-columns: 1fr;
  }

  .section-heading-tight {
    margin-top: 62px;
  }

  .brand-chronicle {
    padding-top: 78px;
  }

  .brand-origin-shell,
  .brand-history-shell {
    gap: 24px;
  }

  .brand-origin-copy,
  .brand-history-aside,
  .leader-card,
  .contact-demo-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .brand-origin-visual {
    border-radius: 24px;
  }

  .brand-origin-visual img {
    aspect-ratio: 1.12 / 1;
  }

  .brand-origin-badge {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 16px;
    border-radius: 18px;
  }

  .brand-origin-badge strong {
    font-size: 20px;
  }

  .brand-origin-tags span {
    padding: 10px 14px;
    font-size: 10px;
  }

  .brand-history-list {
    gap: 16px;
    padding: 2px 0;
  }

  .brand-history-list::before {
    top: 14px;
    bottom: 14px;
    left: 88px;
  }

  .brand-history-item {
    grid-template-columns: 72px 1fr;
    gap: 18px;
  }

  .brand-history-item::before {
    top: 20px;
    left: 82px;
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 5px rgba(245, 239, 227, 0.95);
  }

  .brand-history-meta {
    gap: 6px;
    padding-top: 4px;
  }

  .brand-history-meta strong {
    font-size: 31px;
  }

  .brand-history-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .brand-history-summary {
    margin-top: 20px;
    padding-top: 18px;
  }

  .brand-history-summary strong {
    font-size: 28px;
  }

  .leadership-section {
    padding-top: 10px;
  }

  .leadership-intro {
    margin-bottom: 28px;
  }

  .leader-portrait-frame {
    width: min(220px, 76%);
  }

  .timeline-panel {
    gap: 24px;
    padding: 24px 18px;
    border-radius: 24px;
  }

  .demo-card-heading h3 {
    font-size: 26px;
  }

  .chat-demo-button {
    width: 100%;
  }

  .chat-launcher {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    min-width: 0;
    padding: 10px 12px 10px 10px;
  }

  .chat-launcher-copy strong {
    font-size: 13px;
  }

  .chat-launcher-copy small {
    font-size: 11px;
  }

  .scroll-top-button {
    right: 14px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    width: 52px;
    padding: 8px 0 7px;
    border-radius: 16px;
  }

  .chat-backdrop {
    z-index: 51;
    background: #0a0d11;
  }

  .chat-widget {
    top: var(--chat-mobile-top, 0px);
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 52;
    width: 100vw;
    height: var(--chat-mobile-height, 100dvh);
    min-height: var(--chat-mobile-height, 100dvh);
    max-height: var(--chat-mobile-height, 100dvh);
    padding: calc(12px + env(safe-area-inset-top)) 14px calc(12px + env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    background: #0a0d11;
    box-shadow: none;
    transform-origin: center center;
    overscroll-behavior: none;
  }

  .chat-widget-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .chat-widget-title {
    gap: 10px;
  }

  .chat-widget-title small {
    display: none;
  }

  .chat-widget-close {
    justify-self: end;
    width: 42px;
    min-width: 42px;
    min-height: 40px;
    padding: 0;
    border-radius: 50%;
    border-color: rgba(214, 178, 123, 0.2);
    background: rgba(255, 255, 255, 0.08);
  }

  .chat-widget-close span {
    font-size: 20px;
  }

  .chat-widget-bubble {
    max-width: 88%;
    padding: 13px 14px;
    font-size: 13px;
  }

  .chat-widget-messages {
    margin-top: 12px;
    padding-right: 0;
  }

  .chat-widget-shortcuts {
    display: none;
  }

  .chat-widget-form {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .chat-widget-send {
    width: 100%;
  }

  .wechat-follow-panel {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wechat-qr-block {
    justify-items: start;
  }

  .wechat-qr-frame {
    width: 148px;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .timeline-grid li {
    min-height: 92px;
    padding: 16px 14px 14px;
    border-radius: 14px;
    font-size: 13px;
  }

  .timeline-grid li::before {
    margin-bottom: 10px;
  }

  .offer-card:nth-child(2),
  .offer-card:nth-child(5) {
    transform: none;
  }

  .section-heading h2,
  .timeline-copy h3,
  .contact-copy h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .editorial-quote strong {
    font-size: 24px;
  }

  .about-layout,
  .results-layout,
  .influence-layout,
  .leadership-grid {
    gap: 28px;
  }

  .about-visual img {
    aspect-ratio: 1.12 / 1;
  }

  .service-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .service-card > span {
    margin-bottom: 18px;
  }

  .service-card h3 {
    font-size: 28px;
  }

  .offer-card {
    border-radius: 20px;
  }

  .offer-card div {
    padding: 16px;
  }

  .contact-card {
    gap: 24px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .hero::before {
    display: none;
  }
}

@media (max-width: 520px) {
  .brand-copy small {
    letter-spacing: 0.22em;
  }

  .floating-stats dt {
    font-size: 34px;
  }

  .floating-stats dd,
  .metrics-strip span,
  .offer-card span {
    font-size: 12px;
  }

  .editorial-quote {
    padding: 22px 20px;
  }

  .editorial-quote strong {
    font-size: 22px;
  }

  .section-heading h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .brand-history-item {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }

  .brand-history-list::before {
    left: 72px;
  }

  .brand-history-item::before {
    left: 66px;
  }

  .brand-history-meta strong {
    font-size: 28px;
  }

  .leader-portrait-frame {
    width: min(208px, 82%);
    padding: 12px;
  }

  .leader-portrait-frame::before,
  .leader-portrait-frame::after {
    width: 34px;
    height: 34px;
  }

  .chat-demo-shortcuts span,
  .chat-widget-shortcuts button {
    width: 100%;
    text-align: center;
  }
}
