:root {
  color-scheme: light;
  --ink: #142033;
  --muted: #5d6878;
  --line: #d7dde6;
  --soft: #eef3f7;
  --panel: #ffffff;
  --blue: #1763a6;
  --green: #32786a;
  --gold: #b7852c;
  --shadow: 0 18px 45px rgba(20, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #f8fafc;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(215, 221, 230, 0.8);
  background: rgba(248, 250, 252, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #9fb3c9;
  background: #ffffff;
  color: var(--blue);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: #344255;
  font-size: 14px;
}

nav a {
  padding: 8px 0;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  min-height: calc(78vh - 72px);
  padding: 40px clamp(20px, 5vw, 72px) 44px;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.96), rgba(248, 250, 252, 0.82)),
    repeating-linear-gradient(0deg, rgba(20, 32, 51, 0.06), rgba(20, 32, 51, 0.06) 1px, transparent 1px, transparent 42px),
    repeating-linear-gradient(90deg, rgba(20, 32, 51, 0.04), rgba(20, 32, 51, 0.04) 1px, transparent 1px, transparent 42px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 19px;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  color: #3f4b5d;
  font-size: 19px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  font-weight: 750;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: var(--ink);
}

.hero-visual {
  overflow: hidden;
  border: 1px solid #c9d3df;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.notice {
  margin: 0 clamp(20px, 5vw, 72px);
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(20, 32, 51, 0.08);
  color: #344255;
  line-height: 1.65;
}

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

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.material-grid,
.regulatory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.material-grid article,
.document-grid a,
.document-grid div,
.regulatory-grid div,
.contact-card {
  border: 1px solid var(--line);
  background: var(--panel);
}

.material-grid article {
  min-height: 300px;
  padding: 24px;
}

.material-grid ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.material-grid li + li {
  margin-top: 8px;
}

.animal-origin {
  border-color: rgba(183, 133, 44, 0.58) !important;
}

.material-grid p,
.support-list p,
.document-grid span,
.regulatory-grid span,
.contact p,
.contact-card span {
  color: var(--muted);
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  background: var(--soft);
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-list div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid #cbd5df;
}

.support-list span {
  color: var(--blue);
  font-weight: 850;
}

.document-section {
  background: #ffffff;
}

.regulatory {
  background: #f8fafc;
  border-top: 1px solid rgba(215, 221, 230, 0.85);
  border-bottom: 1px solid rgba(215, 221, 230, 0.85);
}

.regulatory-grid div {
  display: grid;
  gap: 10px;
  padding: 24px;
  min-height: 170px;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.document-grid a,
.document-grid div {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 24px;
}

.document-grid a {
  transition: border-color 160ms ease, transform 160ms ease;
}

.document-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #ffffff;
}

.contact p {
  color: #d5dce6;
}

.contact-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 28px;
  color: var(--ink);
}

.contact-card p {
  margin: 10px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-card a {
  color: var(--blue);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 22px clamp(20px, 5vw, 72px);
  background: #0f1928;
  color: #d5dce6;
  font-size: 14px;
}

.site-footer span:first-child {
  color: #ffffff;
  font-weight: 800;
}

.site-footer a {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .material-grid,
  .regulatory-grid,
  .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 981px) {
  .hero-visual {
    height: min(560px, calc(100vh - 150px));
  }

  .hero-visual img {
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    gap: 22px;
    padding: 28px 20px 20px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-visual {
    height: 120px;
  }

  .hero-visual img {
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  .material-grid,
  .regulatory-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }

  .notice {
    margin-top: 0;
  }
}
