/* === Construction-Weather.com — shared marketing stylesheet === */

/* 0. Custom properties
 * ─────────────────────────────────────────────────────────────── */
:root {
  --orange:       #ea580c;
  --orange-dark:  #c2410c;
  --orange-light: #fff7ed;
  --orange-faint: #fffaf6;
  --navy:         #0f172a;
  --charcoal:     #1e293b;
  --slate:        #334155;
  --muted:        #64748b;
  --border:       #e2e8f0;
  --bg:           #f8fafc;
  --white:        #ffffff;
}

/* 1. Reset
 * ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
img   { max-width: 100%; height: auto; display: block; }
ul    { list-style: none; }
a     { color: inherit; text-decoration: none; }

/* 2. Base typography
 * ─────────────────────────────────────────────────────────────── */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--charcoal);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.02em; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
p  { color: var(--slate); line-height: 1.7; }

/* 3. Layout containers
 * ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 4. Accessibility
 * ─────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -999px;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: 0.75rem; }

/* 5. Site header & navigation
 * ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  height: 60px;
  gap: 0;
}
.brand {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: var(--navy);
  flex-shrink: 0;
  margin-right: 2.5rem;
  white-space: nowrap;
}
.brand span { color: var(--orange); }

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}
.nav a {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--navy); background: var(--bg); }

/* Primary CTA button in nav */
.nav a.button {
  margin-left: auto;
  background: var(--orange);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
}
.nav a.button:hover { background: var(--orange-dark); }

/* 6. Standalone buttons
 * ─────────────────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1.4rem;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  border: none;
  background: var(--orange);
  color: var(--white);
}
.button:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(234,88,12,0.28); }

.button.secondary {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid var(--border);
}
.button.secondary:hover { border-color: var(--orange); color: var(--orange); box-shadow: none; transform: none; }

/* 7. Hero section
 * ─────────────────────────────────────────────────────────────── */
.hero {
  padding: 4rem 0 3.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-media {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  border: 1px solid var(--border);
}
.hero-media img { width: 100%; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}
.hero h1 { margin-bottom: 1.1rem; }
.lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* 8. Stats bar
 * ─────────────────────────────────────────────────────────────── */
.stats {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.1rem; }
.stat strong { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.stat span   { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* 9. Content sections
 * ─────────────────────────────────────────────────────────────── */
.section     { padding: 4.5rem 0; background: var(--white); }
.section.alt { background: var(--bg); }

/* 10. Section headings
 * ─────────────────────────────────────────────────────────────── */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head p { margin-top: 0.75rem; font-size: 1rem; color: var(--muted); }

/* 11. Lifecycle strip (homepage)
 * ─────────────────────────────────────────────────────────────── */
.lifecycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2rem;
}
.lifecycle a {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem 1.25rem;
  background: var(--white);
  font-size: 0.875rem;
  color: var(--slate);
  transition: background 0.15s;
}
.lifecycle a:hover { background: var(--orange-faint); }
.lifecycle a strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.2rem;
}

/* 12. Feature list
 * ─────────────────────────────────────────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0 1.5rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--slate);
}
.feature-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* 13. Grid layouts
 * ─────────────────────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* 14. Cards
 * ─────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.section.alt .card { background: var(--white); }
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.card h3 { margin-bottom: 0.4rem; font-size: 1rem; }
.card p  { font-size: 0.875rem; color: var(--muted); margin-bottom: 0; }
.card a  { display: inline-block; margin-top: 0.75rem; font-size: 0.85rem; font-weight: 600; color: var(--orange); }
.card a:hover { text-decoration: underline; }

/* Linked heading cards — used for Related Features */
.card h3 a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s;
}
.card h3 a:hover { color: var(--orange); }

/* Stretched-link: make the entire card clickable */
.card:has(h3 a) {
  position: relative;
  cursor: pointer;
}
.card h3 a::after {
  content: '';
  position: absolute;
  inset: 0;
}
.card:has(h3 a):hover {
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(234,88,12,0.12);
  transform: translateY(-2px);
}

/* 15. Product screenshots
 * ─────────────────────────────────────────────────────────────── */
.product-shot {
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  width: 100%;
}
.caption {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.65rem;
  line-height: 1.5;
}

/* 16. Risk levels
 * ─────────────────────────────────────────────────────────────── */
