:root {
  --color-canvas: #f4efe6;
  --color-canvas-strong: #ebe2d3;
  --color-surface: #fffaf2;
  --color-surface-muted: #f8f2e8;
  --color-authority: #0b303b;
  --color-authority-2: #08262f;
  --color-action: #0d565c;
  --color-action-strong: #093d43;
  --color-copper: #9d7444;
  --color-ink: #151c1c;
  --color-muted: #6f746d;
  --color-muted-strong: #3f4947;
  --color-rule: #d9d0c2;
  --color-rule-strong: #bfb19f;
  --color-focus: #9d7444;
  --font-serif: "Ovo", Georgia, serif;
  --font-sans: "Mulish", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --radius-xs: 2px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-soft: 0 16px 48px rgba(8, 38, 47, 0.11);
  --shadow-panel: 0 28px 70px rgba(8, 38, 47, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--color-canvas);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
}

body::selection {
  background: rgba(157, 116, 68, 0.28);
}

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

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 12px;
  border: 1px solid rgba(11, 48, 59, 0.18);
  background: rgba(255, 250, 242, 0.91);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(8, 38, 47, 0.08);
}

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

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

.brand-mark strong,
.brand-mark em {
  display: block;
}

.brand-mark strong {
  font-size: 15px;
  font-weight: 800;
}

.brand-mark em {
  color: var(--color-muted-strong);
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.nav-toggle {
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid transparent;
  color: var(--color-muted-strong);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  border-color: var(--color-rule);
  background: var(--color-surface-muted);
  color: var(--color-authority);
}

.nav-toggle {
  display: none;
  background: var(--color-authority);
  color: var(--color-surface);
  font-family: var(--font-mono);
  cursor: pointer;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: end;
  min-height: auto;
  padding: 72px 0 42px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-copper);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-authority-2);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(50px, 6.2vw, 86px);
  line-height: 0.94;
}

h2 {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
}

h3 {
  font-size: 28px;
  line-height: 1.08;
}

.hero-lede {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--color-muted-strong);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.46;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--color-authority);
  font-weight: 800;
}

.button.primary {
  background: var(--color-authority);
  color: var(--color-surface);
}

.button.primary:hover {
  background: var(--color-action-strong);
}

.button.secondary {
  background: transparent;
  color: var(--color-authority);
}

.button.secondary:hover {
  background: var(--color-surface);
}

.hero-panel {
  border: 1px solid rgba(11, 48, 59, 0.2);
  background: var(--color-surface);
  box-shadow: var(--shadow-panel);
}

.panel-image {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--color-rule);
  background: var(--color-canvas-strong);
  overflow: hidden;
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
}

.panel-header {
  padding: 24px;
  border-bottom: 1px solid var(--color-rule);
}

.panel-header span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-copper);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.panel-header strong {
  display: block;
  max-width: 300px;
  color: var(--color-authority);
  font-size: 26px;
  line-height: 1.15;
}

.signal-list {
  display: grid;
}

.signal-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--color-rule);
}

.signal-list div:last-child {
  border-bottom: 0;
}

.signal-list span,
.connection-grid span,
.brand-index {
  color: var(--color-copper);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}

.signal-list p {
  margin: 0;
  color: var(--color-muted-strong);
  font-weight: 700;
}

.photo-band {
  width: min(calc(100% - 40px), 1360px);
  margin: 0 auto;
}

.photo-frame {
  aspect-ratio: 16 / 6;
  border: 1px solid rgba(11, 48, 59, 0.18);
  background: var(--color-canvas-strong);
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
}

.photo-caption {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 18px 0 0;
  color: var(--color-muted-strong);
}

