/* ============================================================
   STR PERMIT GUIDE — Main Stylesheet
   Design System: Editorial Authority
   Palette: Deep Navy + Warm Amber + Slate + Off-White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --navy:        #0f1f3d;
  --navy-mid:    #1a3260;
  --navy-light:  #243d72;
  --amber:       #c97d2e;
  --amber-light: #e8972e;
  --amber-pale:  #fdf3e3;
  --slate:       #4a5568;
  --slate-light: #718096;
  --off-white:   #f8f6f1;
  --white:       #ffffff;
  --border:      #ddd8ce;
  --green:       #2d6a4f;
  --green-light: #e8f5ef;
  --red:         #9b2335;
  --red-light:   #faeaec;
  --yellow-bg:   #fffbeb;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;

  --max-width: 1180px;
  --radius:    6px;
  --shadow-sm: 0 1px 4px rgba(15,31,61,0.08);
  --shadow-md: 0 4px 16px rgba(15,31,61,0.12);
  --shadow-lg: 0 8px 32px rgba(15,31,61,0.16);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--off-white);
}
img { max-width: 100%; display: block; }
a { color: var(--navy-mid); text-decoration: underline; text-decoration-color: var(--amber); text-underline-offset: 3px; }
a:hover { color: var(--amber); }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.3em; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; margin-bottom: 0.75em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; margin-bottom: 0.5em; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ---- Layout Containers ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ---- Site Header ---- */
.site-header {
  background: var(--navy);
  border-bottom: 4px solid var(--amber);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__icon {
  width: 38px;
  height: 38px;
  background: var(--amber);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
}
.site-logo__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.site-logo__text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.site-nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.site-nav a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.site-nav a.active { background: var(--amber); color: var(--navy); }
.nav-cta {
  background: var(--amber) !important;
  color: var(--navy) !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: var(--amber-light) !important; }

/* Hamburger nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: transform 0.3s;
}

/* ---- Hero ---- */
.hero {
  background: var(--navy);
  background-image: 
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,50,96,0.8) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light), var(--amber));
}
.hero .container { max-width: var(--max-width); }
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); max-width: 720px; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--amber-light); }
.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.12rem;
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  line-height: 1.2;
}
.btn--primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--amber-pale);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-bar .container {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
}
.trust-item__icon { font-size: 1.1rem; }

/* ---- Section Wrappers ---- */
.section { padding: 64px 0; }
.section--alt { background: var(--white); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p, .section--dark li { color: rgba(255,255,255,0.82); }
.section__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 10px;
}
.section__title { margin-bottom: 8px; }
.section__intro {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.section--dark .section__intro { color: rgba(255,255,255,0.72); }

/* ---- Cards ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.card-grid--2 { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--amber);
}
.card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.card__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  margin-bottom: 6px;
}
.card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.card p { color: var(--slate); font-size: 0.92rem; line-height: 1.6; }
.card a { text-decoration: none; color: inherit; }
.card a:hover h3 { color: var(--amber); }

/* State/County link cards */
.state-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--navy);
  transition: all 0.2s;
}
.state-card:hover {
  border-color: var(--amber);
  background: var(--amber-pale);
  transform: translateX(3px);
}
.state-card__abbr {
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--amber);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.state-card__body h4 { font-size: 1rem; margin-bottom: 2px; }
.state-card__body p { font-size: 0.8rem; color: var(--slate-light); margin: 0; }

/* ---- Permit Status Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}
.badge--required { background: var(--red-light); color: var(--red); }
.badge--varies { background: var(--yellow-bg); color: #854d0e; }
.badge--optional { background: var(--green-light); color: var(--green); }

/* ---- Info Boxes ---- */
.infobox {
  border-left: 4px solid var(--amber);
  background: var(--amber-pale);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.infobox--warning {
  border-color: var(--red);
  background: var(--red-light);
}
.infobox--success {
  border-color: var(--green);
  background: var(--green-light);
}
.infobox__title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.infobox p { font-size: 0.92rem; margin: 0; color: var(--navy); }

/* ---- Tables ---- */
.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: 8px; box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; background: var(--white); }
thead { background: var(--navy); color: var(--white); }
thead th {
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: left;
  white-space: nowrap;
}
tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
tbody tr:hover { background: var(--amber-pale); }
tbody tr:last-child { border-bottom: none; }
tbody td {
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--navy);
  vertical-align: middle;
}
tbody td:first-child { font-weight: 600; }

/* ---- Steps / Process ---- */
.steps { counter-reset: step-counter; list-style: none; padding: 0; }
.steps li {
  counter-increment: step-counter;
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step-counter);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 2px;
}
.steps li strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.steps li p { font-size: 0.92rem; color: var(--slate); margin: 0; }

