/*
Theme Name: Rainy Lake Tech
Description: Custom theme reproducing the rainylaketech.ca static site design.
Author: Rainy Lake Tech
Version: 1.0
*/
/* ============================================================
   Rainy Lake Tech — Design Tokens + Site Styles
   Heritage Outfitter direction · v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Palette — "Wild Pines" */
  --rust:          #a8401e;
  --rust-deep:     #842f14;
  --rust-bright:   #c4502a;
  --pine:          #2a3a2a;
  --pine-deep:     #1a2820;
  --pine-soft:     #4a5a4a;
  --cream:         #efe7d2;
  --cream-deep:    #dcd3b8;
  --bone:          #f7f1e1;
  --sunflower:     #e8a040;
  --sunflower-2:   #d68820;
  --cocoa:         #3a2a1f;
  --cocoa-mid:     #5a4435;
  --cocoa-dim:     #8a7560;

  /* Borders */
  --border-1: rgba(58, 42, 31, 0.12);
  --border-2: rgba(58, 42, 31, 0.22);
  --border-3: rgba(58, 42, 31, 0.40);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(58, 42, 31, 0.08);
  --shadow-md: 0 8px 24px rgba(58, 42, 31, 0.12);
  --shadow-lg: 0 16px 48px rgba(58, 42, 31, 0.16);
  --shadow-xl: 0 24px 60px rgba(58, 42, 31, 0.20);

  /* Motion */
  --ease-out:  cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-fast:  120ms;
  --dur-base:  180ms;

  /* Radii */
  --radius-xs:   4px;
  --radius-sm:   4px;
  --radius-md:   6px;
  --radius-lg:   10px;
  --radius-xl:   14px;
  --radius-pill: 999px;

  /* Type */
  --font-slab:      'Roboto Slab', 'Rockwell', Georgia, serif;
  --font-condensed: 'Oswald', 'Impact', 'Helvetica Neue Condensed', sans-serif;
  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:      'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Sub-page compatibility aliases (map old names → heritage tokens) */
  --sand:    var(--bone);
  --sand2:   var(--cream);
  --white:   var(--bone);
  --navy:    var(--pine-deep);
  --navy2:   var(--pine);
  --forest:  var(--rust);
  --forest2: var(--rust-deep);
  --flight:  var(--cream);
  --fmid:    var(--cream-deep);
  --text:    var(--cocoa);
  --text2:   var(--cocoa-mid);
  --text3:   var(--cocoa-dim);
  --border:  rgba(58, 42, 31, 0.22);
  --border2: rgba(58, 42, 31, 0.40);
  --r:       var(--radius-md);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cocoa);
  background: var(--bone);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--rust); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: var(--font-slab);
  font-weight: 700;
  color: var(--pine-deep);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 700;
  color: var(--rust);
}

.slabel {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  display: block;
  margin-bottom: 14px;
}

/* ============================================================
   NAV — flat heritage row (no glass)
   ============================================================ */
nav {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 100;
  background: var(--bone);
  border-bottom: 1px solid var(--border-2);
  height: 64px;
}
.nav-in {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-slab); font-weight: 800; font-size: 18px;
  color: var(--pine-deep); letter-spacing: -0.01em;
}
.logo em { font-style: italic; color: var(--rust); font-weight: 700; }

.nav-links { list-style: none; display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-family: var(--font-condensed);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cocoa-mid);
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a:hover { color: var(--rust); }
.nav-cta {
  background: var(--rust); color: var(--cream) !important;
  padding: 10px 16px; border-radius: var(--radius-sm);
  letter-spacing: 0.18em; font-weight: 600;
  box-shadow: 0 2px 0 var(--rust-deep);
}
.nav-cta:hover { background: var(--rust-deep); color: var(--cream) !important; }

/* ============================================================
   HERO — cream bg with hairline grid
   ============================================================ */
