:root {
  --black: #050505;
  --ink: #11120f;
  --cream: #f1eadb;
  --paper: #fff8e9;
  --bone: #d6c9ad;
  --green: #445522;
  --green-dark: #22300f;
  --gold: #d6a21f;
  --rust: #8d3f20;
  --line: rgba(241, 234, 219, 0.2);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.4;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 9px clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
}

.brand-mark img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(241, 234, 219, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.header-action,
.button,
.product-info button,
.signup-form button {
  border: 1px solid var(--cream);
  background: var(--cream);
  color: var(--black);
  cursor: pointer;
  font-weight: 750;
  min-height: 48px;
  padding: 0 18px;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  min-height: 38px;
}

.section-band {
  padding: clamp(68px, 10vw, 140px) clamp(18px, 5vw, 72px);
}

.hero {
  min-height: calc(100vh - 75px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 92px);
  background:
    radial-gradient(circle at 75% 45%, rgba(68, 85, 34, 0.55), transparent 34%),
    linear-gradient(180deg, #000 0%, #060705 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.product-type {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 650;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(56px, 7.6vw, 108px);
}

h2 {
  font-size: clamp(38px, 5.8vw, 78px);
}

h3 {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 750;
}

.hero-line {
  max-width: 660px;
  color: rgba(241, 234, 219, 0.68);
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
}

.button.ghost {
  background: transparent;
  color: var(--cream);
}

.hero-art {
  position: relative;
  width: auto;
  opacity: 0.92;
}

.hero-art img {
  width: min(100%, 500px);
  margin-inline: auto;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.5));
}

.statement {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 0.78fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: stretch;
  background: var(--paper);
  color: var(--ink);
}

.statement-copy {
  max-width: 620px;
}

.statement-copy h2 {
  margin: 14px 0 24px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.96;
}

.statement-lede {
  max-width: 520px;
  margin-bottom: 16px;
  color: rgba(17, 18, 15, 0.72);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 500;
}

.mission-copy strong {
  color: var(--ink);
  font-weight: 800;
}

.statement-support {
  max-width: 520px;
  margin: 0;
  color: rgba(17, 18, 15, 0.72);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.42;
}

.statement-notes {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(17, 18, 15, 0.16);
}

.statement-notes p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 18, 15, 0.16);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 650;
}

.feature-photo,
.story-card {
  margin: 0;
}

.feature-photo img,
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-photo {
  position: relative;
  min-height: 560px;
  height: auto;
  overflow: hidden;
}

.feature-photo img {
  height: 100%;
  min-height: 100%;
  object-position: 38% center;
  filter: brightness(0.9) saturate(0.96);
}

.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 68%);
  pointer-events: none;
}

.feature-photo figcaption {
  position: absolute;
  left: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(20px, 4vw, 46px);
  z-index: 1;
  margin: 0;
  max-width: 620px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.2vw, 82px);
  font-weight: 650;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.72);
}

.drops {
  background: #0a0b08;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
  margin-top: 14px;
  margin-bottom: 34px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-row p,
.vision-copy p {
  color: rgba(241, 234, 219, 0.72);
  font-size: 18px;
  font-weight: 500;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: #11120f;
}

.product-card h3 {
  font-size: clamp(22px, 2.1vw, 34px);
  min-height: calc(2.16em + 2px);
  display: flex;
  align-items: flex-start;
}

.product-image {
  min-height: 410px;
  display: grid;
  place-items: center;
  padding: 18px;
}

.product-image img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.product-mockup {
  background: #f4eddd;
}

.product-cream {
  background: var(--paper);
}

.product-black {
  background: #000;
}

.product-green {
  background: var(--green);
}

.stubby {
  display: grid;
  place-items: center;
  width: min(72%, 260px);
  aspect-ratio: 0.76;
  border: 9px solid var(--black);
  background: var(--gold);
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(42px, 6vw, 76px);
}

.product-info {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 10px;
  padding: 22px;
}

.product-info h3 {
  margin-bottom: 0;
}

.product-info span {
  color: var(--bone);
  font-weight: 650;
}

.product-info button {
  align-self: end;
  margin-top: 16px;
  width: 100%;
}

.society {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 44px;
  align-items: start;
  background: var(--green-dark);
  padding-bottom: clamp(118px, 13vw, 190px);
}

.society h2 {
  max-width: 880px;
  margin-bottom: 24px;
}

.society-copy {
  max-width: 690px;
  margin: 0;
  color: rgba(241, 234, 219, 0.76);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
}

.society-list,
.future-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.society-list span,
.future-list span {
  border: 1px solid rgba(241, 234, 219, 0.34);
  padding: 12px 14px;
  color: var(--cream);
  font-weight: 650;
}

.stories {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  margin-top: clamp(-126px, -8vw, -86px);
  background:
    linear-gradient(180deg, var(--green-dark) 0 112px, var(--paper) 112px 100%);
  color: var(--ink);
  padding-top: 0;
}

.story-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82));
}

.story-card div {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 1;
  color: var(--cream);
}

.story-card h2,
.story-card h3 {
  max-width: 820px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

.story-card h3 {
  font-size: clamp(32px, 4.3vw, 58px);
}

.join {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: end;
  background: var(--green);
  color: var(--cream);
}

.join h2 {
  margin-bottom: 0;
}

.signup-form {
  display: grid;
  gap: 10px;
}

.signup-form label {
  color: rgba(241, 234, 219, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.signup-form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(241, 234, 219, 0.42);
  background: rgba(0, 0, 0, 0.32);
  color: var(--cream);
  padding: 0 18px;
  outline: none;
}

.signup-form input::placeholder {
  color: rgba(241, 234, 219, 0.55);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--paper);
  font-size: 14px;
  font-weight: 650;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px 28px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #000;
}

.site-footer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  font-family: "Special Elite", Georgia, serif;
  font-size: clamp(20px, 3vw, 34px);
}

.footer-links {
  display: flex;
  grid-column: 2;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(241, 234, 219, 0.68);
  font-size: 12px;
  font-weight: 650;
}

.copyright {
  grid-column: 2;
  color: rgba(241, 234, 219, 0.45);
  font-size: 12px;
  font-weight: 650;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .statement,
  .section-heading-row,
  .society,
  .stories,
  .vision,
  .join {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    position: relative;
    right: auto;
    bottom: auto;
    order: -1;
    width: auto;
  }

  .hero-art img {
    width: min(72vw, 360px);
  }

  .feature-photo,
  .feature-photo img,
  .story-card {
    min-height: 440px;
  }

  .statement-copy {
    padding-bottom: 0;
  }

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

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

  .footer-links,
  .copyright {
    grid-column: auto;
  }
}

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

  .brand-mark span {
    display: none;
  }

  .header-action {
    min-height: 42px;
    padding-inline: 12px;
  }

  .section-band {
    padding: 52px 16px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .hero-actions,
  .form-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .button,
  .signup-form button {
    width: 100%;
  }

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

  .product-image {
    min-height: 330px;
  }

  .story-card,
  .feature-photo,
  .feature-photo img {
    min-height: 360px;
  }

  .feature-photo figcaption {
    position: absolute;
    max-width: none;
    font-size: clamp(34px, 12vw, 54px);
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
