:root {
  --paper: #f6f1e8;
  --paper-soft: #fbf8f1;
  --paper-muted: #ebe3d5;
  --ink: #1f2a24;
  --muted: #69746d;
  --green: #284f3c;
  --green-deep: #193528;
  --clay: #a76344;
  --brass: #b49255;
  --line: #ddd2c2;
  --white: #fffdf8;
  --shadow: 0 18px 44px rgba(30, 39, 33, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  background: var(--paper);
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.07em;
  text-underline-offset: 0.18em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: clamp(1.7rem, 2.4rem, 2.4rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem clamp(1rem, 4vw, 4rem);
  background: rgba(251, 248, 241, 0.94);
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
}

.brand span {
  display: block;
  max-width: 8.5rem;
  line-height: 0.95;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  color: var(--ink);
  font-size: 0.92rem;
}

.site-nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: currentColor;
}

.hero {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 38, 30, 0.82), rgba(21, 38, 30, 0.58) 38%, rgba(21, 38, 30, 0.1)),
    linear-gradient(0deg, rgba(246, 241, 232, 0.12), transparent 36%);
  z-index: -1;
}

.hero-content {
  width: min(94vw, 1260px);
  margin: 0 auto;
  color: var(--white);
  padding: 2.4rem 0;
}

.hero-content h1 {
  font-size: 4.1rem;
  width: min(11ch, 100%);
  margin-top: 0.6rem;
  text-wrap: balance;
}

.hero-content p:not(.eyebrow) {
  width: min(34rem, 100%);
  margin-top: 1rem;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c98c;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.05rem;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-1px);
}

.button-ghost {
  color: var(--green-deep);
  background: transparent;
  border-color: rgba(40, 79, 60, 0.45);
}

.hero .button-ghost {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.7);
}

.section {
  width: min(94vw, 1260px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section-muted {
  width: 100%;
  padding-left: max(3vw, calc((100vw - 1260px) / 2));
  padding-right: max(3vw, calc((100vw - 1260px) / 2));
  background: rgba(235, 227, 213, 0.5);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  max-width: 14ch;
}

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

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

.guide-grid.wide {
  width: min(94vw, 1120px);
  margin: 0 auto 4rem;
}

.collection-card,
.guide-card,
.product-card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.collection-card:hover,
.guide-card:hover,
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(40, 79, 60, 0.25);
}

.collection-card a,
.guide-card a,
.product-card a {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.collection-card img,
.guide-card img,
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--paper-muted);
}

.collection-card span,
.guide-card span,
.product-card span {
  display: block;
  margin: 1rem 1rem 0.4rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.collection-card h3,
.guide-card h3,
.product-card h3 {
  margin: 0 1rem 0.85rem;
}

.guide-card p,
.product-card p {
  margin: 0 1rem 1rem;
  color: var(--muted);
}

.guide-card strong,
.product-card strong {
  margin: auto 1rem 1rem;
  color: var(--green-deep);
}

.feature-band {
  width: min(94vw, 1260px);
  margin: clamp(2rem, 5vw, 4rem) auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.feature-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.feature-band h2 {
  margin: 0.6rem 0 1rem;
}

.feature-band p + p {
  margin-top: 0.8rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--green-deep);
  font-weight: 750;
}

.values-row {
  width: min(94vw, 1120px);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.values-row article {
  padding-top: 1rem;
  border-top: 2px solid var(--line);
}

.values-row h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.masthead {
  width: min(94vw, 980px);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
}

.masthead h1 {
  margin-top: 0.6rem;
  max-width: 12ch;
}

.masthead p:not(.eyebrow) {
  max-width: 46rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.narrow {
  width: min(92vw, 760px);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.text-section {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.text-section h2 {
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
}

.text-section p + p {
  margin-top: 0.6rem;
}

.checklist-layout {
  width: min(94vw, 1120px);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.checklist-section {
  padding: 1.3rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.checklist-section h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.65rem;
  align-items: start;
}

.checklist li span {
  width: 18px;
  height: 18px;
  margin-top: 0.17rem;
  border: 1px solid rgba(40, 79, 60, 0.45);
  border-radius: 4px;
  background: var(--white);
}

.callout-line {
  width: min(94vw, 980px);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  padding: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article {
  width: min(94vw, 980px);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.article-header {
  padding: clamp(3rem, 7vw, 6rem) 0 2rem;
}

.article-header h1 {
  margin-top: 0.6rem;
  max-width: 12ch;
}

.article-header p:not(.eyebrow) {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.article-header img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--paper-muted);
  margin-top: 2rem;
  border-radius: 6px;
}

.article-body {
  display: grid;
  gap: 1.35rem;
}

.article-body section {
  display: grid;
  grid-template-columns: minmax(12rem, 0.45fr) minmax(0, 1fr);
  gap: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.article-body h2 {
  font-size: 1.35rem;
}

.not-found,
.asset-home {
  width: min(92vw, 680px);
  margin: 0 auto;
  padding: clamp(4rem, 12vw, 8rem) 0;
  text-align: center;
}

.not-found h1,
.asset-home h1 {
  margin-top: 0.5rem;
}

.not-found p,
.asset-home p {
  margin: 1rem auto 0;
  color: var(--muted);
  max-width: 34rem;
}

.not-found img {
  width: min(100%, 560px);
  aspect-ratio: 16 / 8;
  object-fit: cover;
  margin: 2rem auto;
  border-radius: 6px;
}

.stacked-actions,
.asset-links {
  display: grid;
  gap: 0.75rem;
  width: min(100%, 360px);
  margin: 1.6rem auto 0;
}

.asset-links a {
  padding: 0.85rem 1rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
}

.site-footer {
  background: var(--green-deep);
  color: var(--white);
  margin-top: clamp(2rem, 6vw, 5rem);
}

.footer-inner {
  width: min(94vw, 1260px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  display: grid;
  grid-template-columns: minmax(12rem, 0.8fr) minmax(0, 1.7fr);
  gap: 2rem;
}

.footer-brand {
  align-items: flex-start;
  color: var(--white);
}

.footer-brand small {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 253, 248, 0.72);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.footer-grid div {
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.footer-grid strong {
  margin-bottom: 0.3rem;
}

.footer-grid a {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

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

  .site-nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: 3.3rem;
  }

  .hero-content h1 {
    font-size: 3.3rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(21, 38, 30, 0.82), rgba(21, 38, 30, 0.3));
  }

  .hero-content {
    align-self: end;
    padding: 3rem 0;
  }

  .section-heading,
  .feature-band,
  .footer-inner,
  .article-body section {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .product-grid,
  .guide-grid,
  .values-row,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .brand span {
    max-width: 7.5rem;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .site-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0 0.7rem;
    background: var(--paper-soft);
  }

  .hero {
    min-height: 520px;
  }

  h1,
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content h1,
  .masthead h1,
  .article-header h1 {
    max-width: 100%;
  }

  .collection-grid,
  .product-grid,
  .guide-grid,
  .values-row,
  .footer-grid,
  .checklist-layout {
    grid-template-columns: 1fr;
  }

  .callout-line {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