.hero {
  padding: 144px 0 88px;
  position: relative;
  background: var(--bone);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--border-1) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-1) 1px, transparent 1px);
  background-size: 56px 56px; opacity: 0.6;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
}
.hero-in { position: relative; z-index: 1; max-width: 880px; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  padding: 6px 14px; border-radius: var(--radius-pill);
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rust);
  margin-bottom: 28px;
}
.kdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rust); animation: blink 2.5s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-size: clamp(44px, 6vw, 68px);
  margin-bottom: 16px; letter-spacing: -0.025em;
  line-height: 1;
}
.hero-services {
  font-family: var(--font-condensed);
  font-size: 12px; color: var(--rust); font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 18px; color: var(--cocoa-mid); max-width: 620px;
  line-height: 1.6; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-sm);
  font-family: var(--font-condensed); font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 180ms var(--ease-out);
}
.btn-green { background: var(--pine-deep); color: var(--cream); box-shadow: 0 2px 0 #0d1612; }
.btn-green:hover { background: var(--pine); transform: translateY(-1px); }
.btn-rust { background: var(--rust); color: var(--cream); box-shadow: 0 2px 0 var(--rust-deep); }
.btn-rust:hover { background: var(--rust-deep); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--cocoa);
  border: 2px solid var(--cocoa);
}
.btn-outline:hover { background: var(--cocoa); color: var(--cream); }
.btn-white {
  background: var(--cream); color: var(--pine-deep);
  border: 1px solid var(--cream-deep);
}
.btn-white:hover { background: #fff; }

.chips { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.chip-label {
  font-family: var(--font-condensed);
  font-size: 11px; color: var(--cocoa-dim); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em; margin-right: 6px;
}
.chip {
  font-family: var(--font-condensed);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cocoa);
  background: var(--cream); border: 1px solid var(--cream-deep);
  padding: 7px 14px; border-radius: var(--radius-pill);
  transition: all 150ms var(--ease-out);
}
.chip:hover { background: var(--rust); border-color: var(--rust); color: var(--cream); }

.div { border: none; height: 1px; background: var(--border-2); margin: 0; }

section:not(.hero) { padding: 88px 0; background: var(--bone); }
section > .wrap > h2 { font-size: clamp(34px, 4.4vw, 50px); margin-bottom: 16px; line-height: 1.05; }
.sdesc { font-size: 17px; color: var(--cocoa-mid); max-width: 720px; line-height: 1.6; margin-bottom: 48px; }

/* ============================================================
   CUSTOM SYSTEMS GRID
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.svc-tile {
  background: var(--cream); border: 1px solid var(--border-2);
  border-radius: var(--radius-md); padding: 24px;
  transition: all 180ms var(--ease-out);
}
.svc-tile:hover {
  background: #fff; border-color: var(--cocoa);
  box-shadow: var(--shadow-md);
}
.svc-tile-icon { font-size: 24px; display: block; margin-bottom: 12px; }
.svc-tile-name {
  font-family: var(--font-slab); font-weight: 700; font-size: 17px;
  color: var(--pine-deep); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.svc-tile-desc { font-size: 13px; color: var(--cocoa-mid); line-height: 1.55; }
.svc-tile--cta {
  background: var(--pine-deep); border-color: var(--pine-deep);
  color: var(--cream);
  display: flex; flex-direction: column; justify-content: space-between;
}
.svc-tile--cta:hover { background: var(--pine); border-color: var(--pine); }
.svc-tile--cta .svc-tile-name { color: var(--cream); }
.svc-tile--cta .svc-tile-desc { color: var(--cream-deep); }

/* ============================================================
   AI PILLS
   ============================================================ */
.ai-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ai-pill {
  background: var(--bone); border: 1px solid var(--border-2);
  border-radius: var(--radius-md); padding: 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all 180ms var(--ease-out);
}
.ai-pill:hover { border-color: var(--rust); box-shadow: var(--shadow-md); }
.ai-pill-icon {
  font-size: 22px; flex-shrink: 0;
  background: var(--cream); border: 1px solid var(--cream-deep);
  width: 44px; height: 44px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}
.ai-pill-name {
  font-family: var(--font-slab); font-weight: 700; font-size: 16px;
  color: var(--pine-deep); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.ai-pill-desc { font-size: 13px; color: var(--cocoa-mid); line-height: 1.55; }

/* ============================================================
   IT GRID
   ============================================================ */
.also-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.also-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--cream); border: 1px solid var(--border-2);
  border-radius: var(--radius-md); padding: 20px;
  position: relative; transition: all 180ms var(--ease-out);
}
.also-card:hover {
  background: #fff; border-color: var(--cocoa);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.also-icon { font-size: 22px; margin-bottom: 10px; }
.also-name {
  font-family: var(--font-slab); font-weight: 700; font-size: 15px;
  color: var(--pine-deep); margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.also-desc { font-size: 12px; color: var(--cocoa-mid); line-height: 1.55; }

/* ============================================================
   POS TAGS
   ============================================================ */
.pos-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.pos-tag {
  font-family: var(--font-condensed);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cocoa);
  background: var(--bone); border: 1px solid var(--border-2);
  padding: 10px 16px; border-radius: var(--radius-md);
}

/* ============================================================
   FIELD TILES
   ============================================================ */
.field-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.field-tile {
  background: var(--bone); border: 1px solid var(--border-2);
  border-radius: var(--radius-md); padding: 22px;
  transition: all 180ms var(--ease-out);
}
.field-tile:hover { border-color: var(--rust); box-shadow: var(--shadow-md); }
.field-tile-icon { font-size: 22px; display: block; margin-bottom: 10px; }
.field-tile-name {
  font-family: var(--font-slab); font-weight: 700; font-size: 15px;
  color: var(--pine-deep); margin-bottom: 6px;
}
.field-tile-desc { font-size: 13px; color: var(--cocoa-mid); line-height: 1.55; }
.field-note {
  background: var(--cream); border: 1px solid var(--cream-deep);
  border-radius: var(--radius-md); padding: 14px 18px;
  font-family: var(--font-condensed);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rust); font-weight: 600;
}

