:root {
  color-scheme: light;
  --ink: #18201d;
  --muted: #64706b;
  --paper: #f7f4ed;
  --surface: #ffffff;
  --forest: #20483d;
  --forest-dark: #112b25;
  --clay: #b6573c;
  --line: #d8d5ca;
  --shadow: 0 24px 70px rgba(24, 32, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  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;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: #ffffff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: min(620px, 70vw);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 22px;
}

.header-link {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, 92vh);
  overflow: hidden;
  background: var(--forest-dark);
  color: #ffffff;
}

.hero-image,
.hero-shade,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 43, 37, 0.94), rgba(17, 43, 37, 0.6) 42%, rgba(17, 43, 37, 0.12) 100%),
    linear-gradient(0deg, rgba(17, 43, 37, 0.3), rgba(17, 43, 37, 0.04));
}

.hero-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 100%);
  min-height: 620px;
  padding: 116px clamp(18px, 5vw, 64px) 78px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3b08c;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 700;
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.button.primary {
  border-color: var(--clay);
  background: var(--clay);
  color: #ffffff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.intro,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(30px, 7vw, 92px);
  padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.intro {
  align-items: start;
  background: var(--surface);
}

.intro > p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.product-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.74fr);
  min-height: 560px;
  background: #dfe4df;
}

.product-visual {
  min-height: 460px;
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 82px);
  background: var(--forest);
  color: #ffffff;
}

.product-panel .section-label {
  color: #f3b08c;
}

.category-list {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.category-list li {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact {
  align-items: center;
  background: var(--paper);
}

address {
  display: grid;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  font-style: normal;
  font-size: 20px;
}

address a {
  width: fit-content;
  color: var(--forest);
  font-weight: 800;
  text-decoration-color: rgba(32, 72, 61, 0.3);
  text-underline-offset: 4px;
}

footer {
  display: flex;
  justify-content: center;
  padding: 26px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

  .header-link {
    display: none;
  }

  .brand {
    max-width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-image,
  .hero-content {
    min-height: 680px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(17, 43, 37, 0.94), rgba(17, 43, 37, 0.7) 55%, rgba(17, 43, 37, 0.18)),
      linear-gradient(90deg, rgba(17, 43, 37, 0.28), rgba(17, 43, 37, 0.05));
  }

  .hero-content {
    justify-content: flex-end;
  }

  .intro,
  .contact,
  .product-band {
    grid-template-columns: 1fr;
  }

  .product-panel {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-top: 18px;
  }

  .brand {
    font-size: 13px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-image,
  .hero-content {
    min-height: 720px;
  }

  h1 {
    font-size: 42px;
  }

  .button {
    width: 100%;
  }

  .product-visual {
    min-height: 320px;
  }

  address {
    font-size: 18px;
  }
}
