/* ======================================================
   DULI Elektro – Memphis Design System
   Elektryk Nowy Sącz | dulielektro.pl
   ====================================================== */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; }
button { font: inherit; }

/* ===== DESIGN TOKENS ===== */
:root {
  --color-bg: #FDF5E6;
  --color-bg-alt: #FEF9F0;
  --color-primary: #8BD3E6;
  --color-primary-dark: #2E8FA3;
  --color-secondary: #AED8F2;
  --color-yellow: #F2DEA2;
  --color-yellow-bright: #FFD662;
  --color-pink: #F2C4DE;
  --color-coral: #FF6B6B;
  --color-coral-light: #FFE0E0;
  --color-text: #2D2D2D;
  --color-text-light: #5A5A5A;
  --color-white: #FFFFFF;
  --shadow-hard: 4px 4px 0 var(--color-text);
  --shadow-hard-sm: 3px 3px 0 var(--color-text);
  --shadow-hard-lg: 6px 6px 0 var(--color-text);
  --shadow-soft: 0 2px 12px rgba(0,0,0,0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --header-height: 64px;
  --max-width: 1200px;
  --transition: 0.2s ease;
}

/* ===== BASE TYPOGRAPHY ===== */
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 800;
}

p { max-width: 70ch; }
strong { font-weight: 700; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--color-text); color: var(--color-white);
  padding: 0.5rem 1.5rem; border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 1000; text-decoration: none; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ===== LAYOUT ===== */
.container {
  width: 100%; max-width: var(--max-width);
  margin: 0 auto; padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
  scroll-margin-top: var(--header-height);
}

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  margin-bottom: 0.75rem;
  position: relative;
}

.section__title::after {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: var(--color-yellow-bright);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

.section__intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-bg);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header--scrolled {
  border-bottom-color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.nav__logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.8rem; font-weight: 900;
  text-decoration: none; color: var(--color-text);
  letter-spacing: 2px; text-transform: uppercase;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 42px; height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.nav__logo span { color: var(--color-primary); margin-left: -1px; }

/* Phone link - mobile version */
.nav__phone-mobile {
  display: flex; align-items: center; gap: 0.35rem;
  text-decoration: none; color: var(--color-text);
  font-weight: 700; font-size: 0.9rem;
}
.nav__phone-mobile svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Phone link - desktop version */
.nav__phone {
  display: none;
  text-decoration: none; color: var(--color-text);
  font-weight: 700; font-size: 0.95rem;
  background: var(--color-yellow-bright);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-text);
  box-shadow: var(--shadow-hard-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  align-items: center; gap: 0.4rem;
  flex-shrink: 0;
}
.nav__phone:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--color-text);
}
.nav__phone svg { flex-shrink: 0; }

/* Hamburger toggle */
.nav__toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 12px; z-index: 200;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.nav__toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--color-text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile nav panel */
.nav__list {
  position: fixed; top: 0; right: -100%;
  width: 75%; max-width: 320px; height: 100vh; height: 100dvh;
  background: var(--color-bg);
  display: flex; flex-direction: column;
  justify-content: center; gap: 0.25rem;
  padding: 2rem;
  transition: right 0.3s ease;
  z-index: 150;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.nav__list--open { right: 0; }

.nav__list a {
  display: block; padding: 0.8rem 1rem;
  text-decoration: none; color: var(--color-text);
  font-weight: 600; font-size: 1.15rem;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.nav__list a:hover,
.nav__list a:focus { background: var(--color-secondary); }

/* Overlay */
.nav__overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 140;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.nav__overlay--visible { opacity: 1; pointer-events: auto; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  padding: 3rem 0 4.5rem;
  text-align: center;
  min-height: 55vh;
  display: flex; align-items: center;
}

.hero__content { position: relative; z-index: 2; width: 100%; }

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900; line-height: 1.12;
  margin-bottom: 1rem;
}
.hero h1 .highlight { color: #3B9FB4; }

.hero__tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}

.hero__cta {
  display: flex; flex-direction: column;
  gap: 1rem; align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-size: 1.05rem; font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-text);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center; justify-content: center;
  line-height: 1.3;
}
.btn--primary {
  background: var(--color-yellow-bright); color: var(--color-text);
  box-shadow: var(--shadow-hard);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hard-lg);
}
.btn--secondary {
  background: var(--color-white); color: var(--color-text);
  box-shadow: var(--shadow-hard);
}
.btn--secondary:hover,
.btn--secondary:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hard-lg);
}

/* ===== MEMPHIS DECORATIVE SHAPES ===== */
.hero__shapes {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}

.memphis-shape {
  position: absolute;
  opacity: 0.7;
}

