/* ============================================
   Michael & Son Services - Charlotte, NC
   Industrial-Warm Aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --navy: #0d1b2a;
  --navy-light: #1b2d45;
  --copper: #c77d35;
  --copper-light: #daa04d;
  --copper-dark: #a86520;
  --cream: #f5f0eb;
  --warm-gray: #e8e2db;
  --steel: #6b7280;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-body: #3d3d3d;
  --shadow-sm: 0 1px 3px rgba(13, 27, 42, 0.12);
  --shadow-md: 0 4px 12px rgba(13, 27, 42, 0.15);
  --shadow-lg: 0 8px 32px rgba(13, 27, 42, 0.2);
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--copper); color: var(--white);
  padding: 12px 24px; z-index: 10000;
  font-weight: 600; text-decoration: none; border-radius: var(--radius);
}
.skip-link:focus { top: 16px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin-bottom: 1rem; }

a { color: var(--copper); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--copper-dark); }
a:focus-visible { outline: 3px solid var(--copper); outline-offset: 2px; border-radius: 2px; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem; letter-spacing: 0.08em;
  border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; line-height: 1;
}
.btn:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; }
.btn-primary { background: var(--copper); color: var(--white); border-color: var(--copper); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--copper-dark); border-color: var(--copper-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--white); color: var(--navy); transform: translateY(-2px);
}
.btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-dark:hover, .btn-dark:focus-visible {
  background: var(--navy-light); border-color: var(--navy-light); color: var(--white);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy); color: var(--white);
  padding: 8px 0; font-size: 0.85rem;
}
.top-bar .container {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
}
.top-bar a { color: var(--copper-light); font-weight: 500; }
.top-bar a:hover { color: var(--white); }
.top-bar-badge {
  background: var(--copper); color: var(--white);
  padding: 2px 10px; border-radius: 20px;
  font-weight: 600; font-size: 0.8rem;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--navy);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 3px solid var(--copper);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; padding: 12px 0;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 48px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 18px; color: var(--white);
  font-weight: 500; font-size: 0.95rem;
  border-radius: var(--radius); transition: all var(--transition);
  position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: 2px; left: 18px; right: 18px;
  height: 2px; background: var(--copper);
  transform: scaleX(0); transition: transform var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover { color: var(--copper); }
.main-nav a:focus-visible { outline: 3px solid var(--copper); outline-offset: 2px; }

.header-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--copper); color: var(--white);
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  transition: all var(--transition);
}
.header-cta:hover, .header-cta:focus-visible {
  background: var(--copper-dark); color: var(--white);
  transform: translateY(-1px);
}
.header-cta:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 28px; height: 3px;
  background: var(--white); margin: 5px 0;
  transition: all var(--transition); border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 80vh;
  display: flex; align-items: center;
  background: var(--navy); overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(27,45,69,0.7) 50%, rgba(13,27,42,0.85) 100%);
  z-index: 2;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 3;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero .container { position: relative; z-index: 4; }
.hero-content { max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(199,125,53,0.2); border: 1px solid rgba(199,125,53,0.4);
  color: var(--copper-light); padding: 8px 20px;
  border-radius: 30px; font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.05em; margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease both;
}
.hero h1 { color: var(--white); margin-bottom: 20px; animation: fadeSlideUp 0.8s 0.1s ease both; }
.hero h1 span { color: var(--copper-light); }
.hero-subtitle {
  color: rgba(255,255,255,0.85); font-size: 1.15rem;
  line-height: 1.7; margin-bottom: 36px; max-width: 560px;
  animation: fadeSlideUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex; gap: 48px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeSlideUp 0.8s 0.4s ease both;
}
.hero-stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; color: var(--copper-light); line-height: 1;
}
.hero-stat-label { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 4px; }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section-label {
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--copper); margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-desc {
  color: var(--steel); font-size: 1.05rem;
  max-width: 600px; margin-bottom: 48px;
}
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .section-label { color: var(--copper-light); }
.section-dark .section-desc { color: rgba(255,255,255,0.65); }
.section-warm { background: var(--warm-gray); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== PROMO STRIP ===== */
.promo-strip {
  background: linear-gradient(135deg, var(--copper-dark), var(--copper));
  padding: 16px 0; text-align: center; color: var(--white);
}
.promo-strip p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; letter-spacing: 0.05em; margin: 0;
}

