:root {
  --forest: #102d20;
  --forest-soft: #1d3a2a;
  --navy: #071a35;
  --cream: #f7f2e7;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink-soft: #1b2c3b;
  --muted: #6f766f;
  --line: rgba(7, 26, 53, 0.16);
  --shadow: 0 22px 60px rgba(7, 26, 53, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.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: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--cream);
  border-bottom: 1px solid rgba(247, 242, 231, 0.18);
  background: rgba(7, 26, 53, 0.96);
  backdrop-filter: blur(14px);
}

.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 90px;
}

.brand-logo {
  width: auto;
  height: 54px;
}

.footer-logo {
  width: auto;
  height: 48px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(12px, 1.6vw, 22px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-group {
  display: contents;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--cream);
}

.site-nav .social-link {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(247, 242, 231, 0.42);
}

.site-nav .social-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(440px, 1.16fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: min(100% - 36px, var(--max));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) 0 32px;
}

.hero-copy {
  max-width: 550px;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 11vw, 126px);
  font-style: italic;
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.08;
}

.hero-copy p,
.story-copy p,
.section-heading p {
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--forest);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--forest);
}

.button.secondary {
  color: var(--white);
  background: var(--forest);
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  height: min(78vh, 860px);
  min-height: 560px;
  object-fit: cover;
  object-position: 52% 42%;
}

.snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.snapshot article {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.snapshot article:last-child {
  border-right: 0;
}

.snapshot span {
  display: block;
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.snapshot strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.snapshot p,
.product-card p,
.founder-form p {
  margin-bottom: 0;
  color: var(--muted);
}

.story-section,
.future-section,
.store-section {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.story-image {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
}

.story-image img {
  width: 100%;
  aspect-ratio: 1 / 0.84;
  object-fit: cover;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  margin-bottom: 38px;
}

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

.section-heading p {
  max-width: 620px;
}

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

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

.product-card {
  display: grid;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 720 / 876;
  object-fit: contain;
  background: var(--cream);
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.product-name {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.product-card p {
  min-height: 48px;
  font-size: 14px;
}

.store-section {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(320px, 0.52fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.store-copy p {
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
}

.store-card {
  align-self: stretch;
}

.store-card .product-body {
  align-content: start;
}

.store-card .button {
  width: fit-content;
  margin-top: 4px;
}

.founder-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.form-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--cream);
  background: var(--forest);
}

@media (max-width: 1040px) {
  .site-header {
    align-items: center;
    flex-direction: column;
  }

  .brand-lockup {
    justify-content: center;
    min-width: 0;
    width: 100%;
  }

  .site-nav {
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .story-section,
  .section-heading,
  .store-section,
  .store-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .snapshot article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .snapshot article:last-child {
    border-bottom: 0;
  }

  .product-card {
    grid-template-columns: minmax(132px, 0.44fr) minmax(0, 0.56fr);
  }

  .product-card img {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding: 12px 14px 14px;
  }

  .brand-logo {
    height: 44px;
  }

  .site-nav {
    justify-content: center;
    gap: 8px 4px;
    overflow-x: visible;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .nav-group {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-main {
    gap: 12px;
  }

  .nav-social {
    gap: 12px;
  }

  .site-nav a {
    padding: 5px 0;
  }

  .site-nav .social-link {
    width: 24px;
    height: 24px;
  }

  .site-nav .social-link svg {
    width: 14px;
    height: 14px;
  }

  .hero,
  .snapshot,
  .story-section,
  .future-section,
  .store-section {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(62px, 18vw, 86px);
  }

  .hero-media img {
    height: min(74vh, 680px);
    min-height: 480px;
    object-position: 52% 44%;
  }

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

  .button {
    width: 100%;
  }

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

  .product-card img {
    aspect-ratio: 720 / 876;
  }
}
