/* CPS_585_marketingidaho — website6 — design: high-contrast
   Pure black + electric yellow accent. ALL-CAPS Archivo Black H1.
   Alternating black/white sections. Yellow callout strips. Square edges. */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }

:root {
  --bg: #ffffff;
  --text: #000000;
  --accent: #ffd400;
  --muted: #3a3a3a;
  --surface: #000000;
  --heading-font: 'Archivo Black', 'Arial Black', sans-serif;
  --body-font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- HEADER ---------- */
.site-header {
  background: #000000;
  border-bottom: 4px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 24px;
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-block img {
  height: 52px;
  width: auto;
}
.brand-name {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.site-nav a {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 14px;
  border: 2px solid transparent;
  transition: color 120ms ease, background 120ms ease, border-color 120ms ease;
}
.site-nav a:hover {
  color: #000000;
  background: var(--accent);
}
.site-nav a.is-active {
  color: var(--accent);
  border-color: var(--accent);
}

/* ---------- HERO (split) ---------- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  background: #000000;
}
.hero-text {
  background: #000000;
  color: #ffffff;
  padding: 84px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-text h1 {
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-text .hero-sub {
  font-size: 1.15rem;
  line-height: 1.55;
  color: #ffffff;
  max-width: 540px;
  margin: 0;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
}
.hero-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
}

/* ---------- MAIN / SECTIONS ---------- */
main { display: block; }

.section {
  padding: 88px 0;
}
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* alternating inverse sections */
.section.invert {
  background: #000000;
  color: #ffffff;
}
.section.invert h2,
.section.invert h3,
.section.invert p strong { color: #ffffff; }
.section.invert a { color: var(--accent); }

.section h2 {
  font-family: var(--heading-font);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.05;
  margin: 0 0 24px;
}
.section h3 {
  font-family: var(--heading-font);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.15rem;
  margin: 36px 0 12px;
}

/* yellow callout strip on key H2s */
.callout {
  display: inline;
  background: var(--accent);
  color: #000000;
  padding: 0 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section p {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.75;
}
.section p a {
  color: #000000;
  background: var(--accent);
  padding: 0 6px;
  text-decoration: none;
  font-weight: 700;
}
.section.invert p a {
  color: #000000;
}

/* inline images */
.figure {
  margin: 36px 0;
}
.figure img {
  border-left: 4px solid var(--accent);
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}
.figure.no-rule img {
  border-left: 0;
}
.figcap {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 700;
}
.section.invert .figcap { color: #cccccc; }

/* big yellow stat strip */
.yellow-strip {
  background: var(--accent);
  color: #000000;
  padding: 48px 0;
  border-top: 6px solid #000000;
  border-bottom: 6px solid #000000;
}
.yellow-strip-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.yellow-strip h2 {
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.yellow-strip p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 820px;
}

/* lists */
.section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.section ul li {
  position: relative;
  padding: 8px 0 8px 36px;
  font-size: 1.02rem;
  line-height: 1.65;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.section.invert ul li {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 22px;
  height: 6px;
  background: var(--accent);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 72px 28px 28px;
  border-top: 6px solid var(--accent);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
}
.footer-brand .brand-name {
  display: inline-block;
  margin-bottom: 12px;
}
.footer-brand p {
  color: #cccccc;
  margin: 0 0 18px;
  max-width: 460px;
  line-height: 1.6;
}
.footer-brand .copyline {
  color: #888;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-top: 32px;
  text-transform: uppercase;
}
.footer-links h4 {
  color: var(--accent);
  font-family: var(--heading-font);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin: 0 0 10px; }
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 120ms ease, border-color 120ms ease;
}
.footer-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
  }
  .hero-text {
    padding: 56px 28px;
  }
  .hero-image {
    min-height: 280px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 20px;
  }
  .site-nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav a {
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  .section { padding: 64px 0; }
  .section-inner { padding: 0 20px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .yellow-strip { padding: 36px 0; }
  .yellow-strip-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero-text { padding: 44px 20px; }
  .hero-text h1 { font-size: 2.4rem; }
  .section h2 { font-size: 1.6rem; }
}

/* ---------- VISIT US ---------- */
.visit-us {
  background: #000000;
  color: #ffffff;
  padding: 88px 28px;
  border-top: 6px solid var(--accent);
  border-bottom: 6px solid var(--accent);
}
.visit-us-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.visit-us h2 {
  font-family: var(--heading-font);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.05;
  margin: 0 0 24px;
  color: var(--accent);
}
.visit-us .visit-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.visit-us .visit-label {
  font-family: var(--heading-font);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}
.visit-us address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #ffffff;
  border-left: 4px solid var(--accent);
  padding-left: 18px;
}
.visit-us .visit-phone {
  font-family: var(--heading-font);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: transparent;
  border-left: 4px solid var(--accent);
  padding: 4px 0 4px 18px;
  margin: 0;
}
.visit-us .visit-map {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 4 / 3;
  border: 4px solid var(--accent);
  background: #000000;
}
.visit-us .visit-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .visit-us-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .visit-us { padding: 64px 20px; }
}
