:root {
  --ink: #111318;
  --ink-soft: #282c33;
  --muted: #646b75;
  --paper: #f5f2ec;
  --paper-strong: #ebe5d8;
  --cream: #f8f5ee;
  --white: #ffffff;
  --line: #dadde3;
  --red: #e22d28;
  --red-dark: #b91d1a;
  --blue: #234a7a;
  --cyan: #61bed0;
  --shadow: 0 18px 46px rgba(17, 19, 24, 0.12);
  --container: min(1180px, calc(100% - 32px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  background: rgba(248, 245, 238, 0.88);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 132px;
  height: auto;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}

.nav-cta,
.button {
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--red);
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 850;
  box-shadow: none;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 82px;
  background: var(--cream);
  color: var(--ink);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 118px 0 132px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--red);
}

.hero h1,
.section-head h2,
.story-copy h2,
.format-copy h2,
.contact-section h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: 7.2rem;
  font-weight: 900;
}

.hero h1 span {
  display: block;
}

.hero-product {
  --parallax-y: 0px;
  position: absolute;
  right: max(28px, calc((100% - 1180px) / 2));
  bottom: 82px;
  z-index: 1;
  width: min(380px, 33%);
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.hero-product img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 60% center;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 8px;
  box-shadow: 0 32px 70px rgba(17, 19, 24, 0.16);
}

.hero-wordmark {
  position: absolute;
  right: 18px;
  bottom: -16px;
  left: 18px;
  z-index: 0;
  color: rgba(17, 19, 24, 0.055);
  font-size: 11rem;
  font-weight: 950;
  line-height: 0.78;
  text-align: center;
  white-space: nowrap;
}

.secondary-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-bottom: 8px;
  color: var(--ink);
  font-weight: 900;
}

.secondary-link::before {
  content: "";
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: currentColor;
}

.secondary-link::after {
  content: "→";
  position: absolute;
  left: 14px;
  top: 10px;
  color: var(--cream);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.secondary-link span {
  border-bottom: 1px solid currentColor;
}

.secondary-link:hover::after,
.secondary-link:focus-visible::after {
  transform: translateX(4px);
}

.secondary-link.dark {
  color: var(--red);
}

.secondary-link.dark::after {
  color: var(--white);
}

.discover-section {
  background: var(--white);
}

.discover-head {
  display: block;
}

.discover-head p {
  margin: 22px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 1.08rem;
}

.discover-head h2 {
  margin: 0;
  max-width: 840px;
  font-size: 4.4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.discover-gallery {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr);
  justify-content: center;
  gap: 16px;
  margin-top: 46px;
  align-items: end;
}

.discover-card {
  --parallax-y: 0px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.discover-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-position: 0% center;
  object-fit: cover;
  transition: transform 700ms ease;
}

.discover-card:hover img {
  transform: scale(1.035);
}

.section {
  padding: 86px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head > div:only-child {
  grid-column: 2;
}

.section-head h2,
.story-copy h2,
.format-copy h2,
.contact-section h2 {
  font-size: 4.2rem;
}

.section-head a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-weight: 850;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card,
.story-list article,
.table-stack article,
.process-grid article,
.contact-cards > *,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-card {
  min-height: 100%;
  overflow: hidden;
  display: grid;
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #edf0f4;
}

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

.product-card h3,
.story-list h3,
.table-stack h3,
.process-grid h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.product-card p,
.story-copy p,
.story-list p,
.format-copy p,
.process-grid p,
.contact-section p,
.site-footer p {
  color: var(--muted);
}

.story {
  background: var(--white);
}

.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}

.format-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 48px;
  align-items: end;
}

.format-copy {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(220px, 0.38fr);
  gap: 32px;
  align-items: end;
}

.format-copy p {
  max-width: 360px;
  justify-self: end;
  margin: 0 0 0.45rem;
  color: var(--muted);
}

.story-copy p,
.contact-section p {
  font-size: 1.08rem;
}

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

.story-list article {
  padding: 22px;
}

.table-stack {
  display: grid;
  gap: 14px;
}

.table-stack article {
  overflow-x: auto;
  padding: 22px;
}

table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.96rem;
}

th,
td {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--blue);
}

