* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--paper);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1,h2,h3,p { margin-top: 0; }
h1,h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.03;
}
h1 { font-size: clamp(3rem, 6vw, 6.7rem); }
h2 { font-size: clamp(2.35rem, 4.6vw, 5rem); }
h3 { font-size: 1.35rem; }
p { line-height: 1.7; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
  overflow: clip;
}
.section--light { background: var(--paper); }
.section--dark { background: var(--ink-900); color: var(--white); }
.section--territory { background: linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%); }
.section--contact { background: var(--olive-900); color: white; }

.eyebrow {
  margin-bottom: 18px;
  color: var(--olive-600);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
em { color: var(--olive-500); font-style: normal; }

.button-group { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--olive-600); color: white; }
.button--ghost { border: 1px solid rgba(255,255,255,.5); color: white; background: rgba(0,0,0,.12); }
.button--small { min-height: 44px; padding: 10px 16px; font-size: .88rem; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 12px;
  top: -100px;
  padding: 10px 14px;
  background: white;
  color: black;
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
