:root {
  --ink: #12171f;
  --muted: #61707f;
  --soft: #f5f7f8;
  --paper: #ffffff;
  --line: #dce3e8;
  --blue: #ff6a00;
  --blue-dark: #d94f00;
  --coral: #d05d46;
  --sage: #7f967f;
  --gold: #b6863d;
  --shadow: 0 18px 60px rgba(23, 38, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 42px;
  color: #fff;
  background: linear-gradient(180deg, rgba(9, 18, 28, 0.72), rgba(9, 18, 28, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  padding: 5px;
  object-fit: contain;
  background: #ff6a00;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #101923;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 14, 22, 0.84) 0%, rgba(7, 14, 22, 0.62) 40%, rgba(7, 14, 22, 0.1) 100%),
    linear-gradient(0deg, rgba(7, 14, 22, 0.58), rgba(7, 14, 22, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  padding: 0 0 78px 42px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 82px 42px;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 30px;
}

.section h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.fit-section {
  background: var(--paper);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fit-grid article {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lookbook-section {
  background: #151515;
  color: #fff;
}

.lookbook-section h2 {
  color: #fff;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.board-card {
  display: grid;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.board-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center top;
}

.board-card div {
  padding: 18px;
}

.board-card h3 {
  margin-top: 6px;
  color: #fff;
}

.lookbook-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.lookbook-notes article {
  padding: 24px;
  background: #151515;
}

.lookbook-notes h3 {
  color: #fff;
}

.lookbook-notes p {
  color: rgba(255, 255, 255, 0.72);
}

.number {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

h3 {
  margin: 18px 0 10px;
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.work-section {
  background: var(--soft);
}

.ai-section {
  background: #ffffff;
}

.ai-section .section-heading {
  width: min(760px, 100%);
  margin-bottom: 22px;
}

.ai-sell-layout {
  display: grid;
  grid-template-columns: minmax(660px, 0.58fr) minmax(390px, 0.42fr);
  gap: 86px;
  align-items: stretch;
  width: 100%;
}

.ai-model-card {
  background: #f3f5f6;
  overflow: hidden;
}

.ai-model-card > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: contain;
  object-position: center center;
}

.ai-outfit-picker {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 72px;
}

.ai-outfit-option {
  display: block;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid var(--ink);
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}

.ai-outfit-option.active {
  border-width: 4px;
}

.ai-outfit-option:hover,
.ai-outfit-option:focus {
  border-width: 4px;
}

.ai-outfit-option img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #fff;
}

.case-list {
  display: grid;
  gap: 14px;
}

.case-row {
  display: grid;
  grid-template-columns: 1.15fr 1.55fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 26px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(18, 23, 31, 0.08);
}

.case-row h3 {
  margin-top: 6px;
}

.case-kicker {
  margin: 0;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-row p {
  margin: 0;
}

.case-row ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.case-row li {
  padding-left: 16px;
  border-left: 3px solid var(--coral);
}

.approach-section {
  background: #17202b;
  color: #fff;
}

.approach-section h2 {
  color: #fff;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.approach-grid article {
  min-height: 260px;
  padding: 34px;
  background: #243140;
}

.approach-grid h3 {
  margin-top: 0;
  color: #fff;
}

.approach-grid p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 42px;
  align-items: start;
  background: #fbfbfa;
}

.platform-section h2 {
  max-width: 720px;
}

.platform-copy {
  display: grid;
  gap: 24px;
  align-content: start;
}

.platform-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.platform-copy .button {
  width: fit-content;
  color: #fff;
  border-color: #ff6a00;
  background: #ff6a00;
}

.contact-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  background: var(--paper);
}

.contact-section h2 {
  max-width: 760px;
}

.contact-section .button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

@media (max-width: 900px) {
  .site-header {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: min(100% - 32px, 720px);
    padding: 0 0 48px 24px;
  }

  .section {
    padding: 58px 24px;
  }

  .fit-grid,
  .board-grid,
  .lookbook-notes,
  .ai-sell-layout,
  .case-row,
  .approach-grid,
  .platform-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-section {
    display: grid;
  }

  .ai-model-card > img {
    min-height: 560px;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-left: 18px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .platform-copy .button {
    width: 100%;
  }

  .fit-grid article,
  .case-row,
  .approach-grid article {
    padding: 22px;
  }

  .ai-outfit-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .ai-model-card > img {
    min-height: 480px;
  }

}

@media (hover: none), (max-width: 900px) {
  .ai-outfit-picker {
    order: 1;
  }

  .ai-model-card {
    order: 2;
  }
}