.risk-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.risk {
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  border: 2px solid transparent;
}
.risk h3 { margin-bottom: 0.5rem; }
.risk p  { font-size: 0.875rem; margin: 0; }

.risk.green { background: #f0fdf4; border-color: #86efac; }
.risk.green h3 { color: #15803d; }
.risk.green p  { color: #166534; }

.risk.amber { background: #fffbeb; border-color: #fcd34d; }
.risk.amber h3 { color: #92400e; }
.risk.amber p  { color: #78350f; }

.risk.red { background: #fef2f2; border-color: #fca5a5; }
.risk.red h3 { color: #b91c1c; }
.risk.red p  { color: #991b1b; }

/* 17. Steps
 * ─────────────────────────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
  margin: 1.5rem 0;
}
.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  counter-increment: step;
}
.step:last-child { border-bottom: none; }
.step::before {
  content: counter(step);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.step h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.step p  { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* 18. Callout & notice
 * ─────────────────────────────────────────────────────────────── */
.callout {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 1.5rem 0;
}
.callout strong { color: var(--orange-dark); }

.notice {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 2rem;
}

/* 19. CTA strip
 * ─────────────────────────────────────────────────────────────── */
.cta {
  background: var(--navy);
  padding: 4rem 0;
}
.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta h2 { color: var(--white); font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin: 0; }
.cta p  { color: #94a3b8; font-size: 0.95rem; margin-top: 0.4rem; }
.cta .button { flex-shrink: 0; background: var(--orange); white-space: nowrap; }
.cta .button:hover { background: var(--orange-dark); }

/* 20. Site footer
 * ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 2.5rem 0;
  font-size: 0.85rem;
  color: #64748b;
  border-top: 1px solid #1e293b;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.site-footer strong { color: #94a3b8; }
.site-footer span   { display: block; margin-top: 0.2rem; }
.site-footer a { color: #64748b; margin: 0 0.5rem; }
.site-footer a:hover { color: #94a3b8; }
.footer-legal {
  font-size: 0.72rem;
  color: #475569;
  max-width: 720px;
  margin: 1.25rem auto 0;
  text-align: center;
  line-height: 1.55;
  border-top: 1px solid #1e293b;
  padding-top: 1.25rem;
}

/* 21. Page hero (centered — for pricing, contact, resources)
 * ─────────────────────────────────────────────────────────────── */
.page-hero {
  padding: 4rem 0 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 680px; margin: 0 auto; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  justify-content: center;
}
.breadcrumb a:hover { color: var(--orange); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--orange-light);
  border: 1px solid #fed7aa;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* 22. Pricing components
 * ─────────────────────────────────────────────────────────────── */
.pricing-section { padding: 4.5rem 0; }
.section-inner    { max-width: 1000px; margin: 0 auto; }
.section-label    { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem; }
.section-title    { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.025em; color: var(--navy); margin-bottom: 1rem; line-height: 1.15; }
.section-sub      { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 580px; margin: 0 auto 2rem; }

.plan-card { background: var(--white); border: 2px solid var(--orange); border-radius: 14px; overflow: hidden; max-width: 560px; margin: 0 auto; box-shadow: 0 0 0 5px rgba(234,88,12,0.07); }
.plan-card-header { background: var(--orange); color: var(--white); padding: 2rem 2.5rem; }
.plan-name   { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; margin-bottom: 0.4rem; }
.plan-price  { font-size: 3.5rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.plan-price sub { font-size: 1.25rem; font-weight: 600; vertical-align: baseline; margin-right: 0.2rem; opacity: 0.85; }
.plan-period { font-size: 0.875rem; opacity: 0.8; margin-top: 0.3rem; }
.plan-card-body { padding: 2rem 2.5rem; }
.plan-desc   { font-size: 0.95rem; color: var(--slate); line-height: 1.65; margin-bottom: 1.75rem; }
.plan-cta    { display: flex; flex-direction: column; gap: 0.6rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem; padding: 0.55rem 1.25rem; border-radius: 7px; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.15s; text-decoration: none; border: none; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(234,88,12,0.3); }
.btn-ghost   { background: transparent; color: var(--slate); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-lg  { padding: 0.7rem 1.75rem; font-size: 0.95rem; border-radius: 8px; }
.btn-xl  { padding: 0.9rem 2.25rem; font-size: 1rem; border-radius: 8px; }

.discount-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: #f0fdf4; border: 1.5px solid #86efac; color: #15803d; font-size: 1rem; font-weight: 800; padding: 0.55rem 1.25rem; border-radius: 100px; margin-bottom: 1.5rem; }

.survey-section { background: var(--bg); padding: 4.5rem 0; border-top: 1px solid var(--border); }
.survey-inner   { max-width: 700px; margin: 0 auto; text-align: center; }

.pro-section { padding: 4.5rem 0; }
.pro-inner   { max-width: 1000px; margin: 0 auto; }
.pro-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.pro-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 1rem; }
.pro-content p  { color: var(--muted); line-height: 1.7; margin-bottom: 0.75rem; font-size: 0.95rem; }

.features-preview { background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px; padding: 1.75rem; }
.features-preview h3 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 1.25rem; }
.feature-row { display: flex; justify-content: space-between; align-items: center; padding: 0.55rem 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.feature-row:last-child { border-bottom: none; }
.feature-row .name { color: var(--slate); }
.badge       { display: inline-flex; align-items: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; padding: 0.2rem 0.55rem; border-radius: 100px; }
.badge-free  { background: #f0fdf4; color: #15803d; }
.badge-pro   { background: var(--orange-light); color: var(--orange); border: 1px solid rgba(234,88,12,0.25); }

.faq-section { background: var(--bg); padding: 4.5rem 0; border-top: 1px solid var(--border); }
.faq-inner   { max-width: 680px; margin: 0 auto; }
.faq-list    { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.faq-item    { border-bottom: 1px solid var(--border); padding: 1.4rem 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 { font-size: 0.975rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.faq-item p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.faq-item a  { color: var(--orange); text-decoration: underline; }

/* 23. Contact components
 * ─────────────────────────────────────────────────────────────── */
.contact-section  { padding: 4.5rem 0; }
.contact-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-card     { background: var(--white); border: 2px solid var(--orange); border-radius: 14px; padding: 2.25rem; box-shadow: 0 0 0 5px rgba(234,88,12,0.06); }
.contact-card-icon{ width: 48px; height: 48px; border-radius: 10px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.1rem; }
.contact-card h2  { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.contact-card p   { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; }
.email-link       { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 1rem; font-weight: 700; color: var(--orange); word-break: break-all; }
.email-link:hover { text-decoration: underline; }
.response-note    { margin-top: 1rem; font-size: 0.78rem; color: var(--muted); }

.topics     { display: flex; flex-direction: column; gap: 1rem; }
.topic-item { background: var(--bg); border: 1.5px solid var(--border); border-radius: 9px; padding: 1.1rem 1.35rem; }
.topic-item h3 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.topic-item p  { font-size: 0.825rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* 24. Hamburger / mobile nav toggle
 * ─────────────────────────────────────────────────────────────── */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.25rem; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--slate); margin: 4px 0; border-radius: 2px; }

/* 25. Resources page
 * ─────────────────────────────────────────────────────────────── */
.resources-section { padding: 4.5rem 0; }
.resources-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.resource-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem 1.75rem; box-shadow: 0 1px 4px rgba(0,0,0,0.04); transition: box-shadow 0.2s; }
.resource-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.resource-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.resource-card p  { font-size: 0.875rem; color: var(--muted); flex: 1; }
.resource-card a  { display: inline-block; margin-top: 0.85rem; font-size: 0.85rem; font-weight: 600; color: var(--orange); }
.resource-card a:hover { text-decoration: underline; }

/* 26. Responsive
 * ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid  { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 560px; }
  .lead       { max-width: 100%; }
  .grid-2     { grid-template-columns: 1fr; gap: 2rem; }
  .grid-2 figure { order: -1; }
  .lifecycle  { grid-template-columns: 1fr 1fr; }
  .cta .container { flex-direction: column; text-align: center; }
  .footer-grid    { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 700px) {
  .hero     { padding: 2.5rem 0; }
  .section  { padding: 3rem 0; }
  .grid-3   { grid-template-columns: 1fr; }
  .risk-row { grid-template-columns: 1fr; }
  .lifecycle { grid-template-columns: 1fr; }
  .pro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { gap: 1.5rem; }
  .plan-card-header, .plan-card-body { padding: 1.5rem 1.5rem; }
  .nav { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; gap: 0.5rem; }
  .nav.open { display: flex; }
  .nav a.button { margin-left: 0; width: 100%; justify-content: center; }
  .hamburger { display: block; }
  .site-header { position: relative; }
}
@media (max-width: 480px) {
  .actions { flex-direction: column; }
  .page-hero { padding: 2.5rem 0; }
}

/* 27. Article layout (adverse-weather-eot-claims and similar long-form pages)
 * ─────────────────────────────────────────────────────────────── */
.article-layout { max-width: 1100px; margin: 0 auto; padding: 4rem 1.5rem; display: grid; grid-template-columns: 1fr 280px; gap: 4rem; align-items: start; }
.article-body { min-width: 0; }
.article-body h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--navy); margin: 2.5rem 0 1rem; line-height: 1.2; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.6rem; }
.article-body p { color: var(--slate); margin-bottom: 1.25rem; line-height: 1.75; font-size: 1rem; }
.article-body ul, .article-body ol { margin: 0 0 1.25rem 1.5rem; }
.article-body li { color: var(--slate); margin-bottom: 0.5rem; line-height: 1.65; font-size: 1rem; }
.article-body strong { color: var(--charcoal); }
.article-body blockquote { border-left: 4px solid var(--orange); margin: 1.75rem 0; padding: 1rem 1.5rem; background: var(--bg); border-radius: 0 10px 10px 0; }
.article-body blockquote p { font-style: italic; color: var(--slate); margin: 0; line-height: 1.7; }

.article-tag { display: inline-flex; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 100px; background: var(--orange-light); color: var(--orange); border: 1px solid rgba(234,88,12,0.25); margin-bottom: 1.25rem; }
.article-hero-inner { max-width: 760px; }
.article-hero-inner .lead { max-width: 100%; font-size: 1.1rem; }
.article-meta { display: flex; gap: 1.5rem; align-items: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); flex-wrap: wrap; font-size: 0.8rem; color: var(--muted); }
.article-meta strong { color: var(--slate); }

.four-elements { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.75rem 0; }
.element-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px; padding: 1.25rem; }
.element-card .num { font-size: 0.72rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.element-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.element-card p { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.55; }

.route-steps { list-style: none; margin: 0 0 1.25rem 0; counter-reset: steps; }
.route-steps li { counter-increment: steps; display: flex; gap: 1rem; align-items: flex-start; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
.route-steps li:last-child { border-bottom: none; }
.route-steps li::before { content: counter(steps); display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--orange); color: var(--white); font-weight: 800; font-size: 0.8rem; flex-shrink: 0; }
.route-steps li span { font-size: 0.9rem; color: var(--slate); line-height: 1.55; padding-top: 0.2rem; }

.notice-example { background: var(--navy); color: var(--white); border-radius: 12px; padding: 1.5rem 1.75rem; margin: 1.75rem 0; }
.notice-example .label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #64748b; margin-bottom: 1rem; }
.notice-example p { color: #94a3b8; font-size: 0.875rem; line-height: 1.65; margin-bottom: 0.5rem; }
.notice-example p:last-child { margin-bottom: 0; }
.notice-example strong { color: #cbd5e1; }

.article-sidebar { position: sticky; top: 80px; }
.sidebar-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.25rem; }
.sidebar-card h3 { font-size: 0.875rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.toc-list li a { font-size: 0.8rem; color: var(--muted); text-decoration: none; display: block; padding: 0.2rem 0.65rem; border-left: 2px solid transparent; transition: all 0.15s; }
.toc-list li a:hover { color: var(--orange); border-left-color: var(--orange); }
.sidebar-cta { background: var(--navy); border-radius: 12px; padding: 1.5rem; }
.sidebar-cta h3 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.sidebar-cta p { font-size: 0.8rem; color: #94a3b8; margin-bottom: 1.25rem; line-height: 1.6; }
.sidebar-cta .button { width: 100%; justify-content: center; font-size: 0.875rem; }

.article-footer-section { background: var(--bg); border-top: 1px solid var(--border); padding: 3.5rem 1.5rem; }
.article-footer-inner { max-width: 760px; margin: 0 auto; }
.article-footer-inner h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.article-footer-inner p { color: var(--muted); margin-bottom: 1.5rem; }
.disclaimer { font-size: 0.78rem; color: var(--muted); margin-top: 1.5rem; line-height: 1.55; padding-top: 1.5rem; border-top: 1px solid var(--border); }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 1.25rem; }
  .article-sidebar { position: static; }
  .four-elements { grid-template-columns: 1fr; }
}
