/* ============================================================
   Midwest Paper Products — Main Stylesheet
   Color scheme: Red #c8102e + Navy #1b2d6e (matches logo)
   Mobile-first, fully responsive
   ============================================================ */

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

/* ============================
   CSS CUSTOM PROPERTIES
   ============================ */
:root {
  /* Brand colors — matched to logo */
  --clr-primary:       #1b2d6e;   /* logo navy blue */
  --clr-primary-hover: #142259;
  --clr-primary-light: #2a4ba0;
  --clr-accent:        #c8102e;   /* logo red */
  --clr-accent-hover:  #a50d25;
  --clr-highlight:     #f59e0b;   /* warm gold — stat callouts */

  /* Neutrals */
  --clr-bg:       #f8f9fb;
  --clr-surface:  #ffffff;
  --clr-text:     #1e2532;
  --clr-text-muted: #6b7280;
  --clr-border:   #e2e8f0;
  --clr-error:    #dc2626;
  --clr-success:  #16a34a;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max-w:  1200px;
  --nav-h:  88px;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  --shadow-sm:   0 1px 4px rgba(0,0,0,.07);
  --shadow-md:   0 4px 20px rgba(0,0,0,.09);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.12);
  --shadow-card: 0 2px 12px rgba(27,45,110,.08);

  --t:      .2s ease;
  --t-slow: .4s ease;
}

/* ============================
   RESET
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font);
  font-size: 16px; line-height: 1.6;
  color: var(--clr-text); background: var(--clr-bg);
  overflow-x: hidden;
}
main { overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; color: var(--clr-primary); }
h1 { font-size: clamp(1.9rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--clr-text-muted); line-height: 1.75; }

/* ============================
   LAYOUT UTILITIES
   ============================ */
.container {
  width: 100%; max-width: var(--max-w);
  margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem);
}
.section       { padding-block: clamp(4rem, 8vw, 6rem); }
.section--alt  { background: var(--clr-surface); }

.section-header        { text-align: center; margin-bottom: 3rem; }
.section-header h2     { margin-bottom: 1rem; }
.section-header p      { max-width: 620px; margin-inline: auto; font-size: 1.05rem; }
.section-header .eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--clr-accent);
  margin-bottom: .75rem; padding: .3em .9em;
  background: rgba(200,16,46,.08);
  border-radius: 100px;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75em 1.75em; border-radius: var(--r-sm);
  font-weight: 600; font-size: .95rem;
  transition: all var(--t); white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--clr-accent); color: #fff; border-color: var(--clr-accent);
}
.btn--primary:hover {
  background: var(--clr-accent-hover); border-color: var(--clr-accent-hover);
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,16,46,.35);
}
.btn--secondary {
  background: var(--clr-primary); color: #fff; border-color: var(--clr-primary);
}
.btn--secondary:hover {
  background: var(--clr-primary-hover); border-color: var(--clr-primary-hover);
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,45,110,.3);
}
.btn--outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.7);
}
.btn--outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn--outline-dark {
  background: transparent; color: var(--clr-primary); border-color: var(--clr-primary);
}
.btn--outline-dark:hover {
  background: var(--clr-primary); color: #fff; transform: translateY(-1px);
}
.btn--white {
  background: #fff; color: var(--clr-accent); border-color: #fff; font-weight: 700;
}
.btn--white:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.btn--outline-white {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7);
}
.btn--outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn--lg { padding: .9em 2.2em; font-size: 1rem; }

/* ============================
   HEADER / NAV  — WHITE BAR
   ============================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 12px rgba(27,45,110,.08);
  display: flex; align-items: center;
  transition: box-shadow var(--t);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(27,45,110,.14); }

.nav {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}

/* Logo image */
.nav__logo-link {
  display: flex; align-items: center; flex-shrink: 0;
  transition: opacity var(--t);
}
.nav__logo-link:hover { opacity: .88; }
.nav__logo-img {
  height: 70px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(27,45,110,.15));
}

/* Desktop links */
.nav__links {
  display: flex; align-items: center; gap: 2rem;
}
.nav__links a {
  color: var(--clr-text); font-size: .9rem; font-weight: 600;
  padding: .35em 0; border-bottom: 2px solid transparent;
  transition: all var(--t);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--clr-accent); border-bottom-color: var(--clr-accent);
}

