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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #FAF7F0;
  color: #141414;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  color: #B8863B;
  text-decoration: none;
}

a:hover {
  color: #8a6426;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.shield {
  position: relative;
  display: inline-block;
  flex: none;
  width: 13px;
  height: 14px;
  background-color: #B8863B;
  clip-path: polygon(50% 0%, 96% 4%, 96% 62%, 50% 100%, 4% 62%, 4% 4%);
}

.shield::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 45%;
  height: 1.5px;
  background-color: #FAF7F0;
}

.shield-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FAF7F0;
  border-bottom: 1px solid #B8863B;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}

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

.brand-shield {
  width: 30px;
  height: 32px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #141414;
}

.brand-caption {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B8863B;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #141414;
}

.nav-link:hover {
  color: #B8863B;
}

.nav-link .shield::after {
  display: none;
}

.nav-link .shield::before {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: #FAF7F0;
  clip-path: polygon(50% 0%, 96% 4%, 96% 62%, 50% 100%, 4% 62%, 4% 4%);
}

.nav-link.active {
  color: #B8863B;
}

.nav-link.active .shield::before {
  display: none;
}

.nav-link.active .shield::after {
  display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid #B8863B;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 20px;
  height: 2px;
  background-color: #141414;
}

.card-hero {
  padding: 76px 0 84px;
  background-color: #FAF7F0;
}

.card-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.card-hero-copy {
  flex: 1;
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  background-color: #B8863B;
  color: #141414;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.card-hero h1 {
  font-size: 54px;
  line-height: 1.08;
  font-weight: 800;
  color: #141414;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.card-hero h1 .gold-word {
  color: #B8863B;
}

.card-hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: #141414;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: #B8863B;
  color: #141414;
  border-color: #B8863B;
}

.btn-primary:hover {
  background-color: #8a6426;
  color: #FAF7F0;
}

.btn-outline {
  background-color: transparent;
  color: #B8863B;
  border-color: #B8863B;
}

.btn-outline:hover {
  background-color: #B8863B;
  color: #FAF7F0;
}

.btn-dark {
  background-color: #141414;
  color: #FAF7F0;
  border-color: #141414;
}

.btn-dark:hover {
  background-color: #B8863B;
  color: #141414;
  border-color: #B8863B;
}

.btn-ghost {
  background-color: transparent;
  color: #141414;
  border-color: #141414;
}

.btn-ghost:hover {
  background-color: #141414;
  color: #FAF7F0;
}

.card-hero-art {
  flex: 0 0 auto;
}

.member-card {
  position: relative;
  width: 400px;
  height: 238px;
  border-radius: 18px;
  background-color: #141414;
  border: 1px solid #B8863B;
  overflow: hidden;
}

.member-chip {
  position: absolute;
  top: 26px;
  left: 26px;
  width: 44px;
  height: 30px;
  border-radius: 6px;
  background-color: #B8863B;
  border: 1px solid #F3E5C5;
}

.member-card-shield {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 20px;
  height: 22px;
}

.member-band {
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  height: 9px;
  background-color: #B8863B;
}

.member-dots {
  position: absolute;
  top: 128px;
  left: 26px;
  display: flex;
  gap: 14px;
}

.dot-group {
  display: flex;
  gap: 6px;
}

.dot-group i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #FAF7F0;
}

.member-card-word {
  position: absolute;
  bottom: 24px;
  left: 26px;
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 800;
  color: #FAF7F0;
}

.member-card-shield-small {
  position: absolute;
  bottom: 26px;
  right: 26px;
  width: 18px;
  height: 20px;
}

.board-list {
  padding: 96px 0 88px;
  background-color: #FAF7F0;
}

.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #B8863B;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: #141414;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.section-head p {
  font-size: 17px;
  color: #141414;
  max-width: 720px;
}

.section-head {
  margin-bottom: 48px;
}

.board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #B8863B;
  border-left: 1px solid #B8863B;
}

.board-item {
  padding: 34px 30px;
  border-right: 1px solid #B8863B;
  border-bottom: 1px solid #B8863B;
  background-color: #FAF7F0;
}

.board-index {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #B8863B;
  margin-bottom: 12px;
}

.board-item h3 {
  font-size: 22px;
  font-weight: 800;
  color: #141414;
  margin-bottom: 10px;
}

