* {
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --ink: #111820;
  --paper: #f2eee8;
  --paper-2: #dfded8;
  --orange: #c84617;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.16);
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 72%);
  mask-image: linear-gradient(180deg, #000, transparent 72%);
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.section-kicker,
.nav-links,
.marquee,
.image-strip figcaption,
.offer-grid article,
.values-callout,
.contact {
  text-transform: uppercase;
}

.section-dark {
  background: var(--black);
  color: var(--paper);
}

.section-light {
  background: var(--paper);
  color: var(--black);
}

.section-accent {
  background: var(--orange);
  color: var(--black);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px clamp(20px, 5vw, 72px);
  color: var(--paper);
  mix-blend-mode: difference;
}

.brand-mark {
  width: clamp(128px, 14vw, 220px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.nav-links a {
  opacity: 0.78;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.86) 30%, rgba(5, 5, 5, 0.28) 62%, rgba(5, 5, 5, 0.84) 100%),
    url("hero.jpg") center / cover no-repeat;
  filter: contrast(1.12);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 112px clamp(20px, 5vw, 72px) 140px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 920px;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 0.92;
  overflow-wrap: break-word;
}

.hero-line {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--paper);
  font-size: 3.35rem;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.76);
  color: var(--orange);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
}

.marquee span {
  padding: 22px clamp(20px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.marquee span:last-child {
  border-right: none;
}

.intro-band,
.mission,
.story,
.values,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 96px);
  padding: clamp(54px, 8vw, 118px) clamp(20px, 5vw, 72px);
}

.intro-band h2,
.offers h2,
.mission h2,
.story h2,
.values h2 {
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: break-word;
}

.intro-copy,
.mission-copy,
.story-body {
  font-size: 1.35rem;
  line-height: 1.38;
}

.intro-copy p,
.mission-copy p,
.story-body p {
  margin-bottom: 24px;
}

.intro-copy p:last-child,
.mission-copy p:last-child,
.story-body p:last-child {
  margin-bottom: 0;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border-block: 1px solid var(--line);
}

.image-strip figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.image-strip img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition: transform 280ms ease, filter 280ms ease;
}

.image-strip figure:hover img {
  transform: scale(1.04);
  filter: grayscale(0.35) contrast(1.08);
}

.image-strip figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 8px 10px;
  background: var(--orange);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
}

.offers {
  padding: clamp(54px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.offers-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  margin-bottom: clamp(42px, 6vw, 78px);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(0, 0, 0, 0.35);
  border-left: 1px solid rgba(0, 0, 0, 0.35);
}

.offer-grid article {
  min-height: 156px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-right: 1px solid rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.statement-card {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.74)),
    url("ritual.png") center / cover no-repeat;
}

.statement-card h2 {
  font-size: 3rem;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.mission-copy {
  align-self: end;
  max-width: 640px;
}

.story {
  grid-template-areas:
    "title body"
    "list list";
}

.story-title {
  grid-area: title;
}

.story-body {
  grid-area: body;
}

.story-list {
  grid-area: list;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(24px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.22);
}

.story-list span {
  min-height: 120px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: var(--black);
  color: var(--paper);
  font-size: 2rem;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.values {
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-callout {
  color: var(--orange);
  font-size: 4.25rem;
  font-weight: 900;
  line-height: 0.92;
}

.values-callout p {
  margin-bottom: 10px;
}

.values-callout p:last-child {
  margin-bottom: 0;
}

.contact {
  align-items: end;
  padding-block: clamp(44px, 7vw, 86px);
}

.contact h2 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.98;
}

.contact p {
  color: var(--muted);
}

.contact address {
  display: grid;
  gap: 10px;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.15;
}

.contact address > a {
  overflow-wrap: anywhere;
}

.contact a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--paper);
}

.social-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links a:first-child svg,
.social-links a:nth-child(3) svg,
.social-links a:nth-child(4) svg {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 5.6rem;
  }

  .hero-line {
    font-size: 2.8rem;
  }

  .marquee {
    font-size: 1.65rem;
  }

  .intro-band h2,
  .offers h2,
  .mission h2,
  .story h2,
  .values h2 {
    font-size: 3rem;
  }

  .statement-card h2 {
    font-size: 2.35rem;
  }

  .values-callout {
    font-size: 3.25rem;
  }

  .image-strip,
  .offer-grid,
  .story-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-grid article {
    min-height: 132px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 18px 20px;
    mix-blend-mode: normal;
  }

  .brand-mark {
    width: 142px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    font-size: 11px;
  }

  .hero-grid {
    align-items: start;
    padding: 180px 20px 160px;
  }

  .hero h1 {
    font-size: 3.65rem;
    line-height: 0.96;
  }

  .hero-line {
    font-size: 2rem;
  }

  .marquee {
    grid-template-columns: 1fr;
    font-size: 24px;
  }

  .marquee span {
    padding: 12px 20px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .marquee span:last-child {
    border-bottom: none;
  }

  .intro-band,
  .mission,
  .story,
  .values,
  .contact,
  .offers-head {
    grid-template-columns: 1fr;
  }

  .intro-band,
  .mission,
  .story,
  .values,
  .contact,
  .offers {
    padding: 48px 20px;
  }

  .intro-band h2,
  .offers h2,
  .mission h2,
  .story h2,
  .values h2 {
    font-size: 2.35rem;
  }

  .statement-card h2 {
    font-size: 2rem;
  }

  .intro-copy,
  .mission-copy,
  .story-body {
    font-size: 1.05rem;
  }

  .image-strip {
    grid-template-columns: 1fr;
  }

  .image-strip figure,
  .image-strip img {
    min-height: 240px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid article {
    min-height: 92px;
    font-size: 24px;
  }

  .story {
    grid-template-areas:
      "title"
      "body"
      "list";
  }

  .story-list {
    grid-template-columns: 1fr;
  }

  .story-list span {
    min-height: 82px;
  }

  .contact address {
    font-size: 20px;
  }

  .contact h2 {
    font-size: 2.35rem;
  }
}

@media (max-width: 420px) {
  .hero-grid {
    padding-top: 150px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-line {
    font-size: 1.65rem;
  }

  .statement-card h2 {
    font-size: 1.75rem;
  }
}