/* ===== SERVICE CARDS (Home) ===== */
.service-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition); text-decoration: none; color: inherit;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg); color: inherit;
}
.service-card:focus-visible { outline: 3px solid var(--copper); outline-offset: 2px; }
.service-card-img {
  height: 200px; overflow: hidden; position: relative;
}
.service-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.5), transparent 60%);
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 24px; }
.service-card-body h3 { margin-bottom: 8px; font-size: 1.6rem; }
.service-card-body p { color: var(--steel); font-size: 0.9rem; margin-bottom: 12px; }
.card-link {
  font-weight: 700; color: var(--copper-dark); font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 4px;
}
.card-link:hover { color: var(--navy); }

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat-box {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; text-align: center; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--copper);
  transition: transform var(--transition);
}
.stat-box:hover { transform: translateY(-4px); }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; color: var(--navy); display: block;
}
.stat-label { font-size: 0.85rem; color: var(--steel); margin-top: 4px; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card { text-align: center; padding: 40px 24px; }
.why-icon {
  width: 72px; height: 72px;
  background: rgba(199,125,53,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem; color: var(--copper-light);
}
.why-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.5rem; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.testimonial-card {
  background: var(--white); padding: 32px;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  position: relative; border-left: 4px solid var(--copper);
}
.testimonial-card::before {
  content: '\201C'; font-family: Georgia, serif;
  font-size: 4rem; color: var(--copper); opacity: 0.2;
  position: absolute; top: 8px; left: 20px; line-height: 1;
}
.testimonial-card blockquote {
  font-style: italic; color: var(--text-body);
  line-height: 1.8; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.testimonial-card cite {
  font-style: normal; font-weight: 700;
  color: var(--navy); font-size: 0.9rem;
}

/* ===== MEMBERSHIP ===== */
.membership-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  color: var(--white);
}
.membership-content { padding: 48px; }
.membership-content h3 { color: var(--white); font-size: 2.2rem; margin-bottom: 16px; }
.membership-content p { opacity: 0.9; margin-bottom: 24px; }
.membership-benefits { margin-bottom: 32px; }
.membership-benefits li {
  padding: 8px 0 8px 28px; position: relative; font-weight: 500;
}
.membership-benefits li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--copper-light); font-weight: 700;
}
.membership-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 48px; position: relative;
  background: rgba(0,0,0,0.2);
}
.membership-visual::before {
  content: ''; position: absolute; inset: 24px;
  border: 2px solid rgba(199,125,53,0.3); border-radius: var(--radius);
}
.membership-cta-inner { text-align: center; position: relative; z-index: 1; }
.membership-cta-inner .save-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; color: var(--copper-light); letter-spacing: 0.1em;
}
.membership-cta-inner .save-sub {
  color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 8px;
}

/* ===== PROMOS ===== */
.promo-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.promo-card {
  background: var(--white); border: 2px dashed var(--copper);
  border-radius: var(--radius); padding: 20px;
  text-align: center; transition: transform var(--transition);
}
.promo-card:hover { transform: scale(1.02); }
.promo-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; color: var(--navy); margin-bottom: 4px;
}
.promo-detail { font-size: 0.85rem; color: var(--steel); margin: 0; }

/* ===== CERT BADGES ===== */
.cert-row {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
}
.cert-row img { height: 50px; width: auto; }
.cert-tag {
  background: var(--navy); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.85rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 72px 0 80px; text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p {
  color: rgba(255,255,255,0.7); font-size: 1.1rem;
  max-width: 600px; margin: 0 auto;
}
.breadcrumb {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 16px; font-size: 0.85rem;
}
.breadcrumb a { color: var(--copper-light); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ===== ABOUT PAGE ===== */
.about-story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.about-story img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.about-text p { line-height: 1.9; }

.timeline { position: relative; padding-left: 40px; margin-top: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px; background: var(--copper); opacity: 0.3;
}
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before {
  content: ''; position: absolute; left: -29px; top: 6px;
  width: 12px; height: 12px; background: var(--copper); border-radius: 50%;
}
.timeline-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; color: var(--copper);
}
.timeline-text { color: var(--text-body); font-size: 0.95rem; }

.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.team-card {
  text-align: center; padding: 28px 16px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border-top: 3px solid var(--copper);
}
.team-avatar {
  width: 72px; height: 72px; background: var(--navy);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 16px; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; color: var(--copper-light);
}
.team-card h4 { margin-bottom: 4px; font-size: 1.2rem; }
.team-card p { color: var(--steel); font-size: 0.85rem; margin: 0; }

.credentials-list {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px;
}
.credential-item {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); padding: 10px 18px;
  border-radius: var(--radius); font-size: 0.9rem;
  font-weight: 500; color: var(--navy); box-shadow: var(--shadow-sm);
}
.credential-item::before {
  content: '\2713'; color: var(--copper); font-weight: 700;
}

