:root {
  --sand: #E8DCC7;
  --oat: #D4B895;
  --sage: #8B9D83;
  --clay: #B08B6E;
  --terracotta: #C66B3D;
  --ochre: #C08E3A;
  --moss: #606C38;
  --ink: #2F3328;
  --line: rgba(47, 51, 40, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(192, 142, 58, 0.16), transparent 26rem),
    radial-gradient(circle at 82% 22%, rgba(139, 157, 131, 0.32), transparent 24rem),
    var(--sand);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

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

.site-header,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  padding: 24px 0;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

.hero {
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
  padding: 24px 0 64px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--moss);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

h3 {
  font-size: 1.65rem;
}

.lead {
  max-width: 620px;
  margin: 28px 0;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.button,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--moss);
  border-radius: 22px;
  background: var(--moss);
  color: var(--sand);
  font-weight: 750;
  text-decoration: none;
}

.hero-image {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--oat);
  transform: rotate(1.4deg);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

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

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

.product-grid article,
.company-list,
.contact {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(212, 184, 149, 0.34);
}

.product-grid article {
  min-height: 230px;
  padding: 28px;
}

.product-grid p,
.company p,
.contact p,
.policy p {
  font-size: 1.02rem;
}

.company {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 28px;
}

.company-list {
  margin: 0;
  padding: 28px;
}

.company-list div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.company-list div:first-child {
  padding-top: 0;
}

.company-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

dt {
  color: var(--moss);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 6px 0 0;
  font-size: 1.08rem;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
}

.contact-link {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #ffffff;
}

.site-footer {
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.policy {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 0 96px;
}

.policy h1 {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
}

.policy section {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.policy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.updated {
  color: var(--moss);
  font-weight: 700;
}

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

  nav {
    justify-content: flex-start;
  }

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

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-image {
    transform: none;
  }
}