/* ============================================================
   CREATIVE MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee-track {
  display: flex; gap: 14px; width: max-content;
  animation: slide 35s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.creative-card {
  flex: 0 0 300px;
  background: var(--bone); border: 1px solid var(--border-2);
  border-radius: var(--radius-md); padding: 20px;
}
.creative-icon { font-size: 22px; margin-bottom: 10px; }
.creative-name {
  font-family: var(--font-slab); font-weight: 700; font-size: 15px;
  color: var(--pine-deep); margin-bottom: 6px;
}
.creative-desc { font-size: 12px; color: var(--cocoa-mid); line-height: 1.55; }

/* ============================================================
   WHO & WHERE
   ============================================================ */
.who-where { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.who-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.who-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--cocoa);
  padding: 10px 12px; background: var(--cream);
  border: 1px solid var(--border-2); border-radius: var(--radius-sm);
}
.area-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.atag {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cocoa);
  background: var(--bone); border: 1px solid var(--border-2);
  padding: 7px 14px; border-radius: var(--radius-pill);
}

/* ============================================================
   CTA BOX — pine ground, rust banner accent
   ============================================================ */
.cta-box {
  background: var(--pine-deep); border-radius: var(--radius-lg);
  padding: 56px 48px; color: var(--cream);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl);
  border-top: 8px solid var(--rust);
}
.cta-box::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.91  0 0 0 0 0.83  0 0 0 0 0.72  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
}
.cta-box h2 { color: var(--cream); font-size: clamp(32px, 4vw, 46px); margin-bottom: 14px; position: relative; }
.cta-box h2 em { color: var(--sunflower); font-style: italic; }
.cta-box p { font-size: 16px; color: var(--cream-deep); max-width: 620px; margin-bottom: 28px; line-height: 1.6; position: relative; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; position: relative; }
.cta-sub {
  display: flex; gap: 24px; flex-wrap: wrap; position: relative;
  font-family: var(--font-condensed);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-deep); font-weight: 600;
}
.cta-sub span { display: inline-flex; align-items: center; gap: 8px; }
.cta-sub span::before { content: '◆'; color: var(--sunflower); }

/* ============================================================
   CONTACT FORM — lives inside .cta-box
   ============================================================ */
