/* ============================================================
   Michael Taylor Taylor WLLCVRNG — styles.css
   Premium Modern Contractor Design System
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --color-primary:    #1a2e4a;
  --color-accent:     #c8972a;
  --color-accent-lt:  #e8b84b;
  --color-dark:       #0f1e30;
  --color-light:      #ffffff;
  --color-soft:       #f0f4f8;
  --color-mid:        #e8ecf0;
  --color-text:       #2d3748;
  --color-text-muted: #718096;
  --color-success:    #38a169;

  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-accent:  'Playfair Display', serif;

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

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.18);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.24);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --nav-height: 72px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(200,151,42,.1);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.section-label.light { color: var(--color-accent-lt); background: rgba(232,184,75,.15); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.section-title.light { color: var(--color-light); text-shadow: 0 2px 8px rgba(0,0,0,.3); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 48px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-lt));
  color: var(--color-dark);
  box-shadow: 0 4px 20px rgba(200,151,42,.35);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(200,151,42,.5);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: var(--color-light);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--color-light);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Glass Cards ── */
.glass-card {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.glass-card-dark {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.glass-card-dark:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(15,30,48,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-light);
  letter-spacing: .02em;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.brand-tag {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--color-accent-lt);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-light);
  background: rgba(255,255,255,.1);
}
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-lt)) !important;
  color: var(--color-dark) !important;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(200,151,42,.3);
}
.nav-cta:hover {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 4px 20px rgba(200,151,42,.5);
}
.nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-light);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,20,40,.82) 0%,
    rgba(26,46,74,.65) 50%,
    rgba(10,20,40,.5) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent-lt);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-light);
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-nap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.hero-nap a { color: var(--color-accent-lt); font-weight: 600; }
.hero-nap a:hover { text-decoration: underline; }

.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: 2;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ============================================================
   SECTION BACKGROUNDS
   ============================================================ */
.section-light   { background: var(--color-light); padding: 96px 0; }
.section-soft    { background: var(--color-soft);  padding: 96px 0; }
.section-gradient {
  background: linear-gradient(160deg, #1a2e4a 0%, #0f1e30 60%, #1a2e4a 100%);
  padding: 96px 0 120px;
  position: relative;
}
.section-gradient .section-title { color: var(--color-light); }
.section-gradient .section-subtitle { color: rgba(255,255,255,.65); }
.section-gradient .section-label { color: var(--color-accent-lt); background: rgba(232,184,75,.15); }

.section-dark {
  background: linear-gradient(160deg, #0f1e30 0%, #1a2e4a 100%);
  padding: 96px 0 120px;
  position: relative;
}
.section-gradient-contact {
  background: linear-gradient(135deg, var(--color-soft) 0%, #dde6f0 100%);
  padding: 96px 0;
}

.section-wave-bottom,
.section-wave-bottom-dark {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  line-height: 0;
}
.section-wave-bottom svg,
.section-wave-bottom-dark svg { width: 100%; height: 60px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text p {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  padding: 28px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(240,244,248,.8));
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* Image above text */
.service-card--img .service-img-wrap {
  height: 200px;
  overflow: hidden;
}
.service-card--img .service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card--img:hover .service-img-wrap img { transform: scale(1.07); }
.service-card--img .service-body {
  padding: 24px;
}
.service-card--img .service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-light);
  margin-bottom: 10px;
}
.service-card--img .service-body p {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

/* Card overlay style */
.service-card--overlay .service-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.service-card--overlay .service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card--overlay:hover .service-img-wrap img { transform: scale(1.08); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,40,.92) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.service-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-light);
  margin-bottom: 8px;
}
.service-overlay p {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.service-icon-badge {
  width: 48px; height: 48px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-icon-badge svg { width: 22px; height: 22px; color: var(--color-dark); }

/* Icon in circular badge */
.service-card--icon {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-icon-circle {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-lt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(200,151,42,.35);
}
.service-icon-circle svg { width: 26px; height: 26px; color: var(--color-dark); }
.service-card--icon .service-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-light);
  margin-bottom: 8px;
}
.service-card--icon .service-body p {
  font-size: .9rem;
  color: rgba(255,255,255,.68);
  line-height: 1.6;
  margin-bottom: 14px;
}
.service-icon-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius-md);
  opacity: .85;
  transition: opacity var(--transition);
}
.service-card--icon:hover .service-icon-img { opacity: 1; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 36px 28px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,.85), rgba(240,244,248,.7));
}
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--color-primary), #2a4a6e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(26,46,74,.25);
}
.why-icon svg { width: 28px; height: 28px; color: var(--color-accent-lt); }
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.why-card p {
  font-size: .92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  padding: 32px 28px;
}
.review-stars {
  color: var(--color-accent-lt);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-size: .95rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-light);
}
.review-location {
  font-size: .8rem;
  color: var(--color-accent-lt);
  font-weight: 500;
  letter-spacing: .06em;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 16px;
}
.area-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--color-light);
  border: 2px solid var(--color-mid);
  border-radius: 99px;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.area-pill:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.area-dot {
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--color-light);
  border: 1px solid var(--color-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item.open { border-color: var(--color-accent); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-accent); }
.faq-item.open .faq-question { color: var(--color-accent); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: .96rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.contact-info address p {
  font-size: .98rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.contact-info address a {
  color: var(--color-accent);
  font-weight: 600;
}
.contact-info address a:hover { text-decoration: underline; }
.contact-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(26,46,74,.07), rgba(26,46,74,.04));
  border: 1px solid rgba(26,46,74,.12);
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Form */
.contact-form-wrap {
  background: var(--color-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-mid);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
  letter-spacing: .03em;
}
.req { color: var(--color-accent); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--color-mid);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .96rem;
  color: var(--color-text);
  background: var(--color-soft);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200,151,42,.15);
  background: var(--color-light);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-success-msg {
  text-align: center;
  padding: 48px 24px;
}
.form-success-msg svg {
  width: 56px; height: 56px;
  color: var(--color-success);
  margin: 0 auto 16px;
}
.form-success-msg h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.form-success-msg p {
  color: var(--color-text-muted);
}

/* ============================================================
   MAP
   ============================================================ */
.map-section {
  background: var(--color-soft);
  padding: 64px 0;
}
.map-title {
  text-align: center;
  margin-bottom: 32px;
}
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--color-mid);
}
.map-wrapper iframe { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--color-dark); }
.footer-gradient {
  background: linear-gradient(160deg, #0f1e30 0%, #1a2e4a 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 24px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-business-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.footer-address {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
}
.footer-address a {
  color: var(--color-accent-lt);
  transition: color var(--transition);
}
.footer-address a:hover { color: var(--color-light); }

.footer-nav h4,
.footer-areas h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-light);
  margin-bottom: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-accent-lt); }

.footer-areas p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-areas { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10,20,40,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,.1);
    z-index: 999;
  }
  .nav-links.open { display: flex; animation: fadeIn .25s ease; }
  .nav-link { width: 100%; padding: 14px 16px; font-size: 1rem; }
  .nav-cta { text-align: center; margin-top: 8px; }

  .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-nap { flex-direction: column; gap: 8px; }

  .section-light, .section-soft, .section-gradient,
  .section-dark, .section-gradient-contact { padding: 64px 0; }

  .about-stats { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card--overlay .service-img-wrap { height: 260px; }

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

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

  .contact-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 32px; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .areas-grid { gap: 10px; }
  .area-pill { font-size: .84rem; padding: 8px 16px; }
}