/* ---- FAQ ---- */
.faq { margin: 0; padding: 0; list-style: none; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq__question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background 0.2s;
}
.faq__question:hover { background: var(--amber-pale); }
.faq__question[aria-expanded="true"] { background: var(--navy); color: var(--white); }
.faq__chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.3s;
}
.faq__question[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); }
.faq__answer {
  display: none;
  padding: 18px 22px;
  background: var(--white);
  font-size: 0.93rem;
  color: var(--slate);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq__answer.open { display: block; }

/* ---- Checklist ---- */
.checklist { list-style: none; padding: 0; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '☐';
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--amber);
  margin-top: 1px;
}

/* ---- Tool / Finder Widget ---- */
.tool-wrapper {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.tool-header {
  background: var(--navy);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tool-header h3 { color: var(--white); margin: 0; font-size: 1.2rem; }
.tool-header p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }
.tool-body { padding: 28px; }
.form-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.form-group { flex: 1; min-width: 200px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--slate);
  margin-bottom: 8px;
}
.form-group select,
.form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--off-white);
  transition: border-color 0.2s;
  appearance: none;
}
.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--white);
}
.tool-result {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 24px 28px;
  display: none;
}
.tool-result.visible { display: block; }
.tool-result h4 { color: var(--amber); margin-bottom: 14px; font-size: 1.1rem; }
.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.result-item { }
.result-item__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.result-item__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  background: var(--navy-mid);
  padding: 10px 0;
}
.breadcrumb .container {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb__sep { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.breadcrumb__current { color: rgba(255,255,255,0.9); font-weight: 600; }

/* ---- Page Header ---- */
.page-header {
  background: var(--navy);
  padding: 48px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(201,125,46,0.12) 0%, transparent 70%);
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), transparent);
}
.page-header .container { position: relative; }
.page-header .section__label { margin-bottom: 12px; }
.page-header h1 { color: var(--white); margin-bottom: 14px; max-width: 680px; }
.page-header p { color: rgba(255,255,255,0.72); max-width: 560px; font-size: 1.05rem; margin: 0; }

/* ---- Sidebar Layout ---- */
.layout-main { display: flex; gap: 40px; align-items: flex-start; }
.layout-main__content { flex: 1; min-width: 0; }
.layout-main__sidebar { width: 280px; flex-shrink: 0; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h4 {
  font-size: 0.95rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--amber);
}
.sidebar-widget ul { list-style: none; padding: 0; }
.sidebar-widget ul li { padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: var(--navy); font-weight: 600; text-decoration: none; }
.sidebar-widget ul li a:hover { color: var(--amber); }

/* ---- Quick Fact Box ---- */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.quick-fact {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}
.quick-fact__value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1.1;
}
.quick-fact__label { font-size: 0.78rem; color: var(--slate); margin-top: 4px; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 10px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(201,125,46,0.12);
}
.cta-banner__text h3 { color: var(--white); margin-bottom: 8px; }
.cta-banner__text p { color: rgba(255,255,255,0.72); margin: 0; font-size: 0.95rem; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
  border-top: 4px solid var(--amber);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer-col p { font-size: 0.88rem; line-height: 1.65; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-disclaimer {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ---- Article Prose ---- */
.prose h2 { margin-top: 2em; margin-bottom: 0.6em; }
.prose h3 { margin-top: 1.5em; margin-bottom: 0.5em; }
.prose p { margin-bottom: 1.1em; color: var(--slate); }
.prose ul, .prose ol { margin-bottom: 1.1em; }
.prose li { color: var(--slate); }
.prose strong { color: var(--navy); }
.prose a { color: var(--navy-mid); }
.prose blockquote {
  border-left: 4px solid var(--amber);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--amber-pale);
  font-style: italic;
  color: var(--navy);
  font-size: 1.05rem;
  border-radius: 0 4px 4px 0;
}

/* ---- Ads Placeholder ---- */
.ad-slot {
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 28px 0;
}
.ad-slot--leaderboard { height: 90px; }
.ad-slot--rectangle { height: 250px; max-width: 300px; }
.ad-slot--banner { height: 60px; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-amber { color: var(--amber); }
.text-slate { color: var(--slate); }
.mt-0 { margin-top: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.gap-top { margin-top: 2em; }
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .layout-main { flex-direction: column; }
  .layout-main__sidebar { width: 100%; }
}
@media (max-width: 768px) {
  .hero { padding: 48px 0 56px; }
  .section { padding: 44px 0; }
  .site-nav { display: none; }
  .site-nav.open { display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.1); z-index: 99; }
  .nav-toggle { display: block; }
  .site-header .container { position: relative; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 32px 28px; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .card-grid--2 { grid-template-columns: 1fr; }
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
}
