:root {
  --ink: #090a0d;
  --ink-soft: #101217;
  --panel: #151820;
  --paper: #f3f0e9;
  --paper-deep: #e8e2d8;
  --text: #141519;
  --muted: #6c6d72;
  --light: #f7f4ed;
  --light-muted: #b5b5b5;
  --gold: #d2a84d;
  --gold-bright: #f0d58d;
  --gold-dark: #8e6926;
  --green: #5fc681;
  --line: rgba(20, 21, 25, 0.14);
  --line-dark: rgba(255, 255, 255, 0.12);
  --shell: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-dark);
  background: rgba(9, 10, 13, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--light);
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.brand-name {
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(247, 244, 237, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-bright);
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(210, 168, 77, 0.55);
  color: var(--gold-bright) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 7px auto;
  background: var(--light);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: 82px;
  background:
    radial-gradient(circle at 80% 25%, rgba(210, 168, 77, 0.14), transparent 27%),
    linear-gradient(130deg, #08090b 0%, #0b0c10 58%, #101116 100%);
  color: var(--light);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - 140px);
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.85fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding-block: 68px 96px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero .eyebrow,
.gold-team .eyebrow,
.future .eyebrow {
  color: var(--gold-bright);
}

.hero .eyebrow span {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 10px 3px;
  background: var(--gold-dark);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  font-size: clamp(58px, 7vw, 98px);
}

h2 {
  font-size: clamp(42px, 5vw, 68px);
}

h3 {
  margin: 0;
  line-height: 1.2;
}

.hero-lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(247, 244, 237, 0.72);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: #111;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-bright);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--light);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--gold-dark);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(247, 244, 237, 0.58);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  justify-self: end;
}

.hero-brand-seal {
  position: absolute;
  z-index: 4;
  top: 8%;
  left: -54px;
  width: 108px;
  padding: 13px;
  border: 1px solid rgba(210, 168, 77, 0.28);
  background: rgba(9, 10, 13, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.portrait-frame {
  position: relative;
  width: min(100%, 470px);
  overflow: hidden;
  border: 1px solid rgba(240, 213, 141, 0.28);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
}

.portrait-frame::before {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-top: 1px solid var(--gold-bright);
  border-right: 1px solid var(--gold-bright);
  content: "";
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: 52% 50%;
  filter: saturate(0.82) contrast(1.04);
}

.portrait-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 7, 10, 0.88), transparent 46%);
}

.portrait-note {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 22px;
  left: 28px;
  margin: 0;
  color: rgba(247, 244, 237, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-quote {
  position: absolute;
  right: -48px;
  bottom: -42px;
  width: 250px;
  padding: 20px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(17, 19, 24, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.quote-mark {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 44px;
  line-height: 0.6;
}

.hero-quote p {
  margin: 8px 0 0;
  color: rgba(247, 244, 237, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

.hero-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 244, 237, 0.22);
}

.hero-marquee div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 27px;
  padding: 14px 0;
  animation: marquee 34s linear infinite;
}

.hero-marquee span {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.22em;
}

.hero-marquee i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-dark);
}

@keyframes marquee {
  to { transform: translateX(-42%); }
}

.section {
  padding-block: clamp(92px, 11vw, 150px);
}

.section-heading {
  max-width: 790px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
  gap: clamp(60px, 9vw, 130px);
  margin-top: 76px;
}

.story-copy > p {
  margin: 0 0 23px;
  color: #35363a;
  font-size: 18px;
  line-height: 1.82;
}

.story-copy strong {
  color: var(--text);
}

.story-principle {
  display: flex;
  gap: 20px;
  margin-top: 44px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-principle span,
.story-rail article > span,
.proof-points article > span {
  flex: 0 0 auto;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.story-principle p {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
}

.story-rail {
  position: relative;
}

.story-rail::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 14px;
  width: 1px;
  background: linear-gradient(var(--gold-dark), rgba(142, 105, 38, 0.12));
  content: "";
}

.story-rail article {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding-bottom: 42px;
}

.story-rail article:last-child {
  padding-bottom: 0;
}

.story-rail article > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(142, 105, 38, 0.45);
  border-radius: 50%;
  background: var(--paper);
  font-size: 9px;
}

.story-rail h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.story-rail p {
  margin: 8px 0 0;
  color: var(--muted);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 390px;
  gap: 12px;
  margin-top: 92px;
}

.photo-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #d8d2c8;
}