.process {
  background: var(--ink);
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article {
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #ff8a86;
  font-weight: 900;
}

.process-grid p {
  color: #d1d7e2;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-cards > * {
  padding: 16px;
}

.contact-cards span,
.footer-grid h3 {
  display: block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form {
  padding: 22px;
  box-shadow: var(--shadow);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(226, 45, 40, 0.3);
  outline-offset: 1px;
  border-color: var(--red);
}

.form-note {
  margin: 12px 0 0;
  font-size: 0.94rem;
}

.form-note:empty {
  display: none;
}

.form-note.is-success {
  color: #157347;
  font-size: 1.12rem;
  font-weight: 850;
}

.form-note.is-error {
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  padding: 72px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(132px, 0.5fr)) minmax(240px, 0.75fr);
  gap: 32px;
  align-items: start;
}

.footer-background img {
  width: 150px;
  height: auto;
  margin-bottom: 18px;
  mix-blend-mode: multiply;
}

.footer-background h2 {
  max-width: 440px;
  margin: 0 0 12px;
  font-size: 2.7rem;
  line-height: 0.98;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid h3 {
  margin: 0 0 8px;
  color: #ff8a86;
}

.footer-grid a {
  color: var(--ink-soft);
}

.footer-grid a.button {
  color: var(--white);
}

.footer-newsletter {
  display: grid;
  gap: 12px;
}

.footer-newsletter h3 {
  margin-bottom: 0;
}

.footer-newsletter p {
  margin: 0;
}

.footer-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fbfcfd;
}

.footer-form input {
  min-width: 0;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.footer-form input::placeholder {
  color: var(--muted);
}

.footer-form button {
  border: 0;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-size: 1.3rem;
  transition: background 180ms ease, transform 180ms ease;
}

.footer-form button:hover,
.footer-form button:focus-visible {
  background: var(--red-dark);
}

.footer-newsletter small {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.legal-page {
  background: var(--cream);
}

.legal-card {
  padding-top: 164px;
  padding-bottom: 84px;
}

.legal-content {
  max-width: 980px;
}

.legal-content h1 {
  margin: 0 0 34px;
  font-size: 5rem;
  line-height: 0.98;
}

.legal-content h2 {
  margin: 42px 0 12px;
  font-size: 1.65rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.legal-content a {
  color: var(--red);
  font-weight: 800;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(17, 19, 24, 0.72);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transition: opacity 150ms ease, transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.cursor-dot.is-visible {
  opacity: 1;
}

.cursor-dot.is-active {
  background: var(--red);
  border-color: var(--red);
  transform: translate3d(-50%, -50%, 0) scale(1.7);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-index, 0) * 55ms);
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 720px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 4.8rem;
  }

  .hero-product {
    right: 24px;
    bottom: 54px;
    width: min(320px, 38%);
  }

  .hero-wordmark {
    font-size: 7.2rem;
  }

  .discover-head {
    max-width: 640px;
  }

  .discover-head h2 {
    font-size: 3.25rem;
  }

  .discover-gallery {
    grid-template-columns: minmax(280px, 0.7fr);
  }

  .section-head,
  .story-grid,
  .format-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .contact-intro {
    display: contents;
  }

  .contact-intro .eyebrow {
    order: 1;
  }

  .contact-intro h2 {
    order: 2;
  }

  .contact-form {
    order: 3;
  }

  .contact-cards {
    order: 4;
    margin-top: 0;
  }

  .format-copy {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .format-copy p {
    justify-self: start;
  }

  .section-head h2,
  .story-copy h2,
  .format-copy h2,
  .contact-section h2 {
    font-size: 3.25rem;
  }

  .section-head > div:only-child {
    grid-column: 1;
  }

  .product-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 108px 0 330px;
  }

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

  .hero-product {
    right: auto;
    bottom: 50px;
    left: 50%;
    width: min(230px, calc(100% - 64px));
    transform: translate3d(-50%, var(--parallax-y), 0);
  }

  .hero-wordmark {
    bottom: -6px;
    font-size: 4.35rem;
  }

  .discover-head h2 {
    font-size: 2.45rem;
  }

  .discover-head p {
    max-width: 100%;
    font-size: 1rem;
  }

  .discover-gallery {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .story-copy h2,
  .format-copy h2,
  .contact-section h2 {
    font-size: 2.45rem;
  }

  .product-grid,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-background h2 {
    font-size: 2.1rem;
  }

  .legal-card {
    padding-top: 132px;
    padding-bottom: 62px;
  }

  .legal-content h1 {
    font-size: 3.2rem;
  }
}

@media (pointer: coarse) {
  .cursor-dot {
    display: none;
  }
}
