@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=DM+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --ink: #121515;
  --paper: #e9e8df;
  --paper-deep: #d8d7cd;
  --acid: #d8ff44;
  --acid-dark: #a8cc1f;
  --blood: #a72f35;
  --muted: #6f726d;
  --line: rgba(18, 21, 21, .18);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Space Grotesk", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
}
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
.site-shell { overflow: hidden; }

.site-header {
  height: 88px;
  padding: 0 clamp(22px, 5.7vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  background: rgba(233, 232, 223, .93);
  position: relative;
  z-index: 5;
}
.brand, .footer-brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: var(--acid);
  font-family: var(--display);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -.08em;
  transform: rotate(-3deg);
  border: 2px solid var(--ink);
}
.brand-copy { display: flex; flex-direction: column; gap: 1px; }
.brand-copy strong, .footer-brand strong {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.brand-copy small {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.site-nav { display: flex; gap: clamp(18px, 3vw, 44px); margin-left: auto; }
.site-nav a, .footer-links a, .footer-links button {
  border: 0;
  background: none;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color .2s ease;
}
.site-nav a:hover, .footer-links a:hover, .footer-links button:hover { color: var(--ink); }
.header-buy {
  padding: 12px 16px;
  background: var(--acid);
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.header-buy span { font-size: 15px; margin-left: 12px; }
.header-buy:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(400px, .91fr) minmax(500px, 1.09fr);
  padding: clamp(56px, 8vw, 120px) clamp(22px, 8.4vw, 132px) 82px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.55), transparent 30%),
    var(--paper);
  position: relative;
}
.hero-copy { align-self: center; position: relative; z-index: 2; padding-bottom: 20px; }
.eyebrow, .section-kicker, .modal-kicker {
  color: var(--blood);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
}
.eyebrow-line { width: 32px; height: 1px; background: var(--blood); }
h1, h2, .section-title {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: .8;
  margin: 0;
}
h1 { font-size: clamp(82px, 10.4vw, 166px); }
h1 em, h2 em, .section-title em { color: var(--blood); font-style: normal; }
.hero-intro {
  max-width: 320px;
  margin: 35px 0 32px;
  color: #4e524c;
  font-size: 15px;
  line-height: 1.55;
}
.hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.button {
  border: 1px solid var(--ink);
  padding: 15px 20px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button-primary { background: var(--acid); box-shadow: 4px 4px 0 var(--ink); color: var(--ink); }
.button-primary:hover { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); background: #e4ff83; }
.arrow { font-size: 17px; margin-left: 22px; line-height: 0; }
.text-link {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}
.text-link span { margin-left: 11px; font-size: 15px; }
.hero-meta { display: flex; gap: clamp(18px, 3.5vw, 52px); margin-top: 70px; }
.hero-meta > div { border-left: 1px solid var(--line); padding-left: 12px; }
.meta-label, .product-label {
  display: block;
  font-family: var(--mono);
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 5px;
}
.hero-meta strong { font-family: var(--display); text-transform: uppercase; font-size: 17px; }
.hero-art { min-height: 490px; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-rays {
  width: 80%;
  height: 100%;
  position: absolute;
  background: repeating-linear-gradient(108deg, transparent 0 20px, rgba(18,21,21,.035) 21px 22px);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: translate(11%, 4%);
}
.image-frame { position: relative; background: var(--ink); border: 2px solid var(--ink); }
.image-frame-hero {
  width: min(495px, 80%);
  transform: rotate(2.5deg);
  box-shadow: 13px 13px 0 var(--acid);
  z-index: 1;
}
.image-frame-hero img { display: block; width: 100%; height: auto; aspect-ratio: 1170 / 824; object-fit: cover; }
.frame-label {
  position: absolute;
  bottom: 15px;
  left: -14px;
  background: var(--acid);
  border: 2px solid var(--ink);
  padding: 7px 10px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 800;
  transform: rotate(-4deg);
}
.hero-stamp {
  position: absolute;
  right: 3%;
  top: 8%;
  width: 67px;
  height: 67px;
  border: 1px solid var(--blood);
  border-radius: 50%;
  color: var(--blood);
  display: grid;
  place-content: center;
  text-align: center;
  font-family: var(--mono);
  font-size: 9px;
  line-height: .9;
  transform: rotate(13deg);
  z-index: 2;
}
.hero-stamp strong { font-family: var(--display); font-size: 26px; }
.hero-caption {
  position: absolute;
  bottom: 3%;
  right: 0;
  font-family: var(--mono);
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
}
.ticker {
  background: var(--acid);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 25px;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .07em;
}
.ticker b { font-size: 12px; }
.section-grid, .preview-section, .shop-section, .quote-section { padding-left: clamp(22px, 8.4vw, 132px); padding-right: clamp(22px, 8.4vw, 132px); }
.story-section { display: grid; grid-template-columns: 20% 53% 27%; padding-top: 120px; padding-bottom: 135px; }
.story-section .section-kicker, .preview-section .section-kicker, .shop-section .section-kicker { margin-top: 9px; }
.story-body { max-width: 630px; }
.section-title { font-size: clamp(60px, 7.4vw, 108px); }
.story-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; max-width: 545px; margin: 38px 0 35px 2px; }
.story-columns p { margin: 0; line-height: 1.6; color: #555950; font-size: 14px; }
.story-aside { align-self: end; max-width: 200px; border-top: 1px solid var(--ink); padding-top: 15px; margin: 0 0 9px auto; }
.aside-number { font-family: var(--mono); font-size: 10px; color: var(--blood); }
.story-aside p { font-family: var(--display); font-size: 21px; text-transform: uppercase; line-height: 1.02; margin: 16px 0 0; }
.preview-section { background: #1a1e1e; color: var(--paper); padding-top: 100px; padding-bottom: 120px; }
.preview-section .section-kicker { color: var(--acid); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 60px; }
.section-heading h2, .shop-copy h2 { font-size: clamp(64px, 7vw, 102px); }
.section-heading > p { color: #9a9f98; font-family: var(--mono); font-size: 10px; line-height: 1.65; text-transform: uppercase; margin: 0 3% 4px 0; }
.gallery-grid { display: grid; grid-template-columns: 1.1fr .7fr; grid-template-rows: 245px 245px; gap: 22px; }
.gallery-card { margin: 0; position: relative; overflow: hidden; border: 1px solid rgba(233,232,223,.3); background: #070909; }
.gallery-card img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card-large { grid-row: span 2; }
.gallery-card-tall img { object-position: 52% 26%; }
.gallery-card-wide { grid-column: 2; }
.gallery-card figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 13px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  padding-top: 35px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.gallery-card figcaption span { color: var(--acid); margin-right: 14px; }
.shop-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(380px, .95fr);
  gap: clamp(50px, 9vw, 150px);
  padding-top: 130px;
  padding-bottom: 140px;
  background: var(--paper);
}
.shop-art { min-height: 560px; position: relative; display: flex; align-items: center; justify-content: center; }
.shop-art img {
  display: block;
  width: min(490px, 92%);
  height: 570px;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--blood);
  transform: rotate(-2.7deg);
  position: relative;
  z-index: 1;
}
.shop-glow { position: absolute; width: 70%; height: 75%; background: var(--acid); transform: rotate(9deg); opacity: .72; }
.shop-art-label {
  position: absolute;
  left: 4%;
  bottom: 4%;
  background: var(--ink);
  color: var(--acid);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  padding: 10px 13px;
  z-index: 2;
  transform: rotate(-5deg);
}
.shop-copy { align-self: center; max-width: 530px; }
.shop-copy .section-kicker { color: var(--blood); }
.shop-description { color: #555950; max-width: 450px; line-height: 1.65; margin: 35px 0 31px; }
.product-summary { display: flex; align-items: end; justify-content: space-between; max-width: 450px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 19px 0; margin-bottom: 22px; }
.price { display: block; font-family: var(--display); font-size: 35px; line-height: .9; }
.product-note { color: var(--muted); font-family: var(--mono); font-size: 9px; line-height: 1.45; text-align: right; text-transform: uppercase; }
.button-wide { width: 100%; max-width: 450px; display: flex; justify-content: space-between; align-items: center; }
.trust-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.quote-section { background: var(--blood); color: var(--paper); padding-top: 95px; padding-bottom: 110px; text-align: center; position: relative; }
.quote-mark { color: var(--acid); font-family: Georgia, serif; font-size: 90px; line-height: .5; }
blockquote { font-family: var(--display); text-transform: uppercase; font-size: clamp(39px, 5vw, 73px); line-height: .91; letter-spacing: -.03em; margin: 27px 0 23px; }
.quote-source { font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: #dfaaa9; }
.site-footer { background: var(--ink); color: var(--paper); padding: 54px clamp(22px, 8.4vw, 132px) 23px; }
.footer-top { display: flex; justify-content: space-between; gap: 30px; align-items: start; padding-bottom: 45px; }
.footer-brand .brand-mark { background: var(--acid); color: var(--ink); }
.footer-brand strong { display: block; }
.footer-brand p { margin: 7px 0 0; color: #929791; font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px 30px; align-items: center; }
.footer-links a, .footer-links button { color: #929791; }
.footer-bottom { border-top: 1px solid rgba(233,232,223,.15); padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; color: #777c76; font-family: var(--mono); font-size: 8px; text-transform: uppercase; letter-spacing: .04em; }

.modal-backdrop { position: fixed; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(10,12,12,.8); z-index: 20; backdrop-filter: blur(4px); }
.modal-backdrop[hidden], .modal[hidden] { display: none; }
.modal { width: min(600px, 100%); max-height: calc(100vh - 40px); overflow: auto; background: var(--paper); color: var(--ink); border: 2px solid var(--ink); box-shadow: 9px 9px 0 var(--acid); padding: clamp(27px, 5vw, 52px); position: relative; }
.modal-close { position: absolute; top: 12px; right: 16px; border: 0; background: none; color: var(--ink); font-size: 29px; line-height: 1; }
.modal h2 { font-size: clamp(52px, 8vw, 82px); margin-bottom: 22px; }
.modal-kicker { margin-bottom: 21px; }
.modal-intro { color: #5f635b; font-size: 13px; line-height: 1.55; max-width: 450px; margin-bottom: 27px; }
.order-modal form { display: flex; flex-direction: column; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-row-small { align-items: end; }
.form-row label, form > label { display: flex; flex-direction: column; gap: 7px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
input, textarea, select { width: 100%; border: 1px solid rgba(18,21,21,.35); border-radius: 0; background: rgba(255,255,255,.35); color: var(--ink); padding: 12px; outline: none; font-family: var(--body); font-size: 13px; text-transform: none; }
textarea { min-height: 74px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--blood); box-shadow: 0 0 0 2px rgba(167,47,53,.12); }
.order-total { border-left: 1px solid var(--line); padding: 0 0 2px 16px; height: 44px; display: flex; justify-content: space-between; align-items: end; gap: 10px; }
.order-total span { color: var(--muted); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.order-total strong { font-family: var(--display); font-size: 25px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 11px; }
.checkbox-label input { width: 15px; height: 15px; accent-color: var(--blood); }
.inline-button { border: 0; padding: 0; color: var(--blood); background: none; text-decoration: underline; font-size: inherit; }
.form-footnote, .form-message { margin: 0; color: var(--muted); font-family: var(--mono); font-size: 9px; line-height: 1.5; }
.form-message { color: var(--blood); min-height: 14px; }
.checkout-note { margin: 0; padding: 11px 12px; border-left: 3px solid var(--acid-dark); background: rgba(216,255,68,.18); color: #555950; font-family: var(--mono); font-size: 9px; line-height: 1.45; }
.legal-modal { max-width: 650px; }
.legal-modal h2 { font-size: clamp(52px, 7vw, 78px); }
.legal-copy { color: #555950; font-size: 13px; line-height: 1.65; }
.legal-copy p { margin: 0 0 17px; }
.legal-copy strong { color: var(--ink); }
.legal-note { border-left: 3px solid var(--acid-dark); padding-left: 12px; }
body.modal-open { overflow: hidden; }

@media (max-width: 900px) {
  .site-header { height: 76px; }
  .site-nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 55px; padding-top: 70px; }
  .hero-art { min-height: 420px; }
  .image-frame-hero { width: min(600px, 84%); }
  .hero-stamp { right: 3%; }
  .story-section { grid-template-columns: 1fr; gap: 25px; }
  .story-aside { margin: 30px 0 0; max-width: 300px; }
  .shop-section { grid-template-columns: 1fr; }
  .shop-art { min-height: 500px; }
  .shop-copy { max-width: 100%; }
}
@media (max-width: 600px) {
  .site-header { padding: 0 18px; }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 17px; }
  .brand-mark { width: 36px; height: 36px; font-size: 18px; }
  .header-buy { padding: 10px 9px; font-size: 8px; }
  .header-buy span { margin-left: 5px; }
  .hero { padding: 60px 20px 75px; min-height: auto; }
  h1 { font-size: clamp(75px, 22vw, 118px); }
  .hero-meta { gap: 13px; justify-content: space-between; margin-top: 55px; }
  .hero-meta strong { font-size: 14px; }
  .meta-label { font-size: 8px; }
  .hero-art { min-height: 290px; }
  .image-frame-hero { width: 87%; }
  .frame-label { font-size: 16px; bottom: 8px; left: -6px; }
  .hero-stamp { width: 52px; height: 52px; font-size: 7px; right: 0; top: 1%; }
  .hero-stamp strong { font-size: 20px; }
  .hero-caption { bottom: -11%; right: 2%; font-size: 7px; }
  .ticker { justify-content: flex-start; animation: marquee 18s linear infinite; width: max-content; padding: 0 10px; }
  .ticker b { margin: 0 15px; }
  @keyframes marquee { to { transform: translateX(-40%); } }
  .section-grid, .preview-section, .shop-section, .quote-section { padding-left: 20px; padding-right: 20px; }
  .story-section { padding-top: 85px; padding-bottom: 90px; }
  .story-columns { grid-template-columns: 1fr; gap: 15px; margin-top: 28px; }
  .section-title { font-size: clamp(59px, 17vw, 89px); }
  .preview-section { padding-top: 70px; padding-bottom: 75px; }
  .section-heading { display: block; margin-bottom: 35px; }
  .section-heading > p { margin: 26px 0 0; }
  .gallery-grid { display: flex; flex-direction: column; gap: 16px; }
  .gallery-card { height: 270px; }
  .gallery-card-large { height: 330px; }
  .gallery-card-wide img { object-position: center 40%; }
  .shop-section { padding-top: 80px; padding-bottom: 90px; gap: 70px; }
  .shop-art { min-height: 420px; }
  .shop-art img { height: 430px; width: 87%; }
  .shop-glow { width: 78%; }
  .shop-copy h2 { font-size: clamp(60px, 17vw, 89px); }
  blockquote { font-size: 42px; }
  .footer-top, .footer-bottom { display: block; }
  .footer-links { margin-top: 35px; }
  .footer-bottom { line-height: 1.7; }
  .footer-bottom span { display: block; }
  .footer-bottom span + span { margin-top: 6px; }
  .form-row { grid-template-columns: 1fr; }
  .order-total { margin-top: 3px; }
  .modal { padding: 28px 20px 24px; box-shadow: 5px 5px 0 var(--acid); }
}