:root {
  --bg: #0A1526;
  --bg-alt: #101F38;
  --text: #EDEBE6;
  --muted: #A3AFC2;
  --accent: #D6B57A;
  --hairline: #1D2E4E;
  --navy-core: #10274F;
  --gold-mid: #C9A570;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
}

::selection {
  background-color: var(--accent);
  color: var(--bg);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bg-alt);
  color: var(--accent);
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 10;
}

.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
}

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

.brand-mark {
  width: 26px;
  height: auto;
  flex: none;
}

.wordmark {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.header-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 4px;
}

section {
  padding: 80px 24px;
}

section > h2,
section > p,
section > ul,
.hero > *,
.contact > a {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1080px;
  height: 420px;
  background-image: radial-gradient(58% 46% at 50% 0%, rgba(201, 165, 112, 0.09), transparent 70%);
  pointer-events: none;
}

.hero > * {
  position: relative;
}

.hero-motif {
  display: block;
  width: min(420px, 72vw);
  height: auto;
  margin: 0 auto 32px;
}

.hero h1 {
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero-sub {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--muted);
  margin-bottom: 40px;
}

.button {
  display: inline-block;
  margin: 0 auto;
  background-color: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  padding: 14px 36px;
  min-height: 48px;
  line-height: 20px;
  border-radius: 8px;
}

.button:hover {
  filter: brightness(1.08);
}

.problem {
  background-color: var(--bg-alt);
}

h2 {
  font-size: clamp(26px, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

section p + p,
p.list-lead {
  margin-top: 20px;
}

p.list-lead {
  font-weight: 600;
}

ul {
  list-style: none;
}

.verbs li,
.bullets li {
  padding-left: 24px;
  position: relative;
  margin-top: 14px;
}

.verbs li::before,
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 10px;
  background-color: var(--accent);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.capability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.capability-grid li {
  background-color: var(--bg-alt);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 24px;
}

.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 12px;
}

.capability-grid h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.capability-grid p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.why {
  background-color: var(--bg-alt);
}

.about {
  background-color: var(--bg-alt);
}

.contact {
  text-align: center;
  padding-bottom: 48px;
}

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

.contact p {
  color: var(--muted);
}

.email-link {
  display: inline-block;
  margin-top: 32px;
  color: var(--accent);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  text-decoration: none;
  min-height: 44px;
}

.email-link:hover {
  text-decoration: underline;
}

.headshot {
  display: block;
  width: 240px;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  margin: 0 auto 32px;
}

.site-footer {
  padding: 40px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.abn {
  margin-top: 6px;
}

.linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: 12px;
  color: var(--muted);
  border-radius: 8px;
}

.linkedin:hover {
  color: var(--accent);
}

@media (min-width: 700px) {
  section {
    padding: 120px 24px;
  }

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