@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&display=swap");

:root {
  --ink: #16202a;
  --muted: #586773;
  --paper: #ffffff;
  --surface: #ffffff;
  --accent: #d65c35;
  --line: #d9dfdc;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter Tight", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
}

a {
  color: var(--accent);
  text-underline-offset: 0.18em;
}
a:hover {
  color: #9f351c;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #1d6b78;
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.65rem 0.9rem;
  color: #fff;
  background: var(--ink);
}
.skip-link:focus {
  top: 1rem;
}

.site-header,
.site-footer {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.site-header {
  padding: 1.25rem 1.5rem;
}
.header-inner,
.footer-inner,
.page-wrap {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand img {
  display: block;
  width: min(270px, 58vw);
  height: auto;
}
.site-nav ul,
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-nav a {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}

main {
  padding: clamp(3rem, 8vw, 7rem) 1.5rem;
}
article {
  width: min(100%, 780px);
  margin-inline: auto;
}
article.wide {
  width: min(100%, 940px);
}
h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
}
h1 {
  margin: 0 0 2.8rem;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  letter-spacing: -0.02em;
}
h2 {
  margin: 2.8rem 0 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
h3 {
  margin: 2rem 0 0.5rem;
  font-size: 1.45rem;
}
p,
ul,
ol {
  margin: 0 0 1.3rem;
}
article ul,
article ol {
  padding-left: 1.4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}
.hero-grid h1 {
  margin-bottom: 0;
}
figure {
  margin: 2rem 0;
}
figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.hero-image {
  width: 100%;
  max-width: none;
  margin: 2rem 0 2.5rem;
}
.eyebrow {
  color: var(--accent);
  font:
    700 0.8rem/1.2 Arial,
    sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cta {
  margin-top: 2.5rem;
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--accent);
  background: #eef1ed;
}
.site-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  padding: 1.5rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: baseline;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.footer-nav a {
  color: var(--muted);
}
@media (max-width: 720px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-nav ul {
    gap: 0.7rem 1rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-image {
    width: 100%;
    max-width: 420px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
