:root {
  --ink: #000;
  --muted: rgba(0, 0, 0, 0.68);
  --paper: #fff;
  --cream: #fff;
  --line: rgba(0, 0, 0, 0.18);
  --sage: #000;
  --sage-deep: #000;
  --tomato: #000;
  --blue: #fff;
  --white: #fff;
  --max: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Archivo, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.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;
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: transparent;
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--tomato);
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: clamp(42px, 4.8vw, 54px);
  filter: brightness(0) invert(1);
  transition: filter 180ms ease;
}

.site-header.is-scrolled .brand-logo,
.site-header.nav-active .brand-logo {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.language-switch a,
.language-switch button {
  min-width: 34px;
  min-height: 30px;
  padding: 4px 8px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
}

.language-switch a[aria-current="true"],
.language-switch button[aria-pressed="true"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.43) 48%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0) 48%);
}

.hero-content {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(132px, 18vh, 190px) var(--gutter) clamp(48px, 8vh, 84px);
}

.eyebrow {
  margin: 0 0 18px;
  color: color-mix(in srgb, currentColor 68%, transparent);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  line-height: 1.65;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

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

h1,
h2,
h3,
blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  margin-bottom: 18px;
  max-width: 10ch;
  font-size: clamp(4.2rem, 13vw, 9.5rem);
  font-weight: 600;
  line-height: 0.88;
}

.hero-copy {
  width: min(100%, 54ch);
  margin-bottom: 30px;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.7;
  color: color-mix(in srgb, var(--white) 88%, transparent);
  overflow-wrap: break-word;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 50px;
  padding: 15px 24px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
  max-width: 100%;
}

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-light:hover {
  background: transparent;
  color: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: color-mix(in srgb, var(--white) 54%, transparent);
}

.button-ghost:hover {
  border-color: var(--white);
  background: color-mix(in srgb, var(--white) 10%, transparent);
}

.button-dark-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-dark-ghost:hover {
  border-color: var(--white);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 100%;
}

.band {
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(70px, 10vw, 142px) var(--gutter);
}

.intro,
.mission,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.intro h2,
.mission h2,
.section-heading h2,
.contact h2,
.made h2,
.cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.15rem);
  font-weight: 500;
  line-height: 1.02;
}

.intro-text,
.mission-text,
.section-heading p,
.maker p,
.trade-item p,
.made p,
.cta p {
  color: var(--muted);
  font-size: clamp(0.97rem, 1.2vw, 1.08rem);
  line-height: 1.8;
}

.intro-text p,
.mission-text p {
  margin-bottom: 20px;
}

.intro-text .strong {
  color: var(--ink);
  font-weight: 700;
}

.formula {
  padding: clamp(70px, 10vw, 132px) var(--gutter);
  background: var(--blue);
  border-block: 1px solid color-mix(in srgb, var(--blue) 70%, var(--ink));
}

.section-heading {
  width: min(100%, var(--max));
  margin-inline: auto;
  margin-bottom: clamp(38px, 6vw, 68px);
}

.section-heading h2 {
  max-width: 13ch;
}

.formula-grid,
.trade-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: color-mix(in srgb, var(--ink) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
}

.formula-item,
.trade-item {
  min-height: 240px;
  padding: clamp(25px, 3vw, 38px);
  background: var(--paper);
}

.formula-item span {
  display: block;
  margin-bottom: 28px;
  color: var(--tomato);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.formula-item h3,
.trade-item h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 500;
  line-height: 1.06;
}

.formula-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.image-band {
  position: relative;
  height: clamp(390px, 64vw, 720px);
  overflow: hidden;
}

.image-band img,
.made > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.caption {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(22px, 4vw, 44px);
  color: var(--white);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
}

.makers .section-heading {
  margin-inline: 0;
}

.makers .section-heading h2 {
  max-width: 14ch;
  margin-bottom: 18px;
}

.makers .section-heading p {
  max-width: 64ch;
}

.maker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 70px);
}

.maker {
  display: grid;
  gap: 22px;
}

.maker img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
}

.maker:first-child img {
  object-position: center center;
}

.maker:nth-child(2) img {
  object-position: center 30%;
}

.role {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.11em;
  line-height: 1.7;
  text-transform: uppercase;
}

.craft {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: end;
  padding: clamp(76px, 11vw, 150px) var(--gutter);
  background: var(--sage-deep);
  color: var(--white);
}

.craft > * {
  max-width: calc(var(--max) / 2);
}