.board-item p {
  font-size: 15px;
  color: #141414;
}

.yield-band {
  padding: 88px 0;
  background-color: #B8863B;
}

.yield-head {
  text-align: center;
  margin-bottom: 52px;
}

.yield-intro {
  font-size: 16px;
  color: #141414;
  max-width: 720px;
  margin: 18px auto 0;
  line-height: 1.75;
}

.yield-head .section-eyebrow {
  color: #141414;
}

.yield-head h2 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: #141414;
  letter-spacing: -0.5px;
}

.yield-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.yield-num {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: #141414;
  letter-spacing: -1px;
}

.yield-label {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #141414;
}

.route-duo {
  padding: 96px 0;
  background-color: #FAF7F0;
}

.route-head {
  margin-bottom: 52px;
}

.route-head p {
  font-size: 17px;
  color: #141414;
  max-width: 760px;
}

.route-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 44px 0;
}

.route-row + .route-row {
  border-top: 1px solid #B8863B;
}

.route-copy h3 {
  font-size: 26px;
  font-weight: 800;
  color: #141414;
  margin-bottom: 12px;
}

.route-copy p {
  font-size: 16px;
  color: #141414;
  margin-bottom: 20px;
}

.route-checks {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.route-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #141414;
}

.check-square {
  width: 14px;
  height: 14px;
  background-color: #B8863B;
  border-radius: 2px;
  flex: none;
}

.route-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.route-visual .shield {
  width: 92px;
  height: 104px;
}

.route-visual .shield::before {
  content: "";
  position: absolute;
  inset: 8px;
  background-color: #FAF7F0;
  clip-path: polygon(50% 0%, 96% 4%, 96% 62%, 50% 100%, 4% 62%, 4% 4%);
}

.route-visual .shield::after {
  left: 10%;
  right: 10%;
  top: 46%;
}

.creed-panel {
  background-color: #141414;
  border-left: 10px solid #B8863B;
  padding: 88px 0;
}

.creed-statement {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 800;
  color: #FAF7F0;
  max-width: 920px;
}

.creed-sub {
  margin-top: 20px;
  font-size: 16px;
  color: #F3E5C5;
  max-width: 720px;
}

.cta-section {
  padding: 96px 0;
  background-color: #FAF7F0;
  text-align: center;
}

.cta-section h2 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: #141414;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 17px;
  color: #141414;
  max-width: 640px;
  margin: 0 auto 34px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.plate-footer {
  background-color: #141414;
  border-top: 2px solid #B8863B;
  padding-top: 48px;
}

.footer-row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 38px;
}

.footer-brand .brand-name {
  color: #FAF7F0;
}

.footer-brand .brand-caption {
  color: #B8863B;
}

.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #FAF7F0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #B8863B;
}

.footer-contact {
  color: #F3E5C5;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: right;
}

.footer-hairline {
  border-top: 1px solid #F3E5C5;
}

.footer-legal {
  position: relative;
  padding: 24px 0 34px;
  text-align: center;
  color: #FAF7F0;
  font-size: 13px;
  line-height: 1.9;
}

.footer-legal a {
  color: #F3E5C5;
  text-decoration: underline;
}

.footer-legal a:hover {
  color: #FAF7F0;
}

.footer-shield {
  position: absolute;
  left: 0;
  top: 28px;
  width: 15px;
  height: 16px;
}

.page-hero {
  padding: 68px 0 58px;
  background-color: #FAF7F0;
  border-bottom: 1px solid #F3E5C5;
}

.page-hero h1 {
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
  color: #141414;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 17px;
  color: #141414;
  max-width: 760px;
}

.lead-block {
  padding: 64px 0 16px;
}

.lead-block p {
  font-size: 18px;
  color: #141414;
  max-width: 860px;
}

.service-list {
  padding: 40px 0 24px;
}

.service-block {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid #B8863B;
}

.service-num {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #B8863B;
}

.service-block h2 {
  font-size: 27px;
  font-weight: 800;
  color: #141414;
  margin-bottom: 12px;
}

.service-block p {
  font-size: 16px;
  color: #141414;
  margin-bottom: 12px;
  max-width: 760px;
}

