/* ============================================
   VP AERIAL SOLUTIONS — VPDRONES.COM
   Global Stylesheet
   VandenPriest LLC · Maricopa County, AZ
   ============================================ */

/* ============================================
   VARIABLES
   ============================================ */
:root {
  --black:          #0C0C0C;
  --dark:           #1A1A1A;
  --white:          #FFFFFF;
  --off-white:      #F8F8F8;
  --gray-light:     #F2F2F2;
  --gray-mid:       #D8D8D8;
  --silver:         #A8A8A8;
  --silver-light:   #D0D0D0;
  --silver-dark:    #707070;
  --text-primary:   #111111;
  --text-secondary: #444444;
  --text-muted:     #888888;
  --border:         #E4E4E4;
  --shadow:         0 2px 20px rgba(0,0,0,0.07);
  --shadow-hover:   0 10px 40px rgba(0,0,0,0.13);
  --transition:     all 0.22s ease;
  --nav-height:     72px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Helvetica Neue', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--text-primary); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { color: var(--text-secondary); font-size: 1.03rem; line-height: 1.78; }

.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-dark);
}

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

.section     { padding: 96px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--black); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: var(--silver-light); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section-header .label { display: block; margin-bottom: 14px; }
.section-header h2 { margin-bottom: 16px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary       { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-primary:hover { background: #1f1f1f; border-color: var(--silver); color: var(--silver-light); }
.btn-outline       { background: transparent; color: var(--black); border-color: var(--gray-mid); }
.btn-outline:hover { border-color: var(--black); }
.btn-outline-white       { background: transparent; color: var(--white); border-color: var(--silver); }
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-group { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height); z-index: 1000;
  background: rgba(6, 6, 6, 0.97);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between;
  max-width: 1120px; margin: 0 auto; padding: 0 28px;
}
.nav-logo img {
  height: 36px; width: auto;
  filter: drop-shadow(0 0 6px rgba(0,212,255,0.4));
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: #00d4ff; }
.nav-cta { margin-left: 8px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,0.7); transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-height);
  left: 0; right: 0;
  background: #080808; border-bottom: 1px solid rgba(0,212,255,0.15);
  padding: 24px 28px; z-index: 999;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu a:hover { color: #00d4ff; }
.mobile-menu .btn { margin-top: 16px; text-align: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background-color: #0C0C0C;
  background-image: radial-gradient(circle, #242424 1px, transparent 1px);
  background-size: 28px 28px;
  padding-top: var(--nav-height);
  position: relative;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #0C0C0C);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 740px; }
.hero .label { color: var(--silver); margin-bottom: 22px; display: block; }
.hero h1 { color: var(--white); margin-bottom: 0; }
.hero h1 em { font-style: normal; color: var(--silver-light); }
.hero-divider { width: 48px; height: 2px; background: linear-gradient(to right, #C0C0C0, #505050); margin: 28px 0; }
.hero p { color: var(--silver-light); font-size: 1.12rem; max-width: 540px; margin-bottom: 40px; }

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 3px; padding: 36px 30px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, #D0D0D0, #888888);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: var(--silver-light); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 1.9rem; margin-bottom: 18px; display: block; }
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p  { font-size: 0.94rem; margin-bottom: 20px; }
.link-arrow {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.link-arrow:hover { color: var(--black); }

/* ============================================
   DIFFERENTIATORS
   ============================================ */
.diff-card { text-align: center; padding: 40px 20px; }
.diff-icon {
  width: 54px; height: 54px; border: 1.5px solid var(--silver-light);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem;
  margin: 0 auto 20px; color: var(--silver-dark);
}
.diff-card h3 { font-size: 1rem; margin-bottom: 10px; }
.diff-card p  { font-size: 0.9rem; }

/* ============================================
   ABOUT TEASER
   ============================================ */
.about-teaser { display: grid; grid-template-columns: 1fr 1fr; }
.about-teaser-content {
  padding: 80px 64px; background: var(--black);
  display: flex; flex-direction: column; justify-content: center;
}
.about-teaser-content .label { color: var(--silver); margin-bottom: 16px; display: block; }
.about-teaser-content h2 { color: var(--white); margin-bottom: 20px; }
.about-teaser-content p  { color: var(--silver-light); margin-bottom: 32px; }
.about-teaser-visual {
  background: #161616;
  background-image: radial-gradient(circle, #272727 1px, transparent 1px);
  background-size: 22px 22px;
  display: flex; align-items: center; justify-content: center; padding: 48px;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; width: 100%; max-width: 320px; }
.stat-box {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  padding: 30px 20px; text-align: center;
}
.stat-num   { font-size: 1.9rem; font-weight: 700; color: var(--white); display: block; letter-spacing: -0.03em; }
.stat-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); display: block; margin-top: 6px; }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.portfolio-item {
  aspect-ratio: 4/3; background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); overflow: hidden;
}
.portfolio-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.portfolio-placeholder { text-align: center; padding: 32px; }
.portfolio-placeholder .p-icon  { font-size: 1.8rem; color: var(--gray-mid); margin-bottom: 10px; }
.portfolio-placeholder .p-cat   { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver-dark); margin-bottom: 5px; }
.portfolio-placeholder .p-title { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   CONTACT CTA (homepage)
   ============================================ */
.cta-dark { background: var(--black); padding: 96px 0; text-align: center; }
.cta-dark .label { color: var(--silver); margin-bottom: 16px; display: block; }
.cta-dark h2 { color: var(--white); margin-bottom: 16px; }
.cta-dark > .container > p { color: var(--silver-light); max-width: 480px; margin: 0 auto 40px; }
.cta-dark .btn-group { justify-content: center; }

.contact-tiles { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 56px; }
.contact-tile {
  text-align: center; padding: 32px 40px;
  border: 1px solid rgba(255,255,255,0.09); border-radius: 3px;
  transition: var(--transition); min-width: 200px;
}
.contact-tile:hover { border-color: var(--silver); background: rgba(255,255,255,0.04); }
.ct-icon  { font-size: 1.5rem; margin-bottom: 12px; display: block; }
.ct-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver-dark); display: block; margin-bottom: 8px; }
.ct-value { font-size: 1rem; font-weight: 600; color: var(--white); display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #080808; padding: 44px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-brand { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver-dark); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver-dark); }
.footer-links a:hover { color: var(--silver-light); }
.footer-copy { font-size: 0.75rem; color: #444; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 140px 0 72px;
  background: #0a0a0a;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.018) 0px, rgba(255,255,255,0.018) 1px,
      transparent 1px, transparent 8px
    );
  background-size: 12px 12px;
  border-bottom: 1px solid rgba(0,212,255,0.12);
}
.page-hero .label { display: block; margin-bottom: 14px; color: #00d4ff; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; color: #fff; }
.page-hero p  { font-size: 1.1rem; max-width: 540px; color: rgba(255,255,255,0.55); }

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-block { padding: 80px 0; border-bottom: 1px solid var(--border); }
.service-block:last-child { border-bottom: none; }
.service-block-content .label { display: block; margin-bottom: 14px; }
.service-block-content h2 { font-size: 2rem; margin-bottom: 16px; }
.service-block-content p  { margin-bottom: 20px; }
.includes-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; display: block; }
.includes-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.includes-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem; color: var(--text-secondary); }
.includes-list li::before { content: '—'; color: var(--silver-dark); flex-shrink: 0; margin-top: 1px; }
.service-visual {
  background: var(--gray-light); border: 1px solid var(--border); border-radius: 3px;
  aspect-ratio: 4/3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  font-size: 3.5rem;
}
.service-visual span { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story { padding: 80px 0; }
.about-story p { margin-bottom: 18px; font-size: 1.07rem; }
.about-story p:last-child { margin-bottom: 0; }
.credential-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.credential-card { padding: 28px 24px; border: 1px solid var(--border); border-radius: 3px; }
.credential-card .cc-icon { font-size: 1.5rem; margin-bottom: 12px; display: block; }
.credential-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.credential-card p  { font-size: 0.87rem; margin: 0; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 16px; }
.value-item { padding: 0 0 28px; border-bottom: 1px solid var(--border); }
.value-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
.value-item h4 { font-size: 1rem; margin-bottom: 8px; }
.value-item p  { font-size: 0.92rem; margin: 0; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: flex-start; }
.contact-form-wrap h3 { font-size: 1.2rem; margin-bottom: 8px; }
.contact-form-wrap > p { margin-bottom: 36px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 15px; font-size: 0.95rem; font-family: inherit;
  color: var(--text-primary); background: var(--white);
  border: 1.5px solid var(--border); border-radius: 2px;
  transition: var(--transition); outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--silver-dark); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 16px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }
.contact-sidebar-card { padding: 26px 24px; border: 1px solid var(--border); border-radius: 3px; }
.contact-sidebar-card .cs-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 8px; }
.contact-sidebar-card .cs-value { font-size: 1.05rem; font-weight: 600; color: var(--text-primary); display: block; margin-bottom: 3px; }
.contact-sidebar-card .cs-note  { font-size: 0.84rem; color: var(--text-muted); }
.contact-sidebar-card a:hover .cs-value { color: var(--black); text-decoration: underline; }

/* ============================================
   INSPECTION REPORT
   ============================================ */
.report-page { background: var(--white); }
.report-wrap { max-width: 820px; margin: 0 auto; padding: 72px 40px; }
.report-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 28px; border-bottom: 2.5px solid var(--black); margin-bottom: 40px;
}
.report-logo { font-size: 1.1rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.report-logo span { display: block; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 3px; }
.report-meta { text-align: right; }
.report-meta .label { display: block; margin-bottom: 8px; }
.report-meta p { font-size: 0.88rem; line-height: 1.6; color: var(--text-secondary); }
.report-meta strong { color: var(--text-primary); }

.report-banner {
  background: var(--black); color: var(--white);
  padding: 20px 28px; margin-bottom: 40px;
  display: flex; justify-content: space-between; align-items: center;
}
.report-banner h2 { font-size: 1.05rem; color: var(--white); }
.report-banner .rb-address { font-size: 0.88rem; color: var(--silver-light); margin-top: 4px; }
.report-badge { text-align: right; }
.report-badge .rb-score { font-size: 1.8rem; font-weight: 700; color: var(--white); display: block; letter-spacing: -0.03em; }
.report-badge .rb-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); display: block; }

