:root {
  --accent: #d5de41;
  --accent-dark: #879000;
  --ink: #181818;
  --muted: #5b5b5b;
  --paper: #ffffff;
  --soft: #f7f8ed;
  --line: #dfe3b1;
  --max-width: 1040px;
  --text-width: 860px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Sansation", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.68;
}

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

a {
  color: inherit;
  text-decoration-color: var(--accent-dark);
  text-decoration-thickness: 0.11em;
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  color: var(--accent-dark);
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(24, 24, 24, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 172px;
  height: auto;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 28px;
  font-weight: 700;
}

.top-nav a {
  text-decoration-color: transparent;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  text-decoration-color: var(--accent-dark);
}

.hero {
  display: grid;
  min-height: calc(100vh - 88px);
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
    var(--accent);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: min(100%, var(--max-width));
  margin: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: #3e4200;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 9vw, 6.8rem);
}

.hero-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: #252525;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 34px;
  font-weight: 700;
}

.contact-row a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.legal-section {
  padding: clamp(54px, 8vw, 92px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.legal-section-alt {
  background: var(--soft);
}

.legal-content {
  width: min(100%, var(--text-width));
  margin: 0 auto;
}

.legal-content h2 {
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 4px solid var(--accent);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.legal-content h3 {
  margin-top: 42px;
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-content h4 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.17rem;
}

.legal-content h5 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.legal-content p,
.legal-content address,
.legal-content ul {
  margin: 0 0 18px;
}

.legal-content address {
  font-style: normal;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-notice {
  padding: 18px;
  overflow-wrap: anywhere;
  background: #ffffff;
  border-left: 5px solid var(--accent);
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: #ffffff;
  background: #242424;
  font-size: 0.95rem;
}

.site-footer a {
  color: #ffffff;
  text-decoration-color: var(--accent);
}

.site-footer span {
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 700px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    min-height: 0;
  }

  .brand img {
    width: 150px;
  }

  .top-nav {
    justify-content: flex-start;
    gap: 14px 22px;
  }

  .hero {
    min-height: 560px;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .legal-content h2 {
    margin-bottom: 26px;
  }

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

@media (max-width: 420px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .legal-section {
    padding-right: 16px;
    padding-left: 16px;
  }
}
