:root {
  --paper: #f5e8d3;
  --paper-2: #ecd7b4;
  --ink: #11110f;
  --muted: #61594d;
  --rule: #bba98c;
  --navy: #0a2a52;
  --green: #2d7b35;
  --white: #fffaf0;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.055) 1px, transparent 1px) 0 0 / 90px 90px,
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(245, 232, 211, 0.94);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--paper);
  background: var(--navy);
  font: 700 1.2rem/1 var(--serif);
}

.brand strong,
footer strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 0.9;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
}

.main-nav a {
  font-family: var(--serif);
  font-size: 1rem;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover {
  border-color: currentColor;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule);
}

.language-switch button,
.menu-button {
  appearance: none;
  cursor: pointer;
}

.language-switch button {
  min-width: 42px;
  min-height: 36px;
  border: 0;
  background: transparent;
  font: 700 0.76rem/1 var(--sans);
}

.language-switch button.active {
  color: var(--white);
  background: var(--navy);
}

.contact-pill,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  font: 700 0.86rem/1 var(--sans);
}

.contact-pill,
.button.primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 232, 211, 0.98) 0 43%, rgba(245, 232, 211, 0.64) 56%, rgba(245, 232, 211, 0.06) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: clamp(52px, 7vw, 92px) clamp(18px, 4vw, 64px) 58px;
}

.dateline,
.section-heading span,
.method-copy span,
.label {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font: 700 0.78rem/1 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 5.15vw, 5.85rem);
  line-height: 0.94;
}

.hero p:not(.dateline) {
  max-width: 600px;
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.36;
}

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

.intro,
.section,
.method,
.contact-section,
footer {
  padding-right: clamp(18px, 4vw, 64px);
  padding-left: clamp(18px, 4vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: clamp(28px, 5vw, 80px);
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(42px, 6vw, 76px);
  border-bottom: 1px solid var(--rule);
}

.intro p {
  max-width: 920px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.3vw, 3.6rem);
  line-height: 1.04;
}

.intro dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 2px solid var(--ink);
}

.intro dl div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--rule);
}

.intro dt {
  color: var(--green);
  font-weight: 700;
}

.intro dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.section {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 96px);
  padding-top: clamp(58px, 7vw, 104px);
  padding-bottom: clamp(58px, 7vw, 104px);
  border-bottom: 1px solid var(--rule);
}

.section-heading {
  position: sticky;
  top: 104px;
  align-self: start;
}

.section-heading h2,
.method h2,
.contact-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4vw, 5rem);
  line-height: 0.94;
}

.product-index {
  display: grid;
  border-top: 2px solid var(--ink);
}

.product-row {
  display: grid;
  grid-template-columns: 58px minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}

.product-row .number {
  color: var(--green);
  font-weight: 700;
}

.product-row h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.05;
}

.product-row small {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.product-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-row li {
  padding: 7px 10px;
  border: 1px solid rgba(187, 169, 140, 0.95);
  background: rgba(255, 250, 240, 0.28);
  font-size: 0.9rem;
}

.markets {
  background: rgba(255, 250, 240, 0.24);
}

.market-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--rule);
  list-style: none;
}

.market-list li {
  min-height: 94px;
  padding: 18px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.12;
}

.method {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 112px);
  padding-top: clamp(60px, 8vw, 116px);
  padding-bottom: clamp(60px, 8vw, 116px);
  color: var(--white);
  background: var(--navy);
}

.method-copy p {
  max-width: 620px;
  color: rgba(255, 250, 240, 0.78);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.method-copy span {
  color: #8ec36b;
}

.method-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 250, 240, 0.38);
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.24);
}

.method-list strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.method-list p {
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 7vw, 118px);
  padding-top: clamp(58px, 8vw, 110px);
  padding-bottom: clamp(58px, 8vw, 110px);
  border-bottom: 1px solid var(--rule);
}

.contact-section p {
  max-width: 650px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2.45rem);
  line-height: 1.14;
}

address {
  display: grid;
  gap: 14px;
  align-self: start;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--ink);
  background: rgba(255, 250, 240, 0.58);
  font-style: normal;
}

address strong {
  color: var(--green);
}

address a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}

footer a {
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-tools {
    grid-column: 1 / -1;
    display: none;
  }

  .site-header.open .main-nav,
  .site-header.open .header-tools {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero::after {
    display: none;
  }

  .hero-image {
    position: relative;
    order: 2;
    height: 360px;
    object-position: 72% center;
  }

  .hero-copy {
    order: 1;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .intro,
  .section,
  .method,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

  .market-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 1.45rem;
  }

  .brand small {
    max-width: 190px;
    font-size: 0.58rem;
  }

  .hero-image {
    height: 230px;
    object-position: 76% center;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 0.96;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .dateline,
  .section-heading span,
  .method-copy span,
  .label {
    margin-bottom: 16px;
  }

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

  .intro dl div,
  .method-list li {
    grid-template-columns: 42px 1fr;
  }

  .product-row {
    grid-template-columns: 42px 1fr;
  }

  .product-row ul {
    grid-column: 1 / -1;
  }

  .market-list {
    grid-template-columns: 1fr;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