.service-block p:last-child {
  margin-bottom: 0;
}

.process-band {
  background-color: #141414;
  padding: 88px 0;
}

.process-band .section-eyebrow {
  color: #B8863B;
}

.process-band .section-head h2 {
  color: #FAF7F0;
}

.process-band .section-head p {
  color: #F3E5C5;
}

.process-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: #B8863B;
  border: 1px solid #B8863B;
}

.process-step {
  background-color: #141414;
  padding: 30px;
}

.step-no {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #B8863B;
  margin-bottom: 10px;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 800;
  color: #FAF7F0;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 15px;
  color: #F3E5C5;
}

.stat-row {
  display: flex;
  background-color: #F3E5C5;
  border: 1px solid #B8863B;
  margin: 64px 0 0;
}

.stat-cell {
  flex: 1;
  padding: 32px 20px;
  text-align: center;
}

.stat-cell + .stat-cell {
  border-left: 1px solid #B8863B;
}

.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: #141414;
  line-height: 1;
}

.stat-label {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #141414;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  padding: 72px 0 16px;
}

.form-card {
  background-color: #141414;
  border: 1px solid #B8863B;
  border-radius: 10px;
  padding: 36px;
}

.form-card h2 {
  color: #FAF7F0;
  font-size: 24px;
  margin-bottom: 8px;
}

.form-card > p {
  color: #F3E5C5;
  font-size: 14px;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  color: #F3E5C5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  color: #141414;
  background-color: #FAF7F0;
  border: 1px solid #B8863B;
  border-radius: 4px;
  font-family: inherit;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid #F3E5C5;
  outline-offset: 1px;
}

.form-note {
  color: #F3E5C5;
  font-size: 13px;
  margin-top: 14px;
  line-height: 1.7;
}

.form-status {
  display: none;
  color: #FAF7F0;
  background-color: #B8863B;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info h2 {
  font-size: 26px;
  font-weight: 800;
  color: #141414;
  margin-bottom: 6px;
}

.contact-info > p {
  font-size: 16px;
  color: #141414;
  margin-bottom: 22px;
}

.info-line {
  padding: 16px 0;
  border-bottom: 1px solid #B8863B;
}

.info-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B8863B;
  margin-bottom: 4px;
}

.info-value {
  font-size: 16px;
  color: #141414;
}

.faq-wrap {
  padding: 88px 0 96px;
}

.faq-head {
  margin-bottom: 32px;
}

.faq-item {
  border: 1px solid #141414;
  border-top: none;
}

.faq-item:first-of-type {
  border-top: 1px solid #141414;
}

.faq-q {
  width: 100%;
  background-color: #FAF7F0;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #141414;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q:hover {
  background-color: #F3E5C5;
}

.faq-marker {
  color: #B8863B;
  font-size: 20px;
  font-weight: 800;
  flex: none;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a p {
  padding: 0 20px 18px;
  color: #141414;
  font-size: 15px;
}

.js .fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .card-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .card-hero h1 {
    font-size: 42px;
  }

  .route-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .route-visual {
    min-height: 120px;
  }

  .route-row:nth-child(odd) .route-visual {
    order: -1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .yield-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .stat-row {
    flex-direction: column;
  }

  .stat-cell + .stat-cell {
    border-left: none;
    border-top: 1px solid #B8863B;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: #FAF7F0;
    border-bottom: 1px solid #B8863B;
    padding: 8px 24px 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 13px 6px;
    border-top: 1px solid #F3E5C5;
  }

  .nav-link:first-child {
    border-top: none;
  }

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

  .board-item {
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .card-hero {
    padding: 56px 0 64px;
  }

  .card-hero h1 {
    font-size: 34px;
  }

  .member-card {
    width: 320px;
    height: 190px;
  }

  .member-band {
    top: 74px;
    height: 8px;
  }

  .member-dots {
    top: 96px;
    gap: 10px;
  }

  .member-card-word {
    font-size: 12px;
  }

  .yield-num {
    font-size: 40px;
  }

  .creed-statement {
    font-size: 28px;
  }

  .section-head h2,
  .cta-section h2,
  .yield-head h2 {
    font-size: 30px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .footer-legal {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-shield {
    left: 4px;
  }

  .form-card {
    padding: 26px;
  }
}