/* ===== SERVICES PAGE ===== */
.service-group { margin-bottom: 56px; }
.service-group:last-child { margin-bottom: 0; }
.service-group-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px; padding-bottom: 12px;
  border-bottom: 3px solid var(--copper);
}
.service-group-icon {
  width: 48px; height: 48px; background: var(--copper);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.service-group-header h2 { font-size: 2rem; margin: 0; }

.service-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.service-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; background: var(--white);
  border-radius: var(--radius); border-left: 3px solid var(--copper);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.service-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-name { font-weight: 600; color: var(--text-dark); }
.service-price {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--copper); font-size: 1.05rem;
  white-space: nowrap; margin-left: 12px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-card {
  background: var(--white); padding: 24px;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.contact-card h3 {
  font-size: 1.3rem; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 2px solid var(--warm-gray);
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 10px;
}
.contact-detail .label {
  font-weight: 700; color: var(--navy);
  min-width: 75px; font-size: 0.9rem;
}
.contact-detail .value { color: var(--text-body); }
.contact-detail a { color: var(--copper); font-weight: 600; }
.contact-detail a:hover { color: var(--copper-dark); }

.contact-form-box {
  background: var(--white); padding: 36px;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
}
.contact-form-box h2 { margin-bottom: 8px; font-size: 2rem; }
.contact-form-box .form-intro {
  color: var(--steel); margin-bottom: 24px; font-size: 0.9rem;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-weight: 600;
  font-size: 0.9rem; color: var(--text-dark); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--warm-gray); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: 1rem;
  color: var(--text-dark); background: var(--cream);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(199,125,53,0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== SERVICE AREAS ===== */
.areas-wrap {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.area-tag {
  background: rgba(199,125,53,0.1); color: var(--navy);
  padding: 8px 16px; border-radius: 20px;
  font-weight: 500; font-size: 0.85rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--navy); padding: 72px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(199,125,53,0.1) 0%, transparent 60%);
}
.cta-section h2 { color: var(--white); margin-bottom: 12px; position: relative; }
.cta-section p {
  color: rgba(255,255,255,0.7); font-size: 1.05rem;
  margin-bottom: 28px; position: relative;
}
.cta-section .btn { position: relative; }

/* ===== FOOTER ===== */
.site-footer {
  background: #080f18; color: rgba(255,255,255,0.6);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-phone {
  color: var(--copper-light); font-weight: 700; font-size: 1.1rem;
  display: inline-block; margin-bottom: 8px;
}
.footer-phone:hover { color: var(--white); }
.footer-social {
  display: flex; gap: 10px; margin-top: 16px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.75rem;
  font-weight: 700; transition: all var(--transition);
}
.footer-social a:hover { background: var(--copper); color: var(--white); }

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--white); font-size: 1.15rem;
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
}
.footer-col ul a:hover { color: var(--copper-light); }
.footer-col ul a:focus-visible { outline: 2px solid var(--copper); outline-offset: 2px; }

.footer-bottom {
  padding: 20px 0; text-align: center;
  font-size: 0.8rem; opacity: 0.5;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-box { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 320px; height: 100vh;
    background: var(--navy); flex-direction: column;
    align-items: flex-start; padding: 80px 32px 32px;
    box-shadow: var(--shadow-lg); transition: right var(--transition);
    z-index: 999;
  }
  .main-nav.open { right: 0; }
  .main-nav a {
    width: 100%; padding: 14px 0;
    border-bottom: 1px solid var(--navy-light);
  }
  .main-nav a::after { display: none; }
  .header-cta { display: none; }

  .hero { min-height: 65vh; }
  .hero-stats { gap: 24px; }
  .hero-stat-number { font-size: 1.8rem; }

  .service-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 28px; }
  .about-story img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar .container { justify-content: center; text-align: center; }
  .promo-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .service-item { flex-direction: column; align-items: flex-start; gap: 4px; }
  .contact-form-box { padding: 24px; }
}
