:root {
  --paper: #f7f4ed;
  --paper-strong: #fffdf8;
  --ink: #1d2421;
  --muted: #5f6860;
  --line: #d9d4c8;
  --olive: #596f5d;
  --teal: #264f50;
  --brass: #a06f2d;
  --charcoal: #101514;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(29, 36, 33, 0.13);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 237, 0.86);
  border-bottom: 1px solid rgba(217, 212, 200, 0.68);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--paper-strong);
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  border-color: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(590px, 78svh, 780px);
  display: grid;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 78px) 72px;
  background-color: #e5e3dc;
  background-image: url("assets/hero-background.jpg");
  background-size: cover;
  background-position: center right;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.25rem;
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-summary {
  max-width: 640px;
  margin-bottom: 32px;
  color: #2e3733;
  font-size: 1.22rem;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--paper-strong);
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(29, 36, 33, 0.2);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 78px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(34px, 6vw, 84px);
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 34px;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.25rem;
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: 0;
}

.section-body {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-body p {
  max-width: 760px;
  margin-bottom: 18px;
}

.intro-section {
  background: var(--paper-strong);
}

.track-record {
  background: var(--charcoal);
  color: var(--paper-strong);
}

.track-record .section-kicker {
  color: #cfaa72;
}

.track-record h2 {
  max-width: 820px;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.record-item {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 8px;
}

.record-value {
  display: block;
  margin-bottom: 34px;
  color: #e5c38d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  line-height: 1;
}

.record-item h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.record-item p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.73);
}

.focus-section {
  background: #e9eee9;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 13px;
  color: var(--teal);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(38, 79, 80, 0.18);
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 720;
}

.geography-section {
  background: var(--paper);
}

.geo-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  color: var(--paper-strong);
  background: var(--teal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.geo-panel .section-kicker {
  color: #d9b77a;
}

.geo-panel h2 {
  margin-bottom: 0;
}

.geo-panel p {
  align-self: center;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.08rem;
}

.contact-section {
  padding: clamp(74px, 10vw, 132px) clamp(20px, 6vw, 78px);
  color: var(--paper-strong);
  background: var(--ink);
}

.contact-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  margin-bottom: 24px;
}

.contact-link {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--charcoal);
  background: #e5c38d;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  word-break: break-word;
}

.site-footer {
  padding: 26px clamp(20px, 6vw, 78px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 76svh;
    padding-top: 112px;
    background-image: url("assets/hero-background-mobile.jpg");
    background-position: 18% center;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(247, 244, 237, 0.68);
    pointer-events: none;
  }

  .hero-copy {
    width: min(100%, 620px);
  }

  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .section-grid,
  .geo-panel {
    grid-template-columns: 1fr;
  }

  .record-grid {
    grid-template-columns: 1fr;
  }

  .record-item {
    min-height: auto;
  }
}

@media (max-width: 540px) {
  .site-header {
    min-height: 66px;
    padding-inline: 16px;
  }

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

  .hero {
    min-height: 82svh;
    padding: 104px 18px 44px;
    background-position: 15% center;
  }

  .hero::before {
    background: rgba(247, 244, 237, 0.76);
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-summary {
    max-width: 28rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 320px;
  }

  .button {
    width: 100%;
  }

  .section,
  .contact-section {
    padding-inline: 18px;
  }

  .geo-panel {
    padding: 28px 20px;
  }

  .contact-link {
    width: 100%;
    max-width: 360px;
  }
}
