:root {
  --ink: #17201c;
  --muted: #5d6963;
  --soft: #f5f1e8;
  --paper: #fffdf8;
  --sage: #6d7f70;
  --forest: #243f34;
  --glacier: #dbe9eb;
  --mineral: #e2dfd4;
  --line: rgba(23, 32, 28, 0.14);
  --shadow: 0 24px 60px rgba(23, 32, 28, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.nav-cta,
.button,
.input-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.nav-cta {
  padding: 0 18px;
  background: var(--forest);
  color: var(--paper);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 138px clamp(18px, 6vw, 76px) 70px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 24, 20, 0.80) 0%, rgba(15, 24, 20, 0.54) 38%, rgba(15, 24, 20, 0.12) 100%),
    linear-gradient(0deg, rgba(15, 24, 20, 0.30), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: #fffdf8;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #dce8d9;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.96;
  font-weight: 500;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.04;
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  padding: 0 22px;
  border: 1px solid transparent;
}

.button.primary,
.input-row button {
  background: var(--forest);
  color: var(--paper);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.13);
  border-color: rgba(255, 253, 248, 0.42);
  color: inherit;
}

.section,
.intro-band,
.quality-section,
.journal-band,
.shop-band,
.contact-section {
  padding: clamp(72px, 9vw, 130px) clamp(18px, 6vw, 76px);
}

.intro-band {
  background: var(--soft);
}

.logo-band {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 6vw, 76px);
  display: grid;
  place-items: center;
  background: var(--paper);
}

.logo-band img {
  width: min(360px, 72vw);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(23, 32, 28, 0.10));
}

.intro-grid,
.split-section,
.shop-band,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.intro-grid p,
.text-stack p,
.shop-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.product-card,
.launch-panel,
.quality-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
}

.product-card {
  min-height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(23, 32, 28, 0.05);
}

.product-card.accent {
  background: var(--forest);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.product-card p,
.product-card li {
  color: var(--muted);
}

.product-card.accent p,
.product-card.accent li {
  color: rgba(255, 253, 248, 0.77);
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.product-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 22px;
}

.badge {
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card ul {
  padding-left: 18px;
  margin: auto 0 0;
}

.shop-band {
  background: linear-gradient(135deg, var(--glacier), var(--soft));
}

.launch-panel {
  padding: 28px;
  background: var(--paper);
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.input-row {
  display: flex;
  gap: 10px;
}

.input-row input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.input-row button {
  border: 0;
  padding: 0 18px;
  font: inherit;
}

.fineprint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quality-section {
  background: var(--forest);
  color: var(--paper);
}

.quality-section .section-kicker {
  color: #bdd5c7;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 248, 0.18);
  border: 1px solid rgba(255, 253, 248, 0.18);
}

.quality-item {
  min-height: 260px;
  padding: 26px;
  border: 0;
  border-radius: 0;
  background: var(--forest);
}

.quality-item span {
  display: block;
  margin-bottom: 34px;
  color: #bdd5c7;
  font-weight: 800;
}

.quality-item p {
  color: rgba(255, 253, 248, 0.74);
}

.journal-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 72px);
  background: var(--soft);
}

.journal-list {
  display: grid;
  gap: 12px;
}

.journal-list a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  font-size: 20px;
  font-weight: 700;
}

.contact-section {
  align-items: center;
}

.contact-section .button.secondary {
  border-color: var(--line);
  color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 38px clamp(18px, 6vw, 76px);
  background: #111713;
  color: var(--paper);
}

.site-footer p {
  max-width: 420px;
  margin: 8px 0 0;
  color: rgba(255, 253, 248, 0.64);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 130px 22px 80px;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(40px, 7vw, 72px);
}

.legal-page h2 {
  margin-top: 42px;
  font-size: 28px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.notice {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .product-grid,
  .quality-grid,
  .intro-grid,
  .split-section,
  .shop-band,
  .journal-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }
}

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

  .brand small,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 112px 18px 52px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(15, 24, 20, 0.86), rgba(15, 24, 20, 0.38));
  }

  .hero-actions,
  .contact-actions,
  .input-row {
    flex-direction: column;
  }

  .button,
  .input-row button {
    width: 100%;
  }

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