/* Phone button */
.nav__phone {
  display: flex; align-items: center; gap: .5rem;
  color: #fff; font-weight: 700; font-size: .9rem;
  padding: .55em 1.2em;
  background: var(--clr-accent);
  border-radius: var(--r-sm);
  border: 2px solid var(--clr-accent);
  transition: all var(--t);
}
.nav__phone:hover {
  background: var(--clr-accent-hover); border-color: var(--clr-accent-hover);
  transform: translateY(-1px); box-shadow: 0 3px 10px rgba(200,16,46,.3);
}

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--r-sm); transition: background var(--t);
}
.nav__hamburger:hover { background: rgba(27,45,110,.06); }
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--clr-text); border-radius: 2px; transition: all var(--t);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff;
  padding: 1.25rem 1.5rem 1.75rem;
  box-shadow: 0 8px 24px rgba(27,45,110,.12);
  z-index: 999; flex-direction: column; gap: .3rem;
  border-top: 2px solid var(--clr-accent);
}
.nav__mobile a {
  color: var(--clr-text); font-size: 1rem; font-weight: 600;
  padding: .8rem 1rem; border-radius: var(--r-sm); transition: all var(--t);
}
.nav__mobile a:hover, .nav__mobile a.active {
  background: rgba(200,16,46,.06); color: var(--clr-accent);
}
.nav__mobile .nav__phone {
  margin-top: .75rem; justify-content: center;
}
.nav__mobile.open { display: flex; }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #101e4a 0%, #1b2d6e 55%, #122258 100%);
  color: #fff;
  padding-block: clamp(4rem, 10vw, 8rem);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 85% 15%, rgba(200,16,46,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(255,255,255,.04) 0%, transparent 50%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom right, transparent 49%, var(--clr-bg) 50%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 52fr 48fr;
  align-items: start; gap: clamp(2rem, 4vw, 3.5rem);
}
.hero__content { min-width: 0; }
.hero__image {
  display: flex; align-items: flex-start; justify-content: center;
  margin-top: -1rem;
}
.hero__image img {
  width: 115%; height: auto;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,.45));
}
@media (max-width: 767px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { width: min(340px, 85%); margin: 0 auto; }
  .hero__image img { width: 100%; }
}

.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: .4em 1em;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  color: rgba(255,255,255,.9); margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 8px; height: 8px; background: var(--clr-highlight);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.8); }
}

.hero h1       { color: #fff; margin-bottom: 1.25rem; }
.hero h1 em    { font-style: normal; color: var(--clr-highlight); }
.hero__desc    {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,.85); margin-bottom: 2.5rem; line-height: 1.75;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__stats {
  display: flex; gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15); flex-wrap: wrap;
}
.hero__stat-value {
  font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 800;
  color: var(--clr-highlight); line-height: 1; margin-bottom: .25rem;
}
.hero__stat-label {
  font-size: .78rem; color: rgba(255,255,255,.65); font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about__grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 768px) { .about__grid { grid-template-columns: 1fr 1fr; } }

.about__card {
  background: var(--clr-primary); border-radius: var(--r-lg);
  padding: 2.5rem; color: #fff; position: relative; overflow: hidden;
}
.about__card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(200,16,46,.15);
}
.about__card::after {
  content: ''; position: absolute; bottom: -60px; left: -30px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.about__card-row         { display: flex; gap: 2rem; margin-bottom: 1.5rem; }
.about__card-stat        { display: flex; flex-direction: column; }
.about__card-number      { font-size: 2.8rem; font-weight: 800; color: var(--clr-highlight); line-height: 1; }
.about__card-label       { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: .25rem; }
.about__card-divider     { border: none; border-top: 1px solid rgba(255,255,255,.15); margin: 1.25rem 0; }
.about__card-tagline     { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.6; }

.about__content .eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--clr-accent); margin-bottom: .75rem;
}
.about__content h2 { margin-bottom: 1.25rem; }
.about__content p  { margin-bottom: 1rem; }

.about__features     { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.about__feature      { display: flex; align-items: flex-start; gap: .75rem; }
.about__feature-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  background: rgba(200,16,46,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.about__feature-icon svg { width: 13px; height: 13px; stroke: var(--clr-accent); }
.about__feature p    { margin: 0; font-size: .95rem; }

/* ============================
   PRODUCTS SECTION
   ============================ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--clr-surface); border-radius: var(--r-md);
  padding: 1.75rem; border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card); transition: all var(--t);
  position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card:hover::before { transform: scaleX(1); }
.product-card__icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(27,45,110,.07), rgba(200,16,46,.07));
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.7rem;
}
.product-card h3 { margin-bottom: .6rem; font-size: 1.05rem; }
.product-card p  { font-size: .88rem; margin-bottom: 1.2rem; }
.product-card__tag {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 600; color: var(--clr-accent);
  background: rgba(200,16,46,.08); padding: .25em .75em; border-radius: 100px;
}
/* Highlight the credit card card */
.product-card--featured {
  border-color: var(--clr-accent); box-shadow: 0 2px 16px rgba(200,16,46,.12);
}
.product-card--featured::before { transform: scaleX(1); }

/* ============================
   FEATURES / WHY CHOOSE US
   ============================ */
.features__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem;
}
.feature-item {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--clr-bg); border-radius: var(--r-md);
  border: 1px solid var(--clr-border); transition: all var(--t);
}
.feature-item:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: rgba(200,16,46,.2);
}
.feature-item__icon {
  width: 68px; height: 68px; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; color: #fff;
  box-shadow: 0 4px 16px rgba(27,45,110,.22);
}
.feature-item h3 { margin-bottom: .5rem; font-size: 1rem; }
.feature-item p  { font-size: .88rem; }

