:root {
  --ink: #171717;
  --paper: #fbf7e0;
  --orange: #f36c13;
  --purple: #75627d;
  --line: #e2dcc7;
  --muted: #6f6b63;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

.site-header {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: inherit;
}

.brand-symbol {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-word {
  width: 148px;
  height: 34px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  gap: 34px;
  font-family: "Courier New", Courier, monospace;
  font-size: 15px;
}

nav a { color: inherit; text-decoration: none; }
nav a:hover { text-decoration: underline; text-underline-offset: 5px; }

.hero {
  width: 100%;
  padding: 0 0 12px;
}

.hero-frame {
  width: 100%;
  background: var(--paper);
}

.hero-bg {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section-kicker,
.mono,
h1,
h2 {
  font-family: "Courier New", Courier, monospace;
}

.section {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 68px 0;
}

.split,
.philosophy {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

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

.copy { max-width: 560px; }
.copy p { max-width: 540px; font-size: 18px; margin: 0 0 18px; }

.section-kicker {
  font-size: 17px !important;
  letter-spacing: .03em;
  margin: 0 0 12px !important;
}

.section-kicker.purple { color: var(--purple); }

h1, h2 {
  font-weight: 400;
  line-height: 1.18;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(38px, 4.8vw, 64px);
  max-width: 10ch;
}

h2 {
  font-size: clamp(31px, 3.9vw, 52px);
  max-width: 13ch;
}

.accent {
  width: 138px;
  height: 4px;
  margin: 18px 0 26px;
}

.accent-orange { background: #efb07c; }
.accent-purple { background: var(--purple); }

.bottle-stage {
  min-height: 540px;
  display: grid;
  place-items: center;
}

.bottle-stage img {
  width: min(620px, 100%);
  max-height: 620px;
  object-fit: contain;
  background: transparent;
}

.art-panel img {
  width: min(410px, 90%);
  margin: 0 auto;
}

.product-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: start;
  background: transparent;
}

.product-card {
  display: grid;
  grid-template-rows: auto auto;
  align-items: start;
  justify-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-card img {
  height: 650px;
  width: 100%;
  object-fit: contain;
  background: transparent;
}

.product-text {
  width: min(430px, 100%);
  padding-top: 10px;
  border: 0;
  background: transparent;
}

.product-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.product-text p {
  margin: 12px 0 0;
  font-size: 16px;
  color: #2d2d2d;
  max-width: 34ch;
}

.subtle {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.art-section { padding-top: 78px; }
.art-heading { max-width: 760px; margin-bottom: 40px; }
.art-heading h2 { max-width: 18ch; }

.art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  max-width: 900px;
}

figure { margin: 0; }
figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

figcaption {
  font-family: "Courier New", Courier, monospace;
  padding-top: 12px;
  font-size: 15px;
}

.contact {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 82px 0 94px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

.contact h2 { max-width: 14ch; }

.mail-link {
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(18px, 2.3vw, 30px);
  color: var(--ink);
  text-underline-offset: 6px;
}

footer {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding: 22px 0 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Arial Black, Impact, sans-serif;
  font-size: 22px;
}

.footer-brand img { width: 32px; }

@media (max-width: 800px) {
  .site-header {
    width: calc(100% - 32px);
    height: auto;
    padding: 18px 0;
    align-items: flex-start;
  }

  .brand-word { width: 110px; }
  .brand-symbol { width: 38px; height: 38px; }
  nav { gap: 13px; font-size: 11px; flex-wrap: wrap; justify-content: flex-end; }

  .section,
  .contact,
  footer { width: calc(100% - 36px); }

  .split,
  .philosophy,
  .product-pair,
  .art-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 54px 0; }
  h1, h2 { max-width: none; }
  .bottle-stage { min-height: 380px; }
  .bottle-stage img { max-height: 420px; }
  .product-card img { height: 470px; }
  .art-panel img { width: min(320px, 85%); }
  .art-grid { max-width: 360px; gap: 26px; }

  .contact {
    align-items: flex-start;
    flex-direction: column;
    padding: 64px 0;
  }
}