.craft-copy {
  justify-self: end;
}

.craft h2 {
  margin-bottom: 28px;
  font-size: clamp(2.25rem, 5.4vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
}

.craft p:last-child {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.85;
}

.craft-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.craft-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
}

blockquote {
  margin: 30px 0 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-style: italic;
  line-height: 1.2;
}

.product-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 1px;
  background: var(--ink);
}

.product-strip figure {
  position: relative;
  min-height: clamp(340px, 48vw, 680px);
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.product-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.product-strip figure:hover img,
.image-band:hover img,
.made:hover > img {
  transform: scale(1.035);
}

.product-strip figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: var(--white);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65);
}

.trade {
  background: var(--paper);
}

.trade .section-heading h2 {
  max-width: 18ch;
}

.trade-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trade-item {
  background: var(--cream);
}

.made {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.made::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.1) 62%);
  content: "";
}

.made > img {
  position: absolute;
  inset: 0;
  object-position: center top;
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.made-copy {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) var(--gutter);
}

.made-copy h2 {
  max-width: 13ch;
  margin-bottom: 18px;
}

.made-copy p:last-child {
  max-width: 46ch;
  color: color-mix(in srgb, var(--white) 82%, transparent);
}

@media (min-width: 981px) {
  .made-copy {
    padding-top: clamp(190px, 16vw, 250px);
    padding-bottom: clamp(48px, 7vw, 86px);
  }
}

.cta {
  padding: clamp(78px, 11vw, 150px) var(--gutter);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.cta > div {
  width: min(100%, 760px);
  margin-inline: auto;
}

.cta h2 {
  margin-bottom: 22px;
}

.cta p {
  max-width: 54ch;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  justify-content: center;
}

.contact {
  align-items: start;
}

address {
  max-width: 35ch;
  color: var(--muted);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.85;
}

.contact-links {
  display: grid;
  border: 1px solid var(--line);
}

.contact-links a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 94px;
  padding: 23px clamp(20px, 3vw, 32px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease;
}

.contact-links a:last-child {
  border-bottom: 0;
}

.contact-links a:hover {
  background: var(--blue);
}

.contact-links svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
}

.contact-links a:first-child svg,
.contact-links a:last-child svg {
  fill: var(--ink);
  stroke: none;
}

.contact-links span {
  min-width: 0;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}

.contact-links small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(38px, 6vw, 70px) var(--gutter);
  background: var(--ink);
  color: var(--white);
}

.footer-logo {
  width: clamp(106px, 12vw, 154px);
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer > div {
  display: grid;
  justify-items: end;
  gap: 14px;
  text-align: right;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.9;
  text-transform: uppercase;
}

.social {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  transition: border-color 180ms ease;
}

.social:hover {
  border-color: var(--white);
}

.social svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .formula-grid,
  .trade-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro,
  .mission,
  .contact,
  .craft {
    grid-template-columns: 1fr;
  }

  .craft-copy,
  .craft > * {
    justify-self: start;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-block: 12px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid color-mix(in srgb, currentColor 48%, transparent);
    border-radius: 4px;
    background: transparent;
    color: currentColor;
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: grid;
    place-content: center;
    gap: 26px;
    background: var(--paper);
    color: var(--ink);
    font-size: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.nav-active .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .language-switch {
    justify-content: center;
  }

  .brand-logo {
    height: 50px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.24) 62%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.12));
  }

  .hero-content {
    padding-top: 118px;
    padding-right: 24px;
    padding-left: 24px;
    max-width: 100vw;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6.2rem);
  }

  .button {
    width: 100%;
    padding-inline: 18px;
  }

  .hero .eyebrow,
  .hero-copy,
  .hero-actions {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .formula-grid,
  .trade-grid,
  .maker-grid,
  .product-strip {
    grid-template-columns: 1fr;
  }

  .formula-item,
  .trade-item {
    min-height: 190px;
  }

  .craft-gallery {
    gap: 8px;
  }

  .product-strip figure {
    min-height: 390px;
  }

  .made {
    min-height: 560px;
  }

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

  .site-footer > div {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero .eyebrow {
    max-width: 28ch;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .intro h2,
  .mission h2,
  .section-heading h2,
  .contact h2,
  .made h2,
  .cta h2 {
    font-size: clamp(2rem, 12vw, 3.25rem);
  }

  .craft h2 {
    font-size: clamp(2.1rem, 12vw, 3.25rem);
  }

  .contact-links a {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 14px;
  }
}
