:root {
  color-scheme: light;
  --ink: #18231d;
  --green: #2f5f46;
  --green-deep: #203f31;
  --leaf: #dfe8d4;
  --paper: #fbfaf4;
  --warm: #eee5d2;
  --white: #ffffff;
  --muted: #5c665f;
  --line: #d8dccf;
  --rust: #9f4f31;
  --gold: #eebd67;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.56;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.7rem, 11vw, 8rem);
  font-weight: 840;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 790;
}

h3 {
  font-size: 1.25rem;
  font-weight: 780;
}

p {
  margin: 0;
}

figure {
  margin: 0;
  overflow: hidden;
  background: #d8d3c5;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 52px);
  color: var(--white);
  background: rgba(18, 31, 24, 0.82);
  backdrop-filter: blur(12px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  font-weight: 820;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--white);
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  gap: clamp(10px, 2.3vw, 28px);
  font-size: 0.94rem;
  font-weight: 730;
}

.site-nav a,
.button,
.text-link {
  text-decoration: none;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-shop {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  opacity: 1;
}

.hero {
  position: relative;
  min-height: min(760px, 82svh);
  display: grid;
  align-items: end;
  padding: 128px clamp(20px, 5vw, 76px) 68px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(14, 24, 18, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact-section .eyebrow,
.shop-section .eyebrow {
  color: #f4c58a;
}

.hero-copy {
  width: min(640px, 100%);
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.12rem, 2vw, 1.48rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 820;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

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

.button.dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.intro-section,
.content-section,
.process-section,
.shop-section,
.contact-section,
.legal-section,
.site-footer {
  padding-inline: clamp(20px, 5vw, 76px);
}

.intro-section {
  padding-block: clamp(58px, 8vw, 112px);
  background: var(--leaf);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.text-block {
  color: var(--muted);
}

.text-block.large {
  font-size: clamp(1.15rem, 2vw, 1.42rem);
}

.text-block p + p,
.split-copy p + p {
  margin-top: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  min-height: 660px;
  background: var(--paper);
}

.split-section.reverse {
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
}

.split-section.reverse .split-image {
  order: 2;
}

.split-section.warm {
  background: var(--warm);
}

.split-image {
  min-height: 520px;
}

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

.split-copy {
  align-self: center;
  padding: clamp(44px, 6vw, 86px);
}

.split-copy p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.07rem;
}

.custom-public-body {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.custom-public-body p + p {
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 26px;
  border-bottom: 2px solid var(--rust);
  color: var(--ink);
  font-weight: 850;
}

.content-section,
.process-section {
  padding-block: clamp(64px, 9vw, 124px);
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section-heading.narrow {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card p {
  margin-top: 16px;
  color: var(--muted);
}

.photo-rhythm,
.gallery-section {
  display: grid;
  background: var(--ink);
}

.photo-rhythm {
  grid-template-columns: 1.45fr 0.85fr 1fr;
  gap: 0;
}

.photo-rhythm figure,
.gallery-section figure {
  min-height: 360px;
}

.photo-rhythm .wide {
  min-height: 540px;
}

.photo-rhythm img,
.gallery-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-section {
  background: var(--leaf);
}

.process-list {
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 36px auto 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
}

.process-list span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 850;
}

.process-list p {
  margin-top: 12px;
  color: var(--muted);
}

.gallery-section {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-section figure {
  aspect-ratio: 4 / 5;
}

.shop-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding-block: clamp(58px, 8vw, 110px);
  background: var(--green-deep);
  color: var(--white);
}

.shop-copy p {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.shop-copy .button {
  margin-top: 26px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 420px);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
  background: var(--paper);
}

address {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-style: normal;
  font-size: 1.08rem;
}

address a {
  display: inline-block;
  margin-top: 14px;
  color: var(--rust);
  font-weight: 820;
}

.legal-section {
  padding-block: 38px;
  background: #eef1ec;
  color: var(--muted);
}

.legal-section h2,
.legal-section p {
  max-width: 900px;
  margin-inline: auto;
}

.legal-section h2 {
  color: var(--ink);
  font-size: 1.3rem;
}

.legal-section p {
  margin-top: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 26px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  font-weight: 730;
  text-decoration: none;
}

.legal-body {
  background: var(--paper);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-brand {
  color: var(--ink);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 760;
}

.legal-nav a {
  text-decoration: none;
}

.legal-main {
  min-height: 70svh;
}

.legal-hero {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 76px);
  background: var(--leaf);
}

.legal-hero h1,
.legal-hero p {
  max-width: 900px;
  margin-inline: auto;
}

.legal-hero h1 {
  font-size: clamp(2.7rem, 11vw, 6.4rem);
  overflow-wrap: normal;
  word-break: normal;
}

.legal-hero .eyebrow {
  max-width: 900px;
  margin-inline: auto;
}

.legal-hero p {
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.legal-content {
  max-width: 940px;
  display: grid;
  gap: 18px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 84px) 20px;
}

.legal-content article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-content h2 {
  font-size: 1.45rem;
}

.legal-content p,
.legal-content ul {
  margin-top: 14px;
  color: var(--muted);
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-content a {
  color: var(--rust);
  font-weight: 760;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 8px;
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .section-grid,
  .split-section,
  .split-section.reverse,
  .feature-list,
  .process-list,
  .shop-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-image {
    order: 0;
  }

  .split-section,
  .split-section.reverse {
    min-height: 0;
  }

  .photo-rhythm {
    grid-template-columns: 1fr 1fr;
  }

  .photo-rhythm .wide {
    grid-column: 1 / -1;
  }

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

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

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    display: none;
  }

  .site-nav {
    gap: 8px;
    font-size: 0.84rem;
  }

  .site-nav a:not(.nav-shop) {
    display: none;
  }

  .hero {
    min-height: 78svh;
    padding: 112px 18px 42px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .split-image,
  .photo-rhythm .wide,
  .photo-rhythm figure,
  .gallery-section figure {
    min-height: 280px;
  }

  .photo-rhythm,
  .gallery-section {
    grid-template-columns: 1fr;
  }

  .split-copy,
  .feature-card,
  .process-list li,
  address {
    padding: 22px;
  }
}
