/* ================================================
   Okanagan Outdoor Lighting — Global Stylesheet
   ================================================ */

:root {
  --bg: #0a0d12;
  --surface: #13171f;
  --gold: #f0a500;
  --gold-light: #f5c040;
  --text: #e8edf3;
  --subtext: #8a94a8;
  --border: #1e2535;
  --cta-green: #22c55e;
  --cta-green-dark: #16a34a;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0a0d12;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  color: var(--subtext);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: block;
  white-space: nowrap;
}

.nav-links > li > a:hover { color: var(--text); background: var(--surface); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--subtext);
  font-size: 0.875rem;
  transition: color 0.2s, background 0.2s;
}

.dropdown-menu a:hover { color: var(--text); background: rgba(240,165,0,0.08); }

.dropdown > a::after { content: ' ▾'; font-size: 0.7em; }

/* CTA Button */
.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: #0a0d12 !important;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-cta:hover { background: var(--gold-light); color: #0a0d12 !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0d12 0%, #0f1420 50%, #0a0c10 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(240,165,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  border: 1px solid rgba(240,165,0,0.3);
  padding: 6px 16px;
  border-radius: 100px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 780px;
}

.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--subtext);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta-green);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
}

.btn-primary:hover {
  background: var(--cta-green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34,197,94,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover { border-color: var(--gold); background: rgba(240,165,0,0.06); color: var(--text); }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── SECTIONS ── */
section { padding: 80px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title em { font-style: normal; color: var(--gold); }

.section-sub {
  font-size: 1.05rem;
  color: var(--subtext);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.65;
}

/* ── BENEFITS STRIP ── */
.benefits-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.benefits-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--subtext);
  letter-spacing: 0.04em;
}

.benefits-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover { border-color: rgba(240,165,0,0.4); transform: translateY(-4px); }

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

.card-link:hover { gap: 10px; }

/* ── PROCESS STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.3);
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 16px;
}

.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--subtext); font-size: 0.9rem; line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author { font-weight: 700; font-size: 0.875rem; }
.testimonial-location { font-size: 0.8rem; color: var(--subtext); }

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 32px 16px 14px;
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--surface) 0%, #0f1420 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 0;
}

.cta-section .section-title { margin-bottom: 16px; }
.cta-section p { color: var(--subtext); max-width: 540px; margin: 0 auto 36px; }

/* ── CONTENT PAGES ── */
.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #0f1420 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { color: var(--subtext); font-size: 1.05rem; max-width: 640px; }

.content-section { padding: 72px 0; }
.content-section + .content-section { border-top: 1px solid var(--border); }

.content-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.content-section h2 em { font-style: normal; color: var(--gold); }

.content-section p {
  color: var(--subtext);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 760px;
}

.content-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 700px;
}

.content-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--subtext);
  font-size: 0.95rem;
  line-height: 1.65;
}

.content-section ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Two-col layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ── SERVICES LIST ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover { border-color: rgba(240,165,0,0.4); transform: translateY(-3px); }

.service-card .icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: var(--subtext); font-size: 0.875rem; line-height: 1.6; }

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover { border-color: rgba(240,165,0,0.4); transform: translateY(-4px); }

.blog-card-body { padding: 28px; }

.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card h2, .blog-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
  color: var(--text);
}

.blog-card p { color: var(--subtext); font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

.read-more:hover { gap: 10px; }

/* ── ARTICLE ── */
.article-header { padding: 80px 0 48px; border-bottom: 1px solid var(--border); }
.article-header h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.article-header h1 em { font-style: normal; color: var(--gold); }
.article-meta { color: var(--subtext); font-size: 0.875rem; }

.article-body { max-width: 760px; padding: 56px 0; }
.article-body h2 { font-size: 1.5rem; font-weight: 800; margin: 40px 0 14px; color: var(--text); }
.article-body h3 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 10px; color: var(--text); }
.article-body p { color: var(--subtext); line-height: 1.8; margin-bottom: 18px; font-size: 1rem; }
.article-body ul { list-style: none; margin-bottom: 18px; display: flex; flex-direction: column; gap: 10px; }
.article-body ul li { display: flex; gap: 10px; color: var(--subtext); font-size: 0.95rem; line-height: 1.65; }
.article-body ul li::before { content: '✦'; color: var(--gold); font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }
.article-body a { color: var(--gold); font-weight: 500; }
.article-body a:hover { color: var(--gold-light); }

