/* =========================================
   EXIOSS — Main Stylesheet
   Design: Dark navy primary, EXIOSS red accent
   ========================================= */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Sora:wght@600;700&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1f2e;
  background: #fff;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* --- Design Tokens --- */
:root {
  --red:        #C8102E;
  --red-dark:   #a00d24;
  --navy:       #0d1b2a;
  --navy-mid:   #162236;
  --navy-light: #1e3a5f;
  --slate:      #4a5568;
  --mist:       #f4f7fb;
  --border:     #e2e8f0;
  --white:      #ffffff;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);

  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-w: 1200px;
  --section-pad: 5rem 1.5rem;
}

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--slate); }
p:last-child { margin-bottom: 0; }

/* --- Eyebrow label --- */
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .18s, color .18s, transform .15s;
  text-decoration: none;
  line-height: 1;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-ghost { background: transparent; color: var(--red); border-color: var(--red); }
.btn-ghost:hover { background: var(--red); color: var(--white); }

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-logo img { height: 60px; width: auto; }

.main-nav { display: flex; align-items: center; }
.main-nav ul.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav .nav-menu li { position: relative; }
.main-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  transition: color .15s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--white); }

.nav-dropdown,
.main-nav .menu-item-has-children { position: relative; }
.nav-dropdown::before,
.main-nav .menu-item-has-children::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: .5rem;
}
.nav-dropdown > a,
.main-nav .menu-item-has-children > a { display: flex; align-items: center; gap: .3rem; }
.nav-dropdown > a::after,
.main-nav .menu-item-has-children > a::after { content: '▾'; font-size: .7rem; }
.dropdown-menu,
.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 240px;
  overflow: hidden;
  border: 1px solid var(--border);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.main-nav .menu-item-has-children:hover .sub-menu { display: block; }
.dropdown-menu a,
.main-nav .sub-menu a {
  display: block;
  padding: .65rem 1.1rem;
  font-size: .875rem;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
  transition: background .12s, color .12s;
}
.dropdown-menu a:last-child,
.main-nav .sub-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover,
.main-nav .sub-menu a:hover { background: var(--mist); color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  opacity: .85;
  transition: opacity .15s;
}
.header-phone:hover { opacity: 1; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .25rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a5c 100%);
  color: var(--white);
  padding: 6rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,16,46,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,16,46,.15);
  border: 1px solid rgba(200,16,46,.35);
  color: #ff8096;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat .lbl { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: .25rem; }
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero-card-stack { position: relative; width: 100%; max-width: 420px; }
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-card-label { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .5rem; }
.hero-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 1rem; }
.status-row { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.status-dot.green { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,.5); }
.status-dot.amber { background: #f59e0b; }
.status-row span { font-size: .85rem; color: rgba(255,255,255,.75); }
.compliance-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.cbadge {
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .65rem;
  border-radius: 4px;
  letter-spacing: .04em;
  background: rgba(200,16,46,.25);
  color: #ff8096;
  border: 1px solid rgba(200,16,46,.4);
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
  background: var(--mist);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy);
}
.trust-item svg { color: var(--red); flex-shrink: 0; }

/* =========================================
   SECTION HEADINGS
   ========================================= */
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head h2 { margin-bottom: .75rem; }
.section-head p { font-size: 1.0625rem; max-width: 580px; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* =========================================
   SERVICES GRID
   ========================================= */
.services { padding: var(--section-pad); background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  background: var(--white);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(200,16,46,.25);
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(200,16,46,.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--red);
  font-size: 1.4rem;
}
.service-card h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.service-card p { font-size: .9rem; margin-bottom: 1.25rem; }
.service-card a.more-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .15s;
}
.service-card a.more-link:hover { gap: .6rem; }

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why { padding: var(--section-pad); background: var(--navy); color: var(--white); }
.why h2 { color: var(--white); }
.why .section-head p { color: rgba(255,255,255,.65); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.why-card .icon { font-size: 1.75rem; margin-bottom: 1rem; }
.why-card h3 { color: var(--white); font-size: 1rem; margin-bottom: .5rem; }
.why-card p { color: rgba(255,255,255,.6); font-size: .875rem; }

/* =========================================
   COMPLIANCE STRIP
   ========================================= */
.compliance { padding: 3rem 1.5rem; background: var(--mist); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.compliance-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.compliance h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.compliance p { max-width: 560px; margin: 0 auto 1.75rem; }
.compliance-badges-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.comp-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .6rem 1.25rem;
  font-weight: 700;
  font-size: .875rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* =========================================
   ABOUT STRIP (homepage)
   ========================================= */
.about-strip { padding: var(--section-pad); background: var(--white); }
.about-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--mist);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  color: var(--slate);
  font-size: .875rem;
  padding: 3rem;
  text-align: center;
}
.about-placeholder .ph-icon { font-size: 3rem; opacity: .3; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { margin-bottom: 1rem; }
.about-content ul { list-style: none; margin-bottom: 1.5rem; }
.about-content ul li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9375rem; color: var(--slate);
  margin-bottom: .5rem;
}
.about-content ul li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: .15rem; }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--red);
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 1.75rem; font-size: 1.0625rem; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { padding: var(--section-pad); background: var(--mist); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: .75rem; }
.testimonial-card blockquote { font-size: .9375rem; color: var(--slate); font-style: italic; margin-bottom: 1rem; }
.testimonial-author { font-weight: 600; font-size: .875rem; color: var(--navy); }
.testimonial-co { font-size: .8rem; color: var(--slate); }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: var(--navy);
  padding: 4rem 1.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,16,46,.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 640px; font-size: 1.0625rem; }
.breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: .4; }

/* =========================================
   SERVICE DETAIL PAGE
   ========================================= */
.service-detail { padding: var(--section-pad); }
.service-detail-inner { max-width: var(--max-w); margin: 0 auto; }
.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3.5rem;
}
.detail-main h2 { margin-bottom: 1rem; font-size: 1.5rem; }
.detail-main p { margin-bottom: 1rem; }
.detail-main ul {
  list-style: none;
  margin: 1rem 0 1.75rem;
}
.detail-main ul li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .9375rem; color: var(--slate);
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
}
.detail-main ul li:last-child { border-bottom: none; }
.detail-main ul li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: .15rem; }
.detail-sidebar { position: sticky; top: 90px; }
.sidebar-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.sidebar-cta h3 { color: var(--white); margin-bottom: .75rem; font-size: 1.15rem; }
.sidebar-cta p { color: rgba(255,255,255,.65); font-size: .875rem; margin-bottom: 1.25rem; }
.sidebar-cta .btn { width: 100%; justify-content: center; margin-bottom: .75rem; }
.sidebar-phone { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.related-services { margin-top: 2rem; }
.related-services h4 { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); margin-bottom: 1rem; }
.related-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
  color: var(--navy);
  font-weight: 500;
  transition: color .15s;
}
.related-link:last-child { border-bottom: none; }
.related-link:hover { color: var(--red); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.partner-chip {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .6rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

/* =========================================
   ABOUT / OUR STORY PAGE
   ========================================= */
.story-section { padding: var(--section-pad); }
.story-section-inner { max-width: var(--max-w); margin: 0 auto; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.story-grid.reverse { direction: rtl; }
.story-grid.reverse > * { direction: ltr; }
.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--mist);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.value-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.value-card .val-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.value-card h3 { font-size: 1rem; margin-bottom: .4rem; }
.value-card p { font-size: .875rem; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-page { padding: var(--section-pad); }
.contact-inner { max-width: var(--max-w); margin: 0 auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.5rem; }
.info-block { margin-bottom: 1.5rem; }
.info-block h4 { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); margin-bottom: .4rem; }
.info-block a, .info-block p { font-size: 1.0625rem; font-weight: 500; color: var(--navy); margin: 0; }
.info-block a:hover { color: var(--red); }
.hours-table { font-size: .9rem; }
.hours-table tr td { padding: .2rem 0; color: var(--slate); }
.hours-table tr td:first-child { font-weight: 500; color: var(--navy); padding-right: 1rem; }
.map-embed { margin-top: 1.5rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-placeholder {
  background: var(--mist);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--slate);
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; font-size: 1.3rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group textarea { height: 130px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; margin-top: .5rem; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo-img { height: 60px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; max-width: 280px; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.social-link:hover { background: var(--red); color: var(--white); }
.footer-col h4 { font-family: var(--font-display); font-size: .85rem; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact p { font-size: .875rem; margin-bottom: .5rem; }
.footer-contact a { color: rgba(255,255,255,.85); font-weight: 500; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-img-wrap { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-grid.reverse { direction: ltr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .main-nav { display: none; }
  .main-nav.open { display: flex; position: absolute; top: 84px; left: 0; right: 0; background: var(--navy-mid); padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .main-nav.open ul.nav-menu { flex-direction: column; align-items: flex-start; gap: .25rem; width: 100%; }
  .nav-dropdown .dropdown-menu,
  .main-nav .menu-item-has-children .sub-menu { display: flex; flex-direction: column; position: static; box-shadow: none; border: none; background: transparent; }
  .dropdown-menu a,
  .main-nav .sub-menu a { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.08); }
  .nav-toggle { display: block; }
  .hero { padding: 3.5rem 1.25rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat .num { font-size: 1.5rem; }
  .trust-bar-inner { gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .header-phone { display: none; }
  .site-header { position: relative; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
