:root {
  --ink: #17213a;
  --ink-2: #24384f;
  --blue: #356f8e;
  --green: #2f635c;
  --gold: #b68a2d;
  --gold-2: #d7b966;
  --paper: #f4f2ea;
  --paper-2: #ebe8dd;
  --white: #ffffff;
  --muted: #5f6872;
  --line: #d3d2c9;
  --shadow: 0 24px 60px rgba(23, 33, 58, 0.14);
  --max: 1120px;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 10px 28px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(211, 210, 201, 0.86);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand span {
  display: grid;
  gap: 0;
}
.brand strong {
  font-size: 0.95rem;
  line-height: 1;
}
.brand small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav-links a {
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 68svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero-bg,
.hero-tone,
.hero-symbol {
  position: absolute;
  pointer-events: none;
}
.hero-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-tone {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 242, 234, 0.98) 0%, rgba(244, 242, 234, 0.9) 46%, rgba(244, 242, 234, 0.54) 100%),
    linear-gradient(0deg, rgba(235, 232, 221, 0.96) 0%, rgba(244, 242, 234, 0.1) 52%);
}
.hero-symbol {
  right: max(-110px, calc((100vw - var(--max)) / 2 - 170px));
  bottom: -44px;
  width: min(56vw, 720px);
  height: auto;
  opacity: 0.88;
  filter: drop-shadow(0 26px 50px rgba(23, 33, 58, 0.16));
}
.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 42px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}
h1, h2, h3, p { letter-spacing: 0; }
h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  font-weight: 880;
  line-height: 0.98;
}
.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #344154;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.button.primary {
  color: #fffaf0;
  background: var(--ink);
}
.button.primary:hover {
  background: #0f1729;
}
.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(23, 33, 58, 0.22);
}
.button.secondary:hover {
  border-color: var(--ink);
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 980px;
  margin-top: 32px;
}
.hero-facts article {
  min-height: 112px;
  padding: 16px 18px 15px;
  border: 1px solid rgba(23, 33, 58, 0.14);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 36px rgba(23, 33, 58, 0.08);
}
.hero-facts span,
.principles span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}
.hero-facts strong {
  display: block;
  color: var(--ink);
  font-size: 1.04rem;
}
.hero-facts p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
}
.section + .section {
  border-top: 1px solid rgba(211, 210, 201, 0.88);
}
.section-head {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}
.section-head.compact {
  display: block;
  max-width: 760px;
}
h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  font-weight: 850;
  line-height: 1.04;
}
h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.25;
}
.text-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  color: #3e4b59;
  font-size: 1.06rem;
}
.text-grid p {
  margin: 0;
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}
.mission-crest {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(182, 138, 45, 0.38);
  border-radius: var(--radius);
  background: #130a1c;
  box-shadow: var(--shadow);
}
.mission-crest img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1535 / 1024;
  object-fit: cover;
}
.mission-layout .text-grid {
  grid-template-columns: 1fr;
}

.rule-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 32px;
  align-items: end;
  padding: 26px 0 30px;
  border-bottom: 1px solid var(--line);
}
.rule-panel p:last-child {
  margin: 0;
  padding-left: 22px;
  color: #3e4b59;
  border-left: 4px solid var(--gold);
  font-size: 1.06rem;
}
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.principles article,
.architecture-grid article {
  min-height: 228px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
  box-shadow: 0 16px 40px rgba(23, 33, 58, 0.06);
}
.principles p,
.architecture-grid p,
.contact p,
.steps span {
  color: var(--muted);
}

.symbol-section {
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(0, 1.05fr);
  gap: 46px;
  align-items: center;
}
.animal-figure {
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}
.animal-figure img {
  width: min(100%, 560px);
  height: auto;
  filter: drop-shadow(0 24px 46px rgba(23, 33, 58, 0.24));
}
.animal-figure figcaption {
  color: var(--muted);
  font-size: 0.92rem;
}
.symbol-copy p {
  max-width: 720px;
  color: #3e4b59;
  font-size: 1.06rem;
}
.symbol-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}
.symbol-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.symbol-list dt {
  color: var(--gold);
  font-weight: 850;
}
.symbol-list dd {
  margin: 0;
  color: var(--ink);
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.architecture-grid article {
  min-height: 190px;
}
.architecture-grid .wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(23, 33, 58, 0.96), rgba(47, 99, 92, 0.92)),
    url("/assets/ffw-hero-field.png") center / cover;
}
.architecture-grid .wide h3,
.architecture-grid .wide p {
  color: #fffaf0;
}
.architecture-grid .wide p {
  opacity: 0.86;
}

.steps {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.steps li {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1.45fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.steps strong {
  color: var(--ink);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-bottom: 84px;
}
.contact div {
  max-width: 760px;
}
.contact p {
  margin-bottom: 0;
  font-size: 1.06rem;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 28px;
  color: rgba(255, 250, 240, 0.72);
  background: var(--ink);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 20px;
  }
  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .hero {
    min-height: auto;
  }
  .hero-symbol {
    right: -210px;
    width: 610px;
    opacity: 0.34;
  }
  .hero-facts,
  .principles,
  .architecture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-head,
  .text-grid,
  .mission-layout,
  .rule-panel,
  .symbol-section,
  .steps li {
    grid-template-columns: 1fr;
  }
  .architecture-grid .wide {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
  }
  .brand small {
    display: none;
  }
  .nav-links {
    gap: 16px;
    font-size: 0.9rem;
  }
  .hero-inner {
    width: min(100% - 32px, var(--max));
    padding: 64px 0 40px;
  }
  h1 {
    font-size: clamp(2.5rem, 14vw, 4.1rem);
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .hero-facts,
  .principles,
  .architecture-grid {
    grid-template-columns: 1fr;
  }
  .architecture-grid .wide {
    grid-column: span 1;
  }
  .section {
    width: min(100% - 32px, var(--max));
    padding: 58px 0;
  }
  .rule-panel p:last-child {
    padding-left: 16px;
  }
  .mission-layout {
    gap: 24px;
  }
  .symbol-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .contact {
    align-items: stretch;
    flex-direction: column;
  }
}

.footer a {
  color: inherit;
}