.photo-caption span {
  color: var(--color-copper);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.photo-caption p {
  max-width: 720px;
  margin: 0;
}

.intro-grid,
.brands-section,
.connection-section,
.team-section,
.company-section {
  padding: 104px 0 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
}

.intro-copy {
  display: grid;
  gap: 20px;
  align-content: start;
  color: var(--color-muted-strong);
  font-size: 18px;
}

.intro-copy p {
  margin: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.brand-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 28px;
  align-items: start;
}

.brand-list {
  display: grid;
  gap: 12px;
}

.brand-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  min-height: 154px;
  padding: 24px;
  border: 1px solid var(--color-rule);
  background: rgba(255, 250, 242, 0.58);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.brand-card:hover,
.brand-card.active {
  border-color: rgba(11, 48, 59, 0.42);
  background: var(--color-surface);
  transform: translateY(-2px);
}

.brand-card h3 {
  margin-top: 8px;
}

.brand-card p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--color-muted-strong);
}

.brand-card a,
.brand-card > span:last-child {
  align-self: flex-start;
  padding: 7px 10px;
  border: 1px solid var(--color-rule-strong);
  color: var(--color-authority);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}

.brand-card a:hover {
  border-color: var(--color-copper);
  color: var(--color-copper);
}

.brand-detail {
  position: sticky;
  top: 102px;
  padding: 28px;
  border: 1px solid rgba(11, 48, 59, 0.24);
  background: var(--color-authority);
  color: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow-soft);
}

.brand-detail .eyebrow {
  color: #c8a67c;
}

.brand-detail h3 {
  color: var(--color-surface);
}

.brand-detail p {
  margin: 18px 0 28px;
  color: rgba(255, 250, 242, 0.78);
}

.brand-detail dl,
.company-facts {
  display: grid;
  gap: 0;
  margin: 0;
}

.brand-detail dl div,
.company-facts div {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 250, 242, 0.18);
}

.brand-detail dt,
.company-facts dt {
  margin-bottom: 5px;
  color: #c8a67c;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-detail dd,
.company-facts dd {
  margin: 0;
  color: var(--color-surface);
  font-weight: 700;
}

.connection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-rule-strong);
  border-left: 1px solid var(--color-rule-strong);
}

.connection-grid article {
  min-height: 286px;
  padding: 24px;
  border-right: 1px solid var(--color-rule-strong);
  border-bottom: 1px solid var(--color-rule-strong);
  background: rgba(255, 250, 242, 0.54);
}

.connection-grid h3 {
  margin-top: 58px;
  font-size: 26px;
}

.connection-grid p {
  margin: 16px 0 0;
  color: var(--color-muted-strong);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.person-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--color-rule);
  background: var(--color-surface-muted);
}

.person-card span {
  color: var(--color-copper);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.person-card h3 {
  margin-top: 42px;
  font-size: 29px;
}

.person-card p {
  margin: 18px 0 0;
  color: var(--color-muted-strong);
}

.company-section {
  padding-bottom: 104px;
}

.company-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  padding: 34px;
  border: 1px solid rgba(11, 48, 59, 0.22);
  background: var(--color-authority);
  color: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow-panel);
}

.company-card .eyebrow {
  color: #c8a67c;
}

.company-card h2 {
  color: var(--color-surface);
}

.company-card p {
  max-width: 660px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 18px;
}

.company-facts div {
  border-top-color: rgba(255, 250, 242, 0.18);
}

.company-facts a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 32px 0 46px;
  border-top: 1px solid var(--color-rule-strong);
}

.site-footer p {
  max-width: 500px;
  margin: 8px 0 0;
  color: var(--color-muted-strong);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--color-muted-strong);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--color-copper);
}

@media (max-width: 980px) {
  .hero,
  .intro-grid,
  .brand-layout,
  .company-card {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
    min-height: auto;
    padding-top: 70px;
  }

  .brand-detail {
    position: static;
  }

  .section-heading,
  .photo-caption {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .photo-frame {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border: 1px solid rgba(11, 48, 59, 0.18);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-color: var(--color-rule);
  }

  .section-wrap,
  .photo-band,
  .site-footer {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .brand-card {
    flex-direction: column;
    min-height: auto;
  }

  .connection-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .connection-grid article,
  .person-card {
    min-height: auto;
  }

  .connection-grid h3,
  .person-card h3 {
    margin-top: 28px;
  }

  .company-card {
    padding: 24px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

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