.photo-grid figure:nth-child(1) { grid-column: span 7; }
.photo-grid figure:nth-child(2) { grid-column: span 5; }
.photo-grid figure:nth-child(n + 3) { grid-column: span 4; }

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: transform 500ms ease, filter 500ms ease;
}

.photo-grid figure:hover img {
  transform: scale(1.025);
  filter: saturate(0.98);
}

.photo-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 9px;
  background: rgba(9, 10, 13, 0.8);
  color: var(--light);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gold-team {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(210, 168, 77, 0.12), transparent 30%),
    #0a0b0f;
  color: var(--light);
}

.gold-team::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(116deg, transparent 0 48%, rgba(255, 255, 255, 0.025) 48% 48.2%, transparent 48.2%);
  content: "";
}

.gold-team .shell {
  position: relative;
  z-index: 2;
}

.gold-team-title-row {
  display: flex;
  flex-direction: column;
  gap: 46px;
  align-items: center;
  text-align: center;
}

.tgt-brand {
  width: min(100%, 430px);
  height: auto;
  filter: drop-shadow(0 18px 38px rgba(210, 168, 77, 0.2));
}

.gold-team-title-row .section-heading {
  margin-inline: auto;
}

.section-heading-light > p:last-child {
  color: var(--light-muted);
}

.sticker {
  position: absolute;
  z-index: 1;
  width: 310px;
  opacity: 0.055;
  filter: grayscale(0.3);
  pointer-events: none;
}

.sticker-analyze {
  top: 48%;
  right: -100px;
  opacity: 0.035;
  transform: rotate(8deg);
}

