/* ===================================================
   Pikes Peak Internal Medicine
   =================================================== */

:root {
  --blue-900: #0C2340;
  --blue-800: #143654;
  --blue-700: #1B4D6E;
  --blue-600: #24678D;
  --copper-700: #7D5A38;
  --copper-600: #8F6840;
  --copper-500: #A67B52;
  --copper-400: #BB9570;
  --copper-300: #D4B99A;
  --white: #FFFFFF;
  --off-white: #F8F6F3;
  --gray-100: #F0EDEA;
  --gray-200: #E0DBD5;
  --gray-600: #6B6560;
  --gray-800: #3D3733;
  --text: #2D2A26;
  --text-light: #5C5650;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-w: 1120px;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --ease: 0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-700); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--blue-600); }
ul { list-style: none; }
address { font-style: normal; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--copper-500);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2, h3, h4 { line-height: 1.2; color: var(--blue-800); }
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.3rem, 3vw, 1.65rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 600; }
h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ===========================================
   HEADER — slim bar matching mockup
   =========================================== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-200);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
}
.logo-link { display: block; flex-shrink: 0; }
.logo { height: 38px; width: auto; }

/* Navigation */
.main-nav ul { display: flex; gap: 0; align-items: center; }
.main-nav a {
  display: block;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue-800);
  transition: color var(--ease);
}
.main-nav a:hover { color: var(--copper-500); }
.main-nav a[aria-current="page"] { color: var(--copper-600); font-weight: 600; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px; height: 36px;
  padding: 6px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.hamburger-line {
  display: block; width: 22px; height: 2px;
  background: var(--blue-800);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================
   HERO — photo background with top-down overlay
   =========================================== */
.hero {
  position: relative;
  background: url('images/hero.jpg') center 35% / cover no-repeat;
  background-color: var(--blue-800);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3.5rem 0 4rem;
  background:
    linear-gradient(to right,  rgba(12,35,64,0.97) 0%, rgba(12,35,64,0.93) 35%, rgba(12,35,64,0.45) 60%, transparent 80%),
    linear-gradient(to bottom, rgba(12,35,64,0.6) 0%, transparent 50%);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.6rem;
  max-width: 520px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  max-width: 420px;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.hero-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--ease);
}
.hero-detail:hover { color: var(--white); }

.hero-detail-phone {
  color: var(--copper-300);
  font-weight: 600;
  font-size: 0.95rem;
}
.hero-detail-phone:hover { color: var(--white); }

.hero-accepting {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--copper-400);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-accepting svg { color: var(--copper-400); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.35rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.btn:active { transform: scale(0.98); }

.btn-copper {
  background: var(--copper-500);
  color: var(--white);
  border-color: var(--copper-500);
}
.btn-copper:hover {
  background: var(--copper-600);
  border-color: var(--copper-600);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* ===========================================
   PRACTICE INTRO
   =========================================== */
.practice-intro {
  padding: 2.75rem 0;
  background: var(--white);
}
.practice-intro h2 { margin-bottom: 0.75rem; color: var(--blue-700); }
.practice-intro p { color: var(--text-light); margin-bottom: 0.6rem; font-size: 0.95rem; line-height: 1.7; max-width: 720px; }

.text-link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--copper-600);
  margin-top: 0.25rem;
  transition: color var(--ease);
}
.text-link:hover { color: var(--copper-700); }

/* ===========================================
   INSURANCE BAR
   =========================================== */
.insurance-bar {
  background: var(--off-white);
  padding-bottom: 2rem;
}
.insurance-bar-header {
  background: var(--blue-900);
  padding: 0.65rem 0;
  margin-bottom: 1.5rem;
}
.insurance-bar-header h2 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.insurance-shield-icon {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
}

.insurance-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.insurance-logos li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}
.insurance-logos li img {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.insurance-logos li span {
  display: block;
  width: 100%;
  font-size: 0.65rem;
  color: var(--text-light);
  text-align: center;
}

.insurance-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.insurance-note a {
  color: var(--copper-600);
  font-weight: 600;
}
.insurance-note a:hover { color: var(--copper-700); }

/* ===========================================
   CTA PHONE
   =========================================== */
.cta-phone {
  text-align: center;
  padding: 2.5rem 0;
  background: var(--blue-900);
  color: var(--white);
}
.cta-phone h2 {
  color: var(--white);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.cta-phone-number {
  display: block;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: var(--copper-300);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
  transition: color var(--ease);
}
.cta-phone-number:hover { color: var(--copper-400); }
.cta-phone p { font-size: 0.9rem; opacity: 0.7; }

/* ===========================================
   ABOUT
   =========================================== */
.about {
  padding: 3.5rem 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.about-image-wrap { display: flex; justify-content: center; }
.about-image {
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.about-text h2 { margin-bottom: 0.75rem; }
.about-text p { color: var(--text-light); margin-bottom: 0.6rem; font-size: 0.95rem; }

/* ===========================================
   INFO
   =========================================== */
.info {
  padding: 3rem 0;
  background: var(--white);
}
.info-heading { text-align: center; margin-bottom: 1.75rem; }
.info-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }

.info-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.info-icon { color: var(--blue-700); margin-bottom: 0.5rem; }
.info-card h3 { margin-bottom: 0.5rem; color: var(--blue-800); }
.info-card address, .info-card p { color: var(--text-light); line-height: 1.6; font-size: 0.9rem; }
.info-note { font-size: 0.8rem; margin-top: 0.3rem; color: var(--gray-600); }

.info-phone {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--copper-600);
}
.info-phone:hover { color: var(--copper-700); }

/* ===========================================
   FOOTER — matching mockup dark bar
   =========================================== */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.75);
  padding: 2.25rem 0 0;
  font-size: 0.85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-mountain {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}
.footer-practice-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.footer-doctor {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}
.footer-tagline { font-size: 0.8rem; opacity: 0.55; line-height: 1.5; }

.footer-contact h4,
.footer-hours h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-contact address,
.footer-contact p,
.footer-hours p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.2rem;
}
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  padding: 0.85rem 0;
  font-size: 0.75rem;
  opacity: 0.45;
}