/* ============================
   LOCAL SEO SECTION (credit card paper)
   ============================ */
.local-seo-section {
  background: linear-gradient(135deg, rgba(27,45,110,.04), rgba(200,16,46,.04));
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.local-seo__grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 768px) { .local-seo__grid { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }

.local-seo__content h2 { margin-bottom: 1rem; }
.local-seo__content p  { margin-bottom: 1rem; }

.local-seo__list {
  margin-top: 1.25rem; display: flex; flex-direction: column; gap: .6rem;
}
.local-seo__list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .95rem; color: var(--clr-text);
}
.local-seo__list li::before {
  content: '✓'; color: var(--clr-accent); font-weight: 800;
  flex-shrink: 0; margin-top: 1px; font-size: 1rem;
}

.local-seo__sidebar {
  display: flex; flex-direction: column; gap: 1rem;
}
.local-seo__box {
  background: var(--clr-surface); border-radius: var(--r-md);
  border: 1px solid var(--clr-border); padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.local-seo__box h4 {
  color: var(--clr-primary); margin-bottom: .6rem; font-size: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.local-seo__box p { font-size: .88rem; margin: 0; }

/* ============================
   SERVICE AREA STRIP
   ============================ */
.service-banner {
  background: var(--clr-primary);
  padding-block: 1rem;
}
.service-banner__inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem); flex-wrap: wrap; text-align: center;
}
.service-banner__item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.9);
}
.service-banner__item span:first-child { font-size: 1rem; }
.service-banner__sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,.3);
  display: none;
}
@media (min-width: 640px) { .service-banner__sep { display: block; } }

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-accent) 0%, #7d0a1b 100%);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,.06) 0%, transparent 45%),
    radial-gradient(circle at 90% 50%, rgba(27,45,110,.2) 0%, transparent 45%);
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner h2       { color: #fff; margin-bottom: 1rem; }
.cta-banner p        {
  color: rgba(255,255,255,.88); font-size: 1.1rem;
  max-width: 520px; margin-inline: auto; margin-bottom: 2rem;
}
.cta-banner__actions {
  display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap;
}

/* ============================
   PAGE HERO (interior pages)
   ============================ */
.page-hero {
  background: linear-gradient(135deg, #101e4a 0%, #1b2d6e 100%);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 80% 20%, rgba(200,16,46,.15) 0%, transparent 55%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to bottom right, transparent 49%, var(--clr-bg) 50%);
}
.page-hero h1 { color: #fff; margin-bottom: 1rem; position: relative; }
.page-hero p  {
  color: rgba(255,255,255,.82); max-width: 600px;
  margin-inline: auto; font-size: 1.05rem; position: relative;
}

/* ============================
   PRODUCTS PAGE — Detail Cards
   ============================ */
.products-detail__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.75rem;
}
.product-detail-card {
  background: var(--clr-surface); border-radius: var(--r-lg);
  border: 1px solid var(--clr-border); overflow: hidden;
  box-shadow: var(--shadow-card); transition: all var(--t);
}
.product-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.product-detail-card--featured {
  border-color: var(--clr-accent); box-shadow: 0 2px 18px rgba(200,16,46,.14);
}
.product-detail-card__header {
  background: linear-gradient(135deg, rgba(27,45,110,.05), rgba(200,16,46,.05));
  padding: 1.75rem; border-bottom: 1px solid var(--clr-border);
  display: flex; align-items: center; gap: 1.25rem; position: relative;
}
.product-detail-card--featured .product-detail-card__header {
  background: linear-gradient(135deg, rgba(200,16,46,.07), rgba(27,45,110,.06));
}
.product-detail-card__badge {
  position: absolute; top: -1px; right: 1rem;
  background: var(--clr-accent); color: #fff;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: .25em .7em; border-radius: 0 0 6px 6px;
}
.product-detail-card__icon {
  font-size: 2.4rem; width: 62px; height: 62px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); flex-shrink: 0;
}
.product-detail-card__header h3  { font-size: 1.15rem; margin-bottom: .2rem; }
.product-detail-card__header p   { font-size: .83rem; margin: 0; }
.product-detail-card__body       { padding: 1.5rem 1.75rem; }
.product-detail-card__specs      { display: flex; flex-direction: column; gap: .5rem; }
.product-detail-card__specs li   {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .88rem; color: var(--clr-text-muted);
}
.product-detail-card__specs li::before {
  content: '✓'; color: var(--clr-accent); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

.products-cta {
  margin-top: 3rem; text-align: center;
  background: var(--clr-surface); border-radius: var(--r-lg);
  padding: 2.5rem; border: 1px solid var(--clr-border); box-shadow: var(--shadow-card);
}
.products-cta h3  { margin-bottom: .75rem; }
.products-cta p   { margin-bottom: 1.75rem; max-width: 480px; margin-inline: auto; }
.products-cta .btn-group {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-section { padding-block: clamp(3rem, 6vw, 5rem); }
.contact__grid   {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 768px) { .contact__grid { grid-template-columns: 1fr 1.6fr; } }

.contact__info h2   { margin-bottom: 1rem; }
.contact__info > p  { margin-bottom: 2rem; font-size: 1rem; }

.contact__details   { display: flex; flex-direction: column; gap: 1rem; }
.contact__detail {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; background: var(--clr-surface);
  border-radius: var(--r-md); border: 1px solid var(--clr-border);
  transition: box-shadow var(--t);
}
.contact__detail:hover { box-shadow: var(--shadow-md); }
.contact__detail-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(27,45,110,.07), rgba(200,16,46,.07));
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact__detail-label {
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--clr-text-muted); margin-bottom: .2rem;
}
.contact__detail-value { font-weight: 600; color: var(--clr-text); font-size: .95rem; }
.contact__detail-value a { color: var(--clr-primary); transition: color var(--t); }
.contact__detail-value a:hover { color: var(--clr-accent); }

/* Contact Form */
.contact-form {
  background: var(--clr-surface); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--clr-border); box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 1.5rem; font-size: 1.3rem; }