.sticker-set-be {
  bottom: 60px;
  left: -85px;
  transform: rotate(-10deg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 70px;
}

.service-card {
  position: relative;
  min-height: 290px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.025);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(210, 168, 77, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.service-featured {
  border-color: rgba(210, 168, 77, 0.44);
  background: linear-gradient(140deg, rgba(210, 168, 77, 0.11), rgba(255, 255, 255, 0.025));
}

.service-number {
  margin: 0 0 48px;
  color: rgba(240, 213, 141, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-label {
  position: absolute;
  top: 32px;
  right: 32px;
  padding: 5px 9px;
  background: var(--gold);
  color: #111;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
}

.service-card > p:not(.service-number) {
  max-width: 510px;
  margin: 16px 0 24px;
  color: var(--light-muted);
}

.pending-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8f9095;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pending-link::before {
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.pending-link-gold {
  color: var(--gold-bright);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.signal-strip > div {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #0f1116;
}

.signal-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 420ms ease, opacity 420ms ease;
}

.signal-strip > div:hover img {
  transform: scale(1.035);
  opacity: 0.9;
}

.signal-strip span {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 7px 10px;
  background: rgba(9, 10, 13, 0.86);
  color: var(--light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof {
  background: var(--paper-deep);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
}

.proof-points {
  border-top: 1px solid var(--line);
}

.proof-points article {
  display: grid;
  grid-template-columns: 38px 0.55fr 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.proof-points h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.proof-points p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.books {
  background: #f7f5ef;
}

.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  max-width: 980px;
  margin-top: 68px;
}

.book-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  min-height: 470px;
  border: 1px solid var(--line);
  background: #fff;
}

.book-visual {
  display: grid;
  min-height: 400px;
  place-items: center;
  padding: 30px 18px;
  overflow: hidden;
}

.book-visual-light {
  background: linear-gradient(145deg, #e8e2d7, #f8f5ee);
}

.book-visual-dark {
  background: linear-gradient(145deg, #0b0d11, #23252b);
}

.book-visual img {
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.22));
  transition: transform 420ms ease;
}

.book-card:hover .book-visual img {
  transform: translateY(-5px) rotate(-1deg);
}

.book-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px);
}

.book-copy > span:first-child {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.book-copy h3 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
}

.book-copy p {
  margin: 19px 0 28px;
  color: var(--muted);
}

.future {
  padding-top: 0;
  background: #f7f5ef;
}

.future-card {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 8vw, 92px);
  background:
    radial-gradient(circle at 86% 22%, rgba(210, 168, 77, 0.19), transparent 25%),
    #0a0b0f;
  color: var(--light);
}

.future-card::after {
  position: absolute;
  right: -90px;
  bottom: -170px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(240, 213, 141, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(210, 168, 77, 0.025), 0 0 0 100px rgba(210, 168, 77, 0.018);
  content: "";
}

.future-card h2,
.future-card p,
.future-card a {
  position: relative;
  z-index: 1;
}

.future-card h2 {
  max-width: 730px;
}

.future-card > p:not(.eyebrow) {
  max-width: 650px;
  margin: 27px 0 32px;
  color: var(--light-muted);
  font-size: 18px;
}

.social {
  background: var(--paper);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 60px;
}

.social-card {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 108px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.social-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(142, 105, 38, 0.35);
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.social-card strong,
.social-card small {
  display: block;
}

.social-card strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.social-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.social-status {
  color: #99999c;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer {
  padding: 65px 0 28px;
  background: var(--ink);
  color: var(--light);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-top p {
  margin: 0;
  color: rgba(247, 244, 237, 0.46);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.risk-note {
  margin-top: 34px;
  color: rgba(247, 244, 237, 0.43);
  font-size: 12px;
  line-height: 1.7;
}

.risk-note strong {
  color: rgba(247, 244, 237, 0.7);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  color: rgba(247, 244, 237, 0.34);
  font-size: 11px;
  letter-spacing: 0.08em;
}

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

.reveal-late {
  transition-delay: 100ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a:not(.nav-cta) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 50px;
  }

  .hero-quote {
    right: -18px;
  }

  .photo-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 28px, 640px);
  }

  .nav-shell {
    min-height: 70px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 90px 28px;
    background: rgba(9, 10, 13, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a:not(.nav-cta) {
    display: block;
  }

  .main-nav a {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
  }

  .main-nav .nav-cta {
    margin-top: 10px;
    font-family: var(--sans);
    font-size: 14px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 62px 95px;
  }

  h1 {
    font-size: clamp(51px, 16vw, 72px);
  }

  .hero-visual {
    width: min(92%, 450px);
    justify-self: center;
  }

  .hero-brand-seal {
    top: 5%;
    left: -42px;
    width: 88px;
    padding: 10px;
  }

  .gold-team-title-row {
    gap: 36px;
  }

  .tgt-brand {
    width: min(86%, 330px);
  }

  .hero-quote {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: 0 0 0 24px;
  }

  .story-layout,
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story-copy > p {
    font-size: 17px;
  }

  .photo-grid {
    display: flex;
    width: calc(100% + 14px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 14px 12px 0;
    scrollbar-width: none;
  }

  .photo-grid::-webkit-scrollbar {
    display: none;
  }

  .photo-grid figure {
    min-width: min(78vw, 360px);
    min-height: 460px;
    scroll-snap-align: start;
  }

  .service-grid,
  .book-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
  }

  .signal-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .signal-strip > div {
    min-width: 78vw;
    min-height: 300px;
    scroll-snap-align: start;
  }

  .proof-points article {
    grid-template-columns: 34px 1fr;
  }

  .proof-points p {
    grid-column: 2;
  }

  .book-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .book-visual {
    min-height: 360px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 11px;
  }

  .hero-copy .eyebrow {
    font-size: 10px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-quote {
    right: auto;
    width: calc(100% - 18px);
    margin-left: 18px;
  }

  .section {
    padding-block: 88px;
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .story-layout {
    margin-top: 55px;
  }

  .photo-grid {
    margin-top: 65px;
  }

  .service-grid,
  .book-grid {
    margin-top: 52px;
  }

  .book-visual {
    width: calc(100% + 30px);
    height: 360px;
    min-height: 360px;
    margin-left: -15px;
    padding: 0;
  }

  .book-visual img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    filter: none;
  }

  .social-card {
    grid-template-columns: 44px 1fr;
  }

  .social-status {
    grid-column: 2;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
