:root {
  --ink: #211d18;
  --charcoal: #1d251f;
  --olive: #334633;
  --sage: #69765f;
  --rattan: #bd8750;
  --clay: #8a5f3f;
  --paper: #f3ecdf;
  --cream: #fffaf1;
  --line: rgba(33, 29, 24, 0.14);
  --shadow: 0 28px 90px rgba(33, 29, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(138, 95, 63, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(138, 95, 63, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 236, 223, 0.9);
  padding: 15px clamp(20px, 4.8vw, 58px);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(138, 95, 63, 0.28);
  border-radius: 50%;
  background: var(--cream);
  color: var(--olive);
  font-family: "Fraunces", serif;
  font-weight: 650;
}

.brand strong,
footer span:first-child {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.08rem;
  font-weight: 650;
}

.brand small {
  display: block;
  color: rgba(33, 29, 24, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.6vw, 30px);
  color: rgba(33, 29, 24, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  min-height: calc(100vh - 75px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  background: var(--cream);
  padding: clamp(34px, 5vw, 72px);
}

.eyebrow,
.hero-board span,
.system-card span,
.process-steps strong,
.flow span {
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow,
h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  font-size: clamp(2.65rem, 4.6vw, 5.15rem);
  line-height: 1.01;
}

h2 {
  max-width: 920px;
  font-size: clamp(1.85rem, 3.15vw, 3.55rem);
  line-height: 1.06;
}

h3 {
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.22;
}

p {
  color: rgba(33, 29, 24, 0.68);
  line-height: 1.72;
}

.hero-copy > p:not(.eyebrow),
.store-copy > p,
.growth-copy > p {
  max-width: 680px;
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--charcoal);
  color: var(--cream);
}

.button.secondary {
  border-color: rgba(33, 29, 24, 0.22);
  background: rgba(255, 250, 241, 0.74);
}

.hero-actions,
.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.hero-board article {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  min-height: 100%;
  background: var(--charcoal);
  padding: clamp(26px, 4vw, 44px);
}

.hero-board article:nth-child(2) {
  background: var(--olive);
}

.hero-board article:nth-child(3) {
  background: #3b2f25;
}

.hero-board strong {
  margin: 28px 0 12px;
  color: var(--cream);
  font-family: "Fraunces", serif;
  font-size: clamp(1.45rem, 2.05vw, 2.15rem);
  font-weight: 650;
  line-height: 1.08;
}

.hero-board p {
  color: rgba(255, 250, 241, 0.72);
}

.systems,
.process,
.products,
.stores,
.growth {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 58px);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: 42px;
}

.section-title.narrow {
  display: block;
  max-width: 900px;
}

.section-title.narrow h2 {
  margin-top: 14px;
}

.system-grid {
  display: grid;
  gap: 18px;
}

.system-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  min-height: 430px;
  border: 1px solid rgba(33, 29, 24, 0.14);
  background: var(--cream);
  box-shadow: 0 18px 58px rgba(33, 29, 24, 0.08);
}

.system-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.system-card:nth-child(even) img {
  grid-column: 2;
  grid-row: 1;
}

.system-card div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: clamp(28px, 5vw, 60px);
}

.system-card h3 {
  max-width: 720px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.55rem, 2.25vw, 2.45rem);
  font-weight: 650;
  line-height: 1.08;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  border-block: 1px solid var(--line);
  background: var(--cream);
}

.process-copy {
  display: grid;
  gap: 18px;
  align-self: start;
}

.process-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(33, 29, 24, 0.12);
  background: rgba(243, 236, 223, 0.74);
  padding: 18px;
}

.process-steps span {
  color: rgba(33, 29, 24, 0.68);
  line-height: 1.5;
}

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

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

.product-grid article {
  overflow: hidden;
  border: 1px solid rgba(33, 29, 24, 0.14);
  background: var(--cream);
  box-shadow: 0 18px 54px rgba(33, 29, 24, 0.08);
}

.product-grid img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.product-grid h3,
.product-grid p {
  padding-inline: 22px;
}

.product-grid h3 {
  margin-top: 22px;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 650;
}

.product-grid p {
  margin-top: 8px;
  padding-bottom: 24px;
}

.stores,
.growth {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.stores {
  background: var(--cream);
}

.store-media,
.growth-media {
  min-height: 620px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.store-copy,
.growth-copy {
  display: grid;
  gap: 20px;
}

.store-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.store-points span {
  border: 1px solid rgba(33, 29, 24, 0.14);
  border-radius: 999px;
  background: rgba(243, 236, 223, 0.72);
  color: rgba(33, 29, 24, 0.72);
  padding: 10px 13px;
  font-size: 0.86rem;
  font-weight: 800;
}

.growth {
  background: var(--charcoal);
  color: var(--cream);
}

.growth h2,
.growth p {
  color: var(--cream);
}

.growth .eyebrow {
  color: #d8bd91;
}

.growth .button.primary {
  background: var(--cream);
  color: var(--charcoal);
}

.growth .button.secondary {
  border-color: rgba(255, 250, 241, 0.28);
  color: var(--cream);
  background: transparent;
}

.growth small {
  min-height: 20px;
  color: #d8bd91;
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 28px clamp(20px, 5vw, 58px);
  color: rgba(33, 29, 24, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .hero,
  .section-title,
  .system-card,
  .system-card:nth-child(even),
  .process,
  .stores,
  .growth {
    grid-template-columns: 1fr;
  }

  .system-card:nth-child(even) img {
    grid-column: auto;
    grid-row: auto;
  }

  .system-card img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

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

  .hero-board article {
    min-height: 260px;
  }
}

@media (max-width: 720px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    gap: 12px 16px;
  }

  .hero {
    min-height: auto;
  }

  .process-steps li {
    grid-template-columns: 1fr;
  }

  .store-media,
  .growth-media {
    min-height: 390px;
  }

  .button,
  .hero-actions,
  .partner-actions {
    width: 100%;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.15rem, 11.5vw, 3.15rem);
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .hero-copy {
    padding: 30px 20px 42px;
  }
}