/* ===========================================
   INTERIOR PAGE HERO
   =========================================== */
.page-hero {
  position: relative;
  height: 200px;
  background: url('images/hero.jpg') center 20% / cover no-repeat;
  background-color: var(--blue-800);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(12,35,64,0.7) 0%, rgba(12,35,64,0.3) 50%, transparent 80%),
    linear-gradient(to bottom, rgba(12,35,64,0.4) 0%, transparent 60%);
}

/* ===========================================
   PAGE INTRO
   =========================================== */
.page-intro {
  padding: 2.5rem 0 1.5rem;
  background: var(--white);
}
.page-intro h1 {
  margin-bottom: 0.75rem;
}
.page-intro p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 680px;
}

/* ===========================================
   PHYSICIAN PROFILE
   =========================================== */
.physician-profile {
  padding: 1.5rem 0 3.5rem;
  background: var(--white);
}
.physician-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.physician-portrait-wrap {
  display: flex;
  justify-content: center;
}
.physician-portrait {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
  border: 4px solid var(--blue-700);
  box-shadow: var(--shadow-md);
}
.physician-bio h2 {
  margin-bottom: 0.25rem;
}
.physician-credential {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--copper-600);
  margin-bottom: 1rem;
}
.physician-bio p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

/* ===========================================
   CTA BAR (interior pages)
   =========================================== */
.cta-bar {
  background: var(--blue-900);
  color: var(--white);
  padding: 2.25rem 0;
}
.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-bar-text h2 {
  color: var(--white);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin-bottom: 0.3rem;
}
.cta-bar-text p {
  font-size: 0.9rem;
  opacity: 0.75;
}
.cta-bar-text a {
  color: var(--copper-300);
}
.cta-bar-text a:hover {
  color: var(--white);
}

/* ===========================================
   SERVICES
   =========================================== */
.services {
  padding: 3rem 0 2rem;
  background: var(--white);
}
.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.services-header h2 {
  margin-bottom: 0.5rem;
}
.section-rule {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--copper-500);
  margin: 0 auto 0.75rem;
  border-radius: 2px;
}
.services-header p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.service-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.service-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(12, 35, 64, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
}
.service-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-800);
  margin-bottom: 0.3rem;
}
.service-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

.services-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 2.25rem auto 0;
  line-height: 1.6;
}
.services-note a {
  color: var(--copper-600);
  font-weight: 600;
}
.services-note a:hover { color: var(--copper-700); }

/* ===========================================
   CONTACT PAGE
   =========================================== */
.contact-section {
  padding: 1.5rem 0 2.5rem;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.contact-info h2 {
  margin-bottom: 0.15rem;
}
.contact-doctor {
  font-size: 0.95rem;
  color: var(--copper-600);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-row-icon {
  flex-shrink: 0;
  color: var(--blue-700);
  margin-top: 2px;
}
.contact-phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--copper-600);
}
.contact-phone:hover { color: var(--copper-700); }
.contact-scheduling-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.contact-directions-btn {
  margin-top: 0.75rem;
}

