:root {
  --font-manrope: 'Manrope';
  --font-cormorant: 'Cormorant Garamond';
  --ink: #171515;
  --paper: #f5f3ef;
  --white: #fff;
  --red: #f21723;
  --line: #d9d5cf;
  --muted: #6f6b68;
}

* {
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-manrope), Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-shell { min-height: 100vh; overflow: hidden; }

.site-header {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(24px, 5vw, 80px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.main-brand { display: inline-flex; align-items: center; }
.main-brand { gap: 18px; }
.main-brand-frame { width: 116px; height: 36px; overflow: hidden; }
.main-brand-frame img {
  width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  min-height: 520px;
  background: var(--ink);
  color: var(--white);
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(68px, 8vw, 112px) clamp(28px, 7vw, 112px);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 34px;
  color: #d7d3ce;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.eyebrow span { width: 34px; height: 2px; background: var(--red); }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(66px, 7.7vw, 122px);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.045em;
}
.hero h1 span {
  display: block; color: var(--red); font-style: italic; white-space: nowrap;
}
.hero-art {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #211f1f;
  border-left: 1px solid #3a3737;
}
.hero-art::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 54px 54px;
  content: '';
}
.orbit {
  position: absolute;
  z-index: 1;
  display: block;
  border: 2px solid var(--red);
  border-radius: 50%;
  opacity: .7;
  transform: rotate(-22deg);
}
.orbit-one { top: -110px; right: -240px; width: 690px; height: 820px; }
.orbit-two {
  right: -40px; bottom: -260px; width: 460px; height: 730px; border-color: #a6d7e8;
}
.orbit-three {
  top: 80px; left: 60px; width: 180px; height: 420px; border-color: #e8d838; opacity: .34;
}
.hero-wordmark {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(76%, 480px);
  padding: 28px 30px 24px;
  background: var(--white);
  transform: translate(-50%, -50%) rotate(-3deg);
  box-shadow: 18px 18px 0 rgb(242 23 35 / 24%);
}
.hero-wordmark img {
  width: 100%; height: 96px; object-fit: contain; mix-blend-mode: multiply;
}
.hero-index {
  position: absolute; z-index: 3; right: 30px; bottom: 26px; color: #777270; font-size: 10px; letter-spacing: .2em;
}

.contact-section {
  padding: clamp(48px, 5vw, 72px) clamp(24px, 5vw, 80px);
  background: var(--paper);
}
.contact-heading h2 {
  margin: 0;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(36px, 3.3vw, 50px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}
.contact-heading { margin-bottom: 30px; }
.contact-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.contact-link {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 22px;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 20px clamp(14px, 1.6vw, 24px);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}
.contact-link:not(:last-child) { border-right: 1px solid var(--line); }
.contact-link:hover, .contact-link:focus-visible {
  z-index: 1; color: var(--white); background: var(--ink); transform: translateY(-2px); outline: none;
}
.contact-link:hover .contact-icon, .contact-link:focus-visible .contact-icon {
  color: var(--white); border-color: currentColor;
}
.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  border: 1px solid #b9b4af;
  border-radius: 50%;
}
.contact-icon svg { width: 19px; height: 19px; fill: currentColor; }
.contact-text strong, .contact-text small { display: block; }
.contact-text strong { font-size: 15px; }
.contact-text small { margin-top: 5px; color: var(--muted); font-size: 10px; line-height: 1.35; }
.contact-link:hover small, .contact-link:focus-visible small { color: #c8c4c0; }
.contact-arrow { width: 18px; transition: transform 200ms ease; }
.contact-link:hover .contact-arrow, .contact-link:focus-visible .contact-arrow {
  transform: translate(3px, -3px);
}
.brands {
  padding: clamp(34px, 4vw, 60px) clamp(24px, 5vw, 80px) clamp(44px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
}
.brand-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.brand-item {
  display: grid; min-height: 190px; place-items: center; padding: 36px clamp(20px, 3vw, 44px);
}
.brand-item + .brand-item { border-left: 1px solid var(--line); }
.brand-item img {
  width: 100%; height: 72px; object-fit: contain; mix-blend-mode: multiply; transition: transform 220ms ease;
}
.brand-item:hover img { transform: scale(1.04); }
.brand-sasaki img { height: 58px; }
.brand-chacott img { height: 62px; }
.brand-solo img { height: 92px; }
.brand-sahara img { height: 68px; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 500px; }
  .hero-art { min-height: 460px; border-top: 1px solid #3a3737; border-left: 0; }
  .contact-list { grid-template-columns: repeat(2, 1fr); }
  .contact-link:nth-child(2) { border-right: 0; }
  .contact-link:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .brand-list { grid-template-columns: repeat(2, 1fr); }
  .brand-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .brand-item:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .site-header { min-height: 78px; padding: 14px 18px; }
  .main-brand { gap: 10px; }
  .main-brand-frame { width: 92px; height: 29px; }
  .hero-copy { min-height: 450px; padding: 64px 22px 62px; }
  .eyebrow { margin-bottom: 28px; font-size: 9px; letter-spacing: .14em; }
  .hero h1 { font-size: clamp(56px, 18vw, 78px); line-height: .88; }
  .hero h1 span { white-space: normal; }
  .hero-art { display: none; }
  .hero-wordmark { width: 76%; padding: 22px 20px 18px; }
  .hero-wordmark img { height: 58px; }
  .orbit-one { width: 440px; height: 530px; }
  .contact-section { padding-top: 48px; padding-bottom: 52px; }
  .contact-list { grid-template-columns: 1fr; }
  .contact-link, .contact-link:nth-child(2), .contact-link:not(:last-child) { border-right: 0; }
  .contact-link:not(:last-child) { border-bottom: 1px solid var(--line); }
  .brands { padding-top: 34px; }
  .brand-item { min-height: 135px; padding: 26px 18px; }
  .brand-item img { height: 50px; }
  .brand-solo img { height: 66px; }
}

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