/* Lightning bolt top-right */
.memphis-bolt--1 {
  width: 50px; top: 8%; right: 5%;
  transform: rotate(15deg);
}
/* Circle top-left */
.memphis-circle--1 {
  width: 40px; top: 15%; left: 3%;
}
/* Triangle */
.memphis-triangle--1 {
  width: 32px; bottom: 20%; left: 8%;
  transform: rotate(-10deg);
}
/* Zigzag */
.memphis-zigzag--1 {
  width: 90px; bottom: 12%; right: 3%;
  transform: rotate(-5deg);
}
/* Dots */
.memphis-dot--1 {
  width: 14px; top: 30%; right: 15%;
}
.memphis-dot--2 {
  width: 10px; top: 50%; left: 12%;
}
/* Cross */
.memphis-cross--1 {
  width: 20px; top: 45%; right: 8%;
}
/* Lightning bolt bottom-left */
.memphis-bolt--2 {
  width: 35px; bottom: 25%; left: 2%;
  transform: rotate(-20deg);
  opacity: 0.4;
}
/* Squiggle */
.memphis-squiggle--1 {
  width: 80px; top: 65%; right: 10%;
  opacity: 0.5;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  padding: 0 1rem;
  margin-top: 3.5rem;
}
.section-divider svg {
  width: 100%;
  height: 16px;
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-hard);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hard-lg);
}

.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  border: 2px solid var(--color-text);
}
.service-card__icon svg {
  width: 26px; height: 26px;
}
.service-card__icon--blue { background: var(--color-primary); }
.service-card__icon--yellow { background: var(--color-yellow); }
.service-card__icon--pink { background: var(--color-pink); }
.service-card__icon--urgent { background: var(--color-yellow-bright); }

.service-card h3 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

/* Urgent card – coral Memphis accent */
.service-card--urgent {
  border-color: var(--color-coral);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-coral-light) 100%);
  box-shadow: 4px 4px 0 var(--color-coral);
}
.service-card--urgent:hover {
  box-shadow: 6px 6px 0 var(--color-coral);
}

.service-card__icon--coral {
  background: var(--color-coral);
  color: var(--color-white);
}
.service-card__icon--coral svg {
  stroke: var(--color-white);
}

/* ===== ABOUT ===== */
.about { background: var(--color-bg-alt); }

.about__content {
  max-width: 800px;
  margin: 0 auto;
}

.about__text { margin-bottom: 2rem; }

.about__lead {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about__text p {
  margin-bottom: 1rem;
  max-width: none;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-hard-sm);
}

.stat-card__number {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
}

.stat-card__label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 600;
}

/* ===== WHY US ===== */
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.why-card {
  background: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-hard);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hard-lg);
}

.why-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-secondary);
  border: 2px solid var(--color-text);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.why-card__icon svg {
  width: 28px; height: 28px;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.93rem;
  color: var(--color-text-light);
  max-width: none;
}

/* ===== SERVICE AREA ===== */
.area { background: var(--color-bg-alt); }

.area__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.area__tier {
  background: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-hard-sm);
}

.area__tier-title {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap;
}

.area__tier-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-text);
  flex-shrink: 0;
}
.area__tier-badge--1 { background: var(--color-primary); }
.area__tier-badge--2 { background: var(--color-yellow); }
.area__tier-badge--3 { background: var(--color-pink); }

.area__list {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.area__list li {
  background: var(--color-bg);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(45,45,45,0.15);
}

.area__note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
}
.area__note a {
  color: var(--color-primary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.75rem;
}

.faq__item {
  background: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq__item[open] {
  box-shadow: var(--shadow-hard);
}

/* Highlighted FAQ item – coral accent */
.faq__item--highlight {
  border-color: var(--color-coral);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-coral-light) 100%);
  box-shadow: 4px 4px 0 var(--color-coral);
}
.faq__item--highlight[open] {
  box-shadow: 5px 5px 0 var(--color-coral);
}
.faq__item--highlight .faq__question {
  font-size: 1.05rem;
}
.faq__item--highlight .faq__question::after {
  color: var(--color-coral);
}

.faq__question {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition);
}
.faq__question:hover { opacity: 0.8; }

/* Custom arrow */
.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq__item[open] .faq__question::after {
  content: '−';
}

/* Remove default marker */
.faq__question::-webkit-details-marker { display: none; }

.faq__answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.65;
}
.faq__answer p { max-width: none; }
.faq__answer a {
  color: var(--color-primary-dark);
  font-weight: 600;
}

/* ===== CONTACT ===== */
.contact { background: var(--color-bg-alt); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact__map {
  border: 2px solid var(--color-text);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  min-height: 300px;
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.contact__card {
  background: var(--color-white);
  border: 2px solid var(--color-text);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-hard);
}

.contact__card h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact__item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contact__item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary-dark);
}
.contact__item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.15rem;
}
.contact__item a {
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
}
.contact__item a:hover { text-decoration: underline; }
.contact__item span {
  display: block;
  font-size: 0.95rem;
}

.contact__urgent {
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.85rem !important;
  margin-top: 0.25rem;
}

.contact__cta {
  margin-top: 1.5rem;
  width: 100%;
}