.contact-appointment {
  padding: 0 0 2.5rem;
  background: var(--white);
}
.contact-call-btn {
  margin-top: 0.75rem;
}

.contact-notices {
  padding: 0 0 2.5rem;
  background: var(--white);
}
.contact-notice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 0.75rem;
}
.contact-notice:last-child {
  margin-bottom: 0;
}
.contact-notice-icon {
  flex-shrink: 0;
  color: var(--blue-700);
  margin-top: 1px;
}
.contact-notice p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-notice-urgent {
  border-color: var(--copper-300);
  background: #FDF8F3;
}
.contact-notice-urgent .contact-notice-icon {
  color: var(--copper-500);
}

/* ===========================================
   REFERRAL PANEL
   =========================================== */
.referral-panel {
  padding: 0 0 2.5rem;
  background: var(--white);
}
.referral-inner {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.referral-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(12, 35, 64, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
}
.referral-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-800);
  margin-bottom: 0.35rem;
}
.referral-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.65;
}
.referral-content .text-link {
  margin-top: 0.35rem;
}

.referral-panel-compact {
  padding: 0 0 0;
  background: var(--off-white);
}
.referral-panel-compact .referral-inner {
  border: none;
  background: transparent;
  padding: 1.25rem 0;
  align-items: center;
}
.referral-panel-compact .referral-icon {
  width: 44px;
  height: 44px;
}
.referral-panel-compact .referral-icon svg {
  width: 22px;
  height: 22px;
}

/* ===========================================
   RESPONSIVE — TABLET (768px+)
   =========================================== */
@media (min-width: 768px) {
  .page-hero { height: 240px; }

  .physician-card {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
  .physician-portrait { max-width: 260px; }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .contact-map iframe { height: 360px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
  }
  .service-item:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
    padding-right: 2.5rem;
  }

  .about-grid {
    grid-template-columns: auto 1fr;
    gap: 3rem;
  }

  .info-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

/* ===========================================
   RESPONSIVE — DESKTOP (1024px+)
   =========================================== */
@media (min-width: 1024px) {
  .site-header .container { height: 60px; }
  .logo { height: 42px; }

  .page-hero { height: 280px; }
  .physician-portrait { max-width: 300px; }
  .physician-card { gap: 3rem; }

  .hero-content { padding: 4.5rem 0 5rem; }
  .hero h1 { font-size: 2.85rem; }

  .practice-intro { padding: 3.25rem 0; }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem 2.5rem;
  }
  .service-item:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
  .service-item:not(:nth-child(3n)) {
    border-right: 1px solid var(--gray-200);
    padding-right: 2.5rem;
  }

  .about-grid { gap: 4rem; }
  .about-image { max-width: 340px; }
}

/* ===========================================
   RESPONSIVE — MOBILE (<768px)
   =========================================== */
@media (max-width: 767px) {
  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: 0.75rem 1.25rem; border-radius: 0; font-size: 0.9rem; }

  .site-header .container { height: 48px; }
  .logo { height: 32px; }

  .hero-content {
    padding: 2.5rem 0 3rem;
    background:
      linear-gradient(to bottom, rgba(12,35,64,0.93) 0%, rgba(12,35,64,0.75) 60%, rgba(12,35,64,0.5) 100%);
  }
  .hero-subtitle br { display: none; }
  .hero-details { margin-bottom: 1.25rem; }
  .hero-detail { font-size: 0.8rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .page-hero { height: 160px; }
  .page-intro { padding: 2rem 0 1rem; }
  .physician-profile { padding: 1rem 0 2.5rem; }
  .physician-portrait { max-width: 220px; }
  .cta-bar-inner { justify-content: center; text-align: center; }
  .cta-bar .btn { width: 100%; }

  .practice-intro { padding: 2rem 0; }

  .insurance-logos { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .insurance-logos li { flex: 0 0 auto; min-width: 70px; }

  .cta-phone { padding: 2rem 0; }

  .about { padding: 2.5rem 0; }
  .about-image { max-width: 240px; }

  .info { padding: 2.5rem 0; }

  .services { padding: 2rem 0 1.5rem; }
  .services-header { margin-bottom: 2rem; }
  .service-icon { width: 48px; height: 48px; }
  .referral-inner { flex-direction: column; text-align: center; align-items: center; }

  .contact-section { padding: 1rem 0 2rem; }
  .contact-directions-btn { width: 100%; justify-content: center; }
  .contact-call-btn { width: 100%; justify-content: center; }
}

/* ===========================================
   REDUCED MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