.form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .form__row--2col { grid-template-columns: 1fr 1fr; } }

.form__group       { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form__group label { font-size: .84rem; font-weight: 600; color: var(--clr-text); }
.form__group label .required { color: var(--clr-error); margin-left: 2px; }
.form__control {
  width: 100%; padding: .75em 1em;
  border: 1.5px solid var(--clr-border); border-radius: var(--r-sm);
  font-size: .95rem; color: var(--clr-text); background: var(--clr-bg);
  transition: all var(--t); outline: none;
}
.form__control:focus {
  border-color: var(--clr-primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(27,45,110,.08);
}
.form__control.error { border-color: var(--clr-error); }
textarea.form__control { resize: vertical; min-height: 130px; }
.form__honeypot { display: none; visibility: hidden; }
.form__submit     { margin-top: 1.5rem; }
.form__submit .btn { width: 100%; justify-content: center; padding: .95em; font-size: 1rem; }

/* Alerts */
.alert {
  padding: 1rem 1.25rem; border-radius: var(--r-sm);
  margin-bottom: 1.5rem; font-size: .9rem; font-weight: 500;
  display: flex; align-items: flex-start; gap: .75rem;
}
.alert--success {
  background: rgba(22,163,74,.08); border: 1px solid rgba(22,163,74,.25); color: #15803d;
}
.alert--error {
  background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.25); color: #dc2626;
}
.alert--rate-limit {
  background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.25); color: #d97706;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--clr-primary); color: rgba(255,255,255,.8);
  padding-block: clamp(3rem, 6vw, 4rem);
}
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }

/* Footer logo */
.footer__logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer__logo-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: var(--clr-accent);
  border-radius: var(--r-sm); flex-shrink: 0;
}
.footer__logo-text { color: #fff; font-weight: 800; font-size: 1.1rem; line-height: 1.2; }
.footer__logo-text span { display: block; font-size: .68rem; font-weight: 400; opacity: .7; }
.footer__brand p {
  font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-top: 1rem;
}

.footer__col h4 {
  color: #fff; font-size: .85rem; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: .55rem; }
.footer__links a {
  color: rgba(255,255,255,.6); font-size: .875rem;
  transition: color var(--t); display: flex; align-items: center; gap: .4rem;
}
.footer__links a:hover { color: #fff; }
.footer__links a::before { content: '›'; color: var(--clr-accent); }

.footer__contact-item {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: .85rem; font-size: .875rem;
}
.footer__contact-item:last-child { margin-bottom: 0; }
.footer__contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer__contact-item a { color: rgba(255,255,255,.7); transition: color var(--t); }
.footer__contact-item a:hover { color: #fff; }

.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer__bottom p  { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer__usa {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: rgba(255,255,255,.55); font-weight: 500;
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.stagger > *.visible { opacity: 1; transform: none; }

/* ============================
   RESPONSIVE — MOBILE NAV
   ============================ */
@media (max-width: 767px) {
  .nav__links, .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================
   UTILITIES
   ============================ */
.text-center { text-align: center; }
.mt-2        { margin-top: 2rem; }
.sr-only     {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