.article-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 40px 0;
}

.article-cta p { color: var(--text) !important; font-weight: 600; margin-bottom: 14px !important; }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.form-group select { cursor: pointer; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

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

.btn-submit {
  width: 100%;
  background: var(--cta-green);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
}

.btn-submit:hover { background: var(--cta-green-dark); transform: translateY(-1px); }

.contact-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.contact-info p { color: var(--subtext); font-size: 0.95rem; margin-bottom: 10px; }

.next-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}

.next-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--subtext);
  line-height: 1.55;
}

.next-steps li .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(240,165,0,0.12);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.8rem;
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.area-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  color: var(--subtext);
}

/* ── TEAM ── */
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  max-width: 480px;
}

.team-placeholder-img {
  width: 100%;
  height: 320px;
  background: #1e2535;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--subtext);
  font-size: 0.875rem;
}

.team-placeholder-img svg { width: 80px; height: 80px; fill: #2a3040; }

.team-card-body { padding: 32px; }
.team-card-body h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 4px; }
.team-card-body .title { color: var(--gold); font-weight: 600; font-size: 0.95rem; margin-bottom: 20px; }
.team-card-body p { color: var(--subtext); font-size: 0.95rem; line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand .logo { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand .tagline { color: var(--subtext); font-size: 0.9rem; margin-bottom: 16px; }
.footer-brand .serving { color: var(--subtext); font-size: 0.8rem; line-height: 1.6; }

.footer-links h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--subtext); margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links ul li a { color: var(--subtext); font-size: 0.875rem; transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--gold); }

.footer-contact h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--subtext); margin-bottom: 16px; }
.footer-contact p { color: var(--subtext); font-size: 0.875rem; margin-bottom: 6px; }
.footer-contact a { color: var(--gold); font-size: 0.875rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: var(--subtext); font-size: 0.8rem; }

/* ── STAT STRIP ── */
.stat-strip { padding: 56px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat .num { font-size: 2.4rem; font-weight: 800; color: var(--gold); display: block; }
.stat .label { color: var(--subtext); font-size: 0.875rem; margin-top: 4px; }

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  /* Desktop nav links hidden on mobile — overlay handles it */
  .nav-links { display: none !important; }
}

/* ── MOBILE NAV OVERLAY (body-level, above everything) ── */
#mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.6);
}

#mobile-nav-overlay.open { display: block; }

#mobile-nav-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #0d1018;
  border-bottom: 1px solid var(--border);
  padding: 80px 0 24px;
  max-height: 100vh;
  overflow-y: auto;
}

#mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#mobile-nav-list > li {
  border-bottom: 1px solid var(--border);
}

#mobile-nav-list > li > a {
  display: block;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

#mobile-nav-list > li > a:hover,
#mobile-nav-list > li > a:active { color: var(--gold); }

/* Sub-menu items (Services) */
.mob-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
}

.mob-sub li a {
  display: block;
  padding: 13px 24px 13px 40px;
  font-size: 0.95rem;
  color: var(--subtext);
  text-decoration: none;
}

.mob-sub li a:hover,
.mob-sub li a:active { color: var(--gold); }

.mob-has-sub > a::after {
  content: '';
}

/* CTA button inside mobile overlay */
.mob-cta-btn {
  display: block;
  margin: 20px 24px 8px;
  padding: 15px 20px;
  background: var(--gold);
  color: #0a0d12 !important;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
}

.mob-cta-btn:hover { background: var(--gold-light); color: #0a0d12 !important; }

/* Only show overlay on mobile */
@media (min-width: 901px) {
  #mobile-nav-overlay { display: none !important; }
}

@media (max-width: 600px) {
  section { padding: 56px 0; }
  .hero { min-height: 80vh; }
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: rgba(240,165,0,0.06);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: 14px;
  padding: 28px 32px;
  margin: 32px 0;
}

.highlight-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.highlight-box p { color: var(--subtext); font-size: 0.95rem; margin: 0; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.8rem;
  color: var(--subtext);
}

.breadcrumb a { color: var(--subtext); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* ── NOTICE ── */
.notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--subtext);
  margin-bottom: 32px;
}