.report-section { margin-bottom: 44px; }
.report-section-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); padding-bottom: 10px;
  border-bottom: 1px solid var(--border); margin-bottom: 18px;
}
.report-finding {
  display: grid; grid-template-columns: 1fr auto; gap: 16px;
  align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border);
}
.report-finding:last-child { border-bottom: none; }
.finding-name   { font-weight: 600; font-size: 0.94rem; margin-bottom: 3px; }
.finding-detail { font-size: 0.85rem; color: var(--text-muted); }
.badge { padding: 5px 11px; border-radius: 2px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.badge-ok      { background: #F0F0F0; color: #555; border: 1px solid #DDD; }
.badge-monitor { background: #FBF5E8; color: #8B6914; border: 1px solid #E8D8A0; }
.badge-flag    { background: #FBE8E8; color: #8B1414; border: 1px solid #E8A0A0; }

.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.photo-box {
  aspect-ratio: 4/3; background: var(--gray-light); border: 1px solid var(--border);
  border-radius: 2px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 7px;
}
.photo-box .ph-icon  { font-size: 1.3rem; color: var(--gray-mid); }
.photo-box .ph-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver-dark); }

.recommendations-list { display: flex; flex-direction: column; gap: 12px; }
.rec-item { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: flex-start; padding: 16px; border: 1px solid var(--border); border-radius: 2px; }
.rec-num  { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; color: var(--white); background: var(--black); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.rec-text h4 { font-size: 0.94rem; margin-bottom: 4px; }
.rec-text p  { font-size: 0.86rem; margin: 0; }

.report-footer-bar {
  margin-top: 56px; padding-top: 22px; border-top: 2px solid var(--black);
  display: flex; justify-content: space-between; align-items: center;
}
.report-footer-bar .rf-brand { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.report-footer-bar .rf-brand span { display: block; font-weight: 400; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--text-muted); text-transform: none; margin-top: 3px; }
.report-footer-bar p { font-size: 0.78rem; color: var(--text-muted); text-align: right; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser-content { padding: 64px 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { flex-direction: row; flex-wrap: wrap; }
  .contact-sidebar-card { flex: 1 1 200px; }
  .credential-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 28px; }
  .grid-4 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.wide { grid-column: span 2; }
  .about-teaser-content { padding: 56px 28px; }
  .contact-tiles { flex-direction: column; align-items: center; }
  .contact-tile { width: 100%; max-width: 340px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .report-wrap { padding: 48px 20px; }
  .report-top { flex-direction: column; gap: 20px; }
  .report-meta { text-align: left; }
  .report-banner { flex-direction: column; gap: 16px; }
  .report-badge { text-align: left; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .credential-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .about-teaser-content { padding: 48px 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .report-wrap { padding: 36px 16px; }
}
