@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  color: #171817;
  background: #f4f3ef;
  font-synthesis: none;
  --ink: #171817;
  --muted: #6f706c;
  --paper: #f4f3ef;
  --surface: #fbfbf8;
  --line: #d8d7d1;
  --accent: #f28b21;
  --accent-dark: #a54f07;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
}

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

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

a:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  background: var(--surface);
  transform: translateY(-150%);
}

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

.site-header {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 650;
}

.brand img,
.footer-brand img { object-fit: contain; }

.header-meta {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--muted);
  font-size: 13px;
}

.header-meta a { transition: color 180ms ease; }
.header-meta a:hover { color: var(--ink); }

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgb(242 139 33 / 12%);
}

.hero {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) clamp(20px, 4vw, 64px) clamp(60px, 8vw, 108px);
}

.hero-index {
  align-self: start;
  padding-top: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5.35vw, 78px);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px) clamp(96px, 10vw, 148px);
  border-top: 1px solid var(--line);
}

.direction-card {
  min-width: 0;
  padding: clamp(20px, 2.4vw, 34px) 0 clamp(42px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.direction-card:nth-child(odd) {
  padding-right: clamp(20px, 3vw, 46px);
  border-right: 1px solid var(--line);
}

.direction-card:nth-child(even) { padding-left: clamp(20px, 3vw, 46px); }

.direction-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #c9c8c2;
  border-radius: 6px;
  background: #121311;
}

.direction-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.direction-media--workspace img { object-position: 50% 52%; }
.direction-media--soft img { object-position: 50% 20%; }
.direction-media--cinematic img,
.direction-media--botanical img { transform: scale(1.01); }

.direction-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  content: "";
  pointer-events: none;
  transition: border-color 220ms ease;
}

.media-number,
.primary-badge {
  position: absolute;
  z-index: 1;
  top: 12px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 4px;
  color: #fff;
  background: rgb(17 18 16 / 72%);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.media-number { left: 12px; padding: 0 9px; }
.primary-badge { right: 12px; padding: 0 10px; }

.direction-copy { padding-top: 21px; }

.direction-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.direction-heading p {
  margin: 0 0 7px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.direction-heading h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 590;
  line-height: 1.12;
}

.open-link {
  display: inline-flex;
  min-height: 36px;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  margin-top: 5px;
  padding: 0 2px 0 10px;
  border-bottom: 1px solid #aaa9a3;
  font-size: 12px;
  transition: border-color 180ms ease, color 180ms ease;
}

.open-link i {
  font-size: 16px;
  font-style: normal;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.direction-description {
  max-width: 520px;
  min-height: 52px;
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.direction-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.direction-tags li {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: #777873;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.selection-note {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
  max-width: 1312px;
  margin: 0 auto clamp(90px, 11vw, 160px);
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid var(--ink);
  background: var(--surface);
}

.selection-note h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 570;
  line-height: 1.12;
}

.selection-note div p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.selection-note > a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 24px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.site-footer p { margin: 0; text-align: center; }
.site-footer > span { text-align: right; }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (hover: hover) and (pointer: fine) {
  .direction-card:hover .direction-media img { transform: scale(1.025); }
  .direction-card:hover .direction-media::after { border-color: var(--accent); }
  .open-link:hover { color: var(--accent-dark); border-color: var(--accent-dark); }
  .open-link:hover i { transform: translate(3px, -3px); }
  .selection-note > a:hover { color: var(--ink); background: var(--accent); transform: translateY(-2px); }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 72px minmax(0, 1fr); }
  .hero-lede { grid-column: 2; }
  .selection-note { margin-right: 20px; margin-left: 20px; grid-template-columns: 1fr auto; }
  .selection-note > .eyebrow { grid-column: 1 / -1; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer p { display: none; }
}

@media (max-width: 720px) {
  .site-header { min-height: 68px; }
  .header-meta .live-status { display: none; }
  .header-meta { font-size: 12px; }
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-index { display: none; }
  .hero-lede { grid-column: auto; }
  .hero h1 { max-width: 550px; font-size: clamp(42px, 12.5vw, 64px); }
  .direction-grid { grid-template-columns: 1fr; }
  .direction-card:nth-child(odd),
  .direction-card:nth-child(even) { padding-right: 0; padding-left: 0; border-right: 0; }
  .selection-note { grid-template-columns: 1fr; }
  .selection-note > a { justify-self: start; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > span { text-align: left; }
}

@media (max-width: 480px) {
  .brand { font-size: 16px; }
  .brand img { width: 34px; height: 34px; }
  .header-meta a { max-width: 116px; text-align: right; }
  .hero { padding-bottom: 56px; }
  .hero-lede { font-size: 15px; }
  .direction-heading { gap: 14px; }
  .open-link span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .open-link { width: 36px; justify-content: center; padding: 0; }
  .direction-description { min-height: 0; }
}

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