/* ===== FOOTER ===== */
.footer {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer__logo-icon {
  width: 48px; height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer__logo span { color: var(--color-primary); }

.footer__desc {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.55;
}

.footer__nav h3,
.footer__contact h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--color-yellow-bright);
}

.footer__nav ul {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.footer__nav a {
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity var(--transition);
  padding: 0.35rem 0;
  display: inline-block;
}
.footer__nav a:hover { opacity: 1; }

.footer__contact p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.3rem;
}
.footer__contact a {
  text-decoration: none;
  font-weight: 600;
  opacity: 1;
}
.footer__contact a:hover { text-decoration: underline; }

.footer__hours {
  margin-top: 0.5rem;
  font-size: 0.85rem !important;
  opacity: 0.6 !important;
}

.footer__bottom {
  border-top: 1px solid rgba(253,245,230,0.15);
  padding-top: 1.5rem;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  opacity: 0.6;
  max-width: none;
}

/* ===== FOCUS STYLES ===== */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ===== RESPONSIVE: 480px+ ===== */
@media (min-width: 480px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__cta {
    flex-direction: row;
    justify-content: center;
  }

  .area__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .area__grid > :last-child {
    grid-column: 1 / -1;
  }
}

/* ===== RESPONSIVE: 768px+ (Tablet) ===== */
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
  .section { padding: 5rem 0; }

  /* Nav: show desktop phone, hide mobile phone */
  .nav__phone { display: flex; }
  .nav__phone-mobile { display: none; }

  /* Nav: show inline links on desktop, hide hamburger */
  .nav__toggle { display: none; }
  .nav__list {
    position: static;
    width: auto; max-width: none; height: auto;
    flex-direction: row; gap: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav__list a {
    font-size: 0.9rem;
    padding: 0.5rem 0.7rem;
  }
  .nav__overlay { display: none; }

  /* Hero */
  .hero { min-height: 60vh; padding: 4rem 0 5rem; }

  /* Services */
  .services__grid { gap: 1.5rem; }

  /* Contact: 2 equal columns, same height */
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  /* Stats */
  .about__stats { gap: 1.5rem; }
  .stat-card__number { font-size: 1.5rem; }

  /* Memphis shapes - bigger on tablet */
  .memphis-bolt--1 { width: 70px; top: 5%; right: 8%; }
  .memphis-circle--1 { width: 55px; top: 10%; left: 5%; }
  .memphis-triangle--1 { width: 45px; }
  .memphis-zigzag--1 { width: 120px; }
  .memphis-dot--1 { width: 18px; }
  .memphis-dot--2 { width: 14px; }
  .memphis-cross--1 { width: 24px; }
  .memphis-bolt--2 { width: 50px; }
  .memphis-squiggle--1 { width: 100px; }
}

/* ===== RESPONSIVE: 1024px+ (Desktop) ===== */
@media (min-width: 1024px) {
  .hero { min-height: 65vh; padding: 5rem 0 6rem; }

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

  .why__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .area__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .area__grid > :last-child {
    grid-column: auto;
  }

  .nav__list a {
    font-size: 0.95rem;
    padding: 0.5rem 0.85rem;
  }

  /* Memphis shapes - full decorative scale */
  .memphis-bolt--1 { width: 90px; top: 3%; right: 12%; opacity: 0.8; }
  .memphis-circle--1 { width: 70px; top: 8%; left: 8%; opacity: 0.8; }
  .memphis-triangle--1 { width: 55px; bottom: 15%; left: 12%; }
  .memphis-zigzag--1 { width: 160px; bottom: 10%; right: 5%; }
  .memphis-dot--1 { width: 22px; top: 25%; right: 20%; }
  .memphis-dot--2 { width: 16px; top: 45%; left: 15%; }
  .memphis-cross--1 { width: 28px; top: 40%; right: 18%; }
  .memphis-bolt--2 { width: 65px; bottom: 18%; left: 5%; opacity: 0.5; }
  .memphis-squiggle--1 { width: 130px; top: 60%; right: 15%; opacity: 0.6; }
}

/* ===== RESPONSIVE: 1280px+ (Wide) ===== */
@media (min-width: 1280px) {
  .container { padding: 0 2.5rem; }
  .section { padding: 6rem 0; }

  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== PRINT ===== */
@media print {
  .site-header, .hero__shapes, .section-divider, .nav__toggle,
  .nav__overlay, .contact__map { display: none; }
  body { background: white; color: black; font-size: 12pt; }
  .section { padding: 1rem 0; }
  .service-card, .why-card, .faq__item, .stat-card,
  .area__tier, .contact__card { box-shadow: none; border: 1px solid #ccc; }
  a { color: black; text-decoration: underline; }
  a[href^="tel:"]::after { content: " (" attr(href) ")"; }
  details .faq__answer { display: block; }
}

/* ===== 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;
  }
}

/* ===== BODY SCROLL LOCK (used by JS for mobile menu) ===== */
body.menu-open {
  overflow: hidden;
}
