/* ============================================
   VITALE & SON — Mobile-First Stylesheet
   Designed by Fishtown Web Design
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --navy: #0c2340;
  --navy-light: #153560;
  --navy-dark: #081a2f;
  --accent: #e8590c;
  --accent-light: #ff7a33;
  --accent-dark: #c44a0a;
  --blue: #2563eb;
  --blue-light: #3b82f6;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Functional */
  --green: #16a34a;
  --plumbing-color: #2563eb;
  --heating-color: #e8590c;
  --ac-color: #0891b2;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad: 4rem 0;
  --container-pad: 0 1.25rem;

  /* Misc */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-pad);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.938rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 89, 12, 0.35);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--gray-100);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}

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

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

.btn-lg {
  padding: 0.938rem 2rem;
  font-size: 1.063rem;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.063rem;
  color: var(--gray-500);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(232, 89, 12, 0.1);
  color: var(--accent);
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

.section-tag i {
  font-size: 0.875rem;
}

.section-header--light h2 {
  color: var(--white);
}

.section-header--light p {
  color: rgba(255,255,255,0.7);
}

.section-tag--light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.text-accent {
  color: var(--accent);
}

/* ---------- SAMPLE BANNER ---------- */
.sample-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  font-size: 0.813rem;
  position: relative;
  z-index: 1000;
}

.sample-banner-inner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.625rem 1.25rem;
}

.sample-banner-inner i:first-child {
  color: var(--accent-light);
  flex-shrink: 0;
}

.sample-banner-inner span {
  flex: 1;
}

.sample-banner a {
  color: var(--accent-light);
  text-decoration: underline;
  font-weight: 600;
}

.sample-banner a:hover {
  color: var(--white);
}

.sample-banner-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0.25rem;
  flex-shrink: 0;
  transition: color var(--transition);
}

.sample-banner-close:hover {
  color: var(--white);
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.logo-img--footer {
  height: 80px;
  filter: brightness(0) invert(1);
}

/* Nav */
.nav {
  display: none;
}

.nav.open {
  display: flex;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.nav-link {
  display: block;
  padding: 0.875rem 1rem;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--accent);
  background: var(--gray-50);
}

.header-cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a4a7a 100%);
  padding: 5rem 0 4rem;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 89, 12, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--accent-light);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.813rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero h1 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.063rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.813rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--accent-light);
  font-size: 1rem;
}

/* ---------- SERVICES ---------- */
.services {
  padding: var(--section-pad);
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-icon--plumbing {
  background: rgba(37, 99, 235, 0.1);
  color: var(--plumbing-color);
}

.service-icon--heating {
  background: rgba(232, 89, 12, 0.1);
  color: var(--heating-color);
}

.service-icon--ac {
  background: rgba(8, 145, 178, 0.1);
  color: var(--ac-color);
}

.service-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
}

.service-card > p {
  color: var(--gray-500);
  margin-bottom: 1.25rem;
  font-size: 0.938rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.service-list i {
  color: var(--green);
  font-size: 0.938rem;
  flex-shrink: 0;
}

/* ---------- ABOUT ---------- */
.about {
  padding: var(--section-pad);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.about-image {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-experience-badge {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  box-shadow: var(--shadow-lg);
}

.exp-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.about-content .section-tag {
  display: inline-flex;
}

.about-content h2 {
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
}

.about-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-content > p {
  margin-bottom: 1rem;
  font-size: 0.938rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.stat i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.stat strong {
  font-size: 0.813rem;
  color: var(--navy);
}

.stat span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ---------- WHY US ---------- */
.why-us {
  padding: var(--section-pad);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 89, 12, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.why-card h3 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial {
  padding: var(--section-pad);
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
  color: #f59e0b;
  font-size: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.938rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-card blockquote strong {
  color: var(--navy);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1.5rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 3rem 0;
}

.cta-inner {
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: var(--section-pad);
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 89, 12, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.375rem;
  margin: 0 auto 1rem;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.938rem;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.hours-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.375rem 0;
  color: var(--gray-600);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}

.hours-table td:last-child {
  text-align: right;
}

.contact-social {
  text-align: center;
  margin-top: 2.5rem;
}

.contact-social p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 1.25rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 3.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

/* Footer logo is inverted via .logo-img--footer filter */

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.938rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-light);
}

.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-contact li i {
  color: var(--accent);
  font-size: 0.875rem;
}

.social-links--footer {
  margin-top: 1.25rem;
  justify-content: flex-start;
}

.social-links--footer a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: all var(--transition);
}

.social-links--footer a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.footer-credit a {
  color: var(--accent-light);
  font-weight: 600;
}

.footer-credit a:hover {
  color: var(--white);
}

/* ============================================
   RESPONSIVE — TABLET (640px+)
   ============================================ */
@media (min-width: 640px) {
  :root {
    --section-pad: 5rem 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-sub {
    font-size: 1.125rem;
  }

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

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    justify-self: center;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .section-header h2 {
    font-size: 2.25rem;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --section-pad: 6rem 0;
    --container-pad: 0 2rem;
  }

  .hero {
    padding: 6rem 0 5rem;
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  /* Nav desktop */
  .hamburger {
    display: none;
  }

  .nav {
    display: flex;
  }

  .nav-list {
    flex-direction: row;
    gap: 0.25rem;
  }

  .nav-link {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
  }

  .header-cta {
    display: inline-flex;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid .service-card:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
  }

  .about-content h2 {
    font-size: 2.25rem;
  }

  /* Why */
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }
}

/* ============================================
   RESPONSIVE — LARGE DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero-sub {
    font-size: 1.188rem;
  }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