.cta-divider {
  display: flex; align-items: center; gap: 16px; margin: 32px 0 28px;
  position: relative; color: var(--cream-deep);
  font-family: var(--font-condensed); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.cta-divider::before, .cta-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(239,231,210,0.16);
}
.contact-form { position: relative; max-width: 560px; }
.contact-form .form-row {
  display: grid; grid-template-columns: 1fr; gap: 4px 16px;
}
@media (min-width: 600px) {
  .contact-form .form-row { grid-template-columns: 1fr 1fr; }
}
.contact-form .form-group {
  margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px;
}
.contact-form label {
  font-family: var(--font-condensed); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-deep);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-sans); font-size: 15px;
  padding: 11px 14px; border-radius: var(--radius-sm);
  border: 1px solid rgba(239,231,210,0.22);
  background: rgba(239,231,210,0.06); color: var(--cream);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(239,231,210,0.4); }
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--sunflower); outline-offset: 1px; }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .hp-field {
  position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0;
}
.contact-form .form-submit { margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #0d1612; color: var(--cream-deep); padding: 56px 0 48px; }
.foot-in {
  display: grid; grid-template-columns: 1fr auto;
  gap: 56px; align-items: start;
}
.foot-logo { font-family: var(--font-slab); font-weight: 800; color: var(--cream); font-size: 18px; letter-spacing: -0.01em; }
.foot-logo em { font-style: italic; color: var(--sunflower); font-weight: 700; }
.foot-copy { font-size: 12px; color: var(--cream-deep); opacity: 0.55; margin-top: 6px; line-height: 1.6; max-width: 320px; }

/* Two-column link directory */
.foot-cols { display: flex; flex-wrap: wrap; gap: 40px 32px; }
.foot-col { display: flex; flex-direction: column; gap: 10px; min-width: 130px; }
.foot-col-head {
  font-family: var(--font-condensed);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--rust); opacity: 0.9;
  margin-bottom: 2px;
}
.foot-col a {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream-deep); opacity: 0.65;
  transition: all 150ms;
}
.foot-col a:hover { color: var(--sunflower); opacity: 1; }

/* Legacy single-row links (compat) */
.foot-links { display: flex; flex-wrap: wrap; gap: 16px; }
.foot-links a {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-deep); opacity: 0.75;
}
.foot-links a:hover { color: var(--sunflower); opacity: 1; }
.foot-socials { display: flex; gap: 16px; }
.foot-socials a { color: var(--cream-deep); opacity: 0.6; transition: all 150ms; }
.foot-socials a:hover { color: var(--sunflower); opacity: 1; }

/* ============================================================
   ENTRANCE ANIMATIONS
   Base state is final — keyframe slides in from below.
   Content stays visible if animation stalls.
   ============================================================ */
.u1, .u2, .u2b, .u3, .u4, .u5 {
  opacity: 1;
  animation: up 500ms ease both;
}
.u1  { animation-delay:  80ms; }
.u2  { animation-delay: 160ms; }
.u2b { animation-delay: 240ms; }
.u3  { animation-delay: 320ms; }
.u4  { animation-delay: 400ms; }
.u5  { animation-delay: 480ms; }
@keyframes up {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .u1, .u2, .u2b, .u3, .u4, .u5 { animation: none; }
}

/* ============================================================
   SERVICE PAGES (sub-page classes — heritage-updated)
   ============================================================ */
