/* Oneida Wolf, Draft 1. Tokens sampled from the shield mark. */

:root {
  --ink: #0C0A0B;
  --charcoal: #262626;
  --gold: #DFC389;
  --gold-deep: #9D7946;
  --gold-hover: #8A6438;
  --bronze: #574228;
  --navy: #14213D;
  --slate: #6B7280;
  --cloud: #F5F6F8;
  --white: #FFFFFF;
  --text: #23272E;
  --line-light: #E3E6EB;

  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold-deep); text-decoration: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: var(--ink);
  padding: 10px 16px; z-index: 100; font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }

/* Draft ribbon. Delete this block and the div at launch. */
.draft-bar {
  background: var(--bronze);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 12px;
}

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
  display: flex; align-items: center; gap: 28px;
  padding-block: 14px;
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--white);
}
.brand img { width: 34px; height: auto; }
.brand-name {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav { display: flex; gap: 26px; margin-left: auto; }
.site-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--white); }

.header-cta { margin-left: 12px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn-gold { background: var(--gold-deep); color: var(--ink); }
.btn-gold:hover { background: var(--gold-hover); color: var(--white); }
.btn-gold:active { background: var(--bronze); color: var(--white); }

.btn-outline { border-color: rgba(255, 255, 255, 0.55); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-small { padding: 10px 18px; font-size: 0.85rem; }

/* ---------- hero ---------- */

.hero { background: var(--navy); color: var(--white); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(64px, 9vw, 110px);
}

.hero-copy {
  border-left: 2px solid var(--gold-deep);
  padding-left: clamp(20px, 3vw, 34px);
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

h1 {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 800;
  font-size: clamp(2.5rem, 6.2vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  margin-bottom: 30px;
}

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

.hero-mark img {
  max-width: min(380px, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

/* ---------- credibility strip ---------- */

.strip { background: var(--ink); }
.strip p {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  padding-block: 16px;
}

/* ---------- sections ---------- */

.section { padding-block: clamp(72px, 10vw, 118px); }
.section-cloud { background: var(--cloud); }
.section-dark { background: var(--ink); color: rgba(255, 255, 255, 0.82); }

.label {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.label::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--gold-deep);
}
.section-dark .label { color: var(--gold); }
.section-dark .label::before { background: var(--gold); }

h2 {
  font-family: var(--font-display);
  font-stretch: 112%;
  font-weight: 700;
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 26ch;
}
.section-dark h2 { color: var(--white); }

.lead {
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 62ch;
}

/* ---------- divisions grid ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 26px;
  transition: border-color 160ms ease;
}
.card:hover { border-color: var(--gold-deep); }

.card-icon { color: var(--gold-deep); margin-bottom: 16px; }
.card-icon svg { width: 30px; height: 30px; }

.card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.card p { font-size: 0.95rem; color: var(--slate); line-height: 1.6; }

/* ---------- ownership ---------- */

.ownership-panel {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-left: 3px solid var(--gold-deep);
  border-radius: 0 12px 12px 0;
  padding: clamp(24px, 4vw, 36px);
  max-width: 760px;
  margin-top: 34px;
}

.ownership-copy { font-size: 1.14rem; line-height: 1.75; color: var(--text); }

.panel-note {
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--slate);
}

.location-line { margin-top: 26px; max-width: 62ch; }

/* ---------- pending flags ---------- */

.flag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A5A1E;
  background: #F6ECD9;
  border: 1px dashed #C9A45C;
  border-radius: 4px;
  padding: 3px 8px;
  vertical-align: middle;
  margin-left: 8px;
  white-space: nowrap;
}

.section-dark .flag,
.site-footer .flag {
  color: var(--gold);
  background: rgba(223, 195, 137, 0.12);
  border-color: rgba(223, 195, 137, 0.5);
}

.pending {
  border-bottom: 1.5px dashed #C9A45C;
  font-style: italic;
  color: var(--slate);
}
.section-dark .pending,
.site-footer .pending { color: rgba(255, 255, 255, 0.6); }

/* ---------- cta band ---------- */

.cta { background: var(--navy); color: var(--white); text-align: center; }
.cta h2 { color: var(--white); margin-inline: auto; }
.cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 46ch;
  margin: 0 auto 30px;
  font-size: 1.08rem;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  border-top: 2px solid var(--gold-deep);
  padding-block: 56px 40px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.foot-brand { max-width: 44ch; line-height: 1.7; }

.foot-contact { list-style: none; display: grid; gap: 10px; }

.foot-legal {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mark { order: 2; }
  .hero-mark img { max-width: 230px; margin-top: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