.sp-hero { padding: 128px 0 72px; background: var(--bone); }
.sp-breadcrumb { font-size: 0.78rem; color: var(--cocoa-dim); margin-bottom: 1.25rem; }
.sp-breadcrumb a { color: var(--rust); }
.sp-breadcrumb a:hover { text-decoration: underline; }
.sp-h1 {
  font-family: var(--font-slab); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1;
  letter-spacing: -0.025em; color: var(--pine-deep);
  margin-bottom: 0.5rem;
}
.sp-sub { font-size: 1rem; color: var(--cocoa-mid); line-height: 1.75; max-width: 560px; margin-top: 1rem; margin-bottom: 2rem; }
.sp-section { padding: 64px 0; }
.sp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.sp-card {
  background: var(--cream); border: 1px solid var(--border-2);
  border-radius: var(--radius-md); padding: 1.5rem;
  transition: all 0.18s;
}
.sp-card:hover { background: white; border-color: var(--border-3); box-shadow: var(--shadow-md); }
.sp-card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }
.sp-card-name { font-weight: 600; font-size: 0.9rem; color: var(--pine-deep); margin-bottom: 0.35rem; }
.sp-card-desc { font-size: 0.8rem; color: var(--cocoa-dim); line-height: 1.6; }
.sp-prose { font-size: 0.95rem; color: var(--cocoa-mid); line-height: 1.8; max-width: 680px; }
.sp-prose + .sp-prose { margin-top: 1rem; }
.sp-h2 {
  font-family: var(--font-slab); font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--pine-deep);
  margin-bottom: 0.5rem; letter-spacing: -0.018em;
}
.sp-areas { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.feat-list { list-style: none; margin-top: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; max-width: 600px; }
.feat-list li {
  font-size: 0.875rem; color: var(--cocoa-mid);
  padding: 0.5rem 0.75rem; background: var(--cream);
  border: 1px solid var(--cream-deep); border-radius: 6px;
}
.feat-list li::before { content: '✓ '; color: var(--rust); font-weight: 700; }

/* Stats bar (compat) */
.stats-bar { padding: 32px 0; background: var(--cream); border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.stats-in { display: flex; gap: 48px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-slab); font-weight: 800; font-size: 2.5rem; color: var(--rust); letter-spacing: -0.03em; }
.stat-label { font-size: 0.8rem; color: var(--cocoa-mid); margin-top: 2px; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 88px 0; background: var(--bone); }
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 2rem; }
.faq-item {
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  background: var(--bone);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}
.faq-item:hover { border-color: var(--border-3); }
.faq-q {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: 1rem;
  color: var(--pine-deep);
  padding: 20px 24px;
  cursor: default;
  letter-spacing: -0.01em;
}
.faq-a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--cocoa-mid);
  line-height: 1.7;
  padding: 0 24px 20px;
  border-top: 1px solid var(--border-1);
  margin-top: -4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links li:nth-child(-n+6) { display: none; }
  .svc-grid, .also-grid, .field-tiles { grid-template-columns: 1fr 1fr; }
  .ai-pills, .who-where, .foot-in { grid-template-columns: 1fr; }
  .foot-cols { gap: 32px; }
  .sp-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .sp-grid, .who-list { grid-template-columns: 1fr; }
  .feat-list { grid-template-columns: 1fr; }
}

/* ============================================================
   RLTC Brand Bar
   Rainy Lake Trading Co. family navigation — all sites
   Namespace: .rltcbar
   ============================================================ */

.rltcbar {
  background: #1a2820;
  border-bottom: 1px solid rgba(239,231,210,0.08);
  position: sticky;
  top: 0;
  z-index: 9999;
}
.rltcbar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(16px,4vw,48px);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rltcbar__home {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(239,231,210,0.42);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 120ms ease;
  flex-shrink: 0;
}
.rltcbar__home:hover,
.rltcbar__home:focus-visible { color: rgba(239,231,210,0.80); outline: none; }
.rltcbar__home-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.rltcbar__sep {
  width: 1px;
  height: 18px;
  background: rgba(239,231,210,0.13);
  flex-shrink: 0;
}
.rltcbar__brands {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rltcbar__brands::-webkit-scrollbar { display: none; }
.rltcbar__brand {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 12px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(239,231,210,0.42);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 120ms ease, border-color 120ms ease;
}
.rltcbar__brand:hover,
.rltcbar__brand:focus-visible { color: rgba(239,231,210,0.80); outline: none; }
.rltcbar__brand--active {
  color: #e8a040;
  border-bottom-color: #e8a040;
}
@media (max-width: 480px) {
  .rltcbar__home-label { display: none; }
  .rltcbar__sep { display: none; }
  .rltcbar__brand { padding: 0 8px; }
  .rltcbar__inner { padding: 0 12px; }
}
