/* =============================================
   INVICTA LOCK AND KEY — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&family=Fraunces:ital,wght@1,400;1,500&display=swap');

:root {
  --black: #0a0a0a;
  --black-soft: #1a1a1a;
  --red: #c41e1e;
  --red-bright: #e63232;
  --red-deep: #8b1414;
  --cream: #f7f5f0;
  --white: #ffffff;
  --gray: #6b6b6b;
  --gray-light: #d4d4d4;
  --line: #e5e5e5;

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Fraunces', Georgia, serif;

  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--black);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h-display {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.h-section {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1;
}
.h-card { font-size: 1.5rem; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
}
.italic-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--red);
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 14px;
}
.topbar a {
  color: var(--white);
  opacity: 0.85;
  margin-right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .2s, opacity .2s;
}
.topbar a:last-child { margin-right: 0; }
.topbar a:hover { color: var(--red-bright); opacity: 1; }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #2dd55b;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(45,213,91,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(45,213,91,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(45,213,91,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,213,91,0); }
}

/* =============================================
   HEADER
   ============================================= */
.header {
  height: 90px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-crest {
  height: 62px;
  width: auto;
}
.logo-wordmark {
  height: 38px;
  width: auto;
}
.footer .logo-crest {
  height: 50px;
}
.footer .logo-wordmark {
  height: 35px;
}
.nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  transition: color .2s;
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--red); }
.nav a.active { color: var(--red); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--red);
}
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: 0;
  transition: background .2s;
}
.nav-cta:hover { background: var(--black) !important; color: var(--white) !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: transform .2s;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all .2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--red);
  border-color: var(--red);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,30,30,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: 'INVICTA';
  position: absolute;
  bottom: -30px;
  left: -20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(8rem, 20vw, 22rem);
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--red-bright);
}
.hero h1 {
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero h1 .italic-accent {
  display: block;
  color: var(--red-bright);
  font-size: 0.55em;
  margin-top: 10px;
}
.hero p {
  font-size: 1.15rem;
  max-width: 540px;
  opacity: 0.85;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 30px;
  margin-top: 42px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red-bright);
  line-height: 1;
}
.hero-meta-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
}
.hero-card {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 100%);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255,255,255,0.06) 10px,
      rgba(255,255,255,0.06) 20px
    );
  transform: translate(50px, -50px);
  pointer-events: none;
}
.hero-card-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 14px;
}
.hero-card-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1;
}
.hero-card-text {
  font-size: 0.95rem;
  margin-bottom: 28px;
  opacity: 0.92;
}
.hero-card a {
  display: block;
  background: var(--black);
  color: var(--white);
  padding: 16px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background .2s;
}
.hero-card a:hover { background: var(--white); color: var(--black); }

/* =============================================
   OWNER INTRO  (Meet Steve band, below hero)
   ============================================= */
.owner {
  padding: 90px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.owner-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
}
.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.owner-text .eyebrow { margin-bottom: 18px; }
.owner-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  margin-bottom: 22px;
}
.owner-text p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}
.owner-sign {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--black);
  line-height: 1.2;
}
.owner-sign span {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
}
@media (max-width: 960px) {
  .owner { padding: 50px 0; }
  .owner-grid { grid-template-columns: 1fr; gap: 30px; }
  .owner-photo { aspect-ratio: 16 / 10; }
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services {
  padding: 100px 0;
  background: var(--cream);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 500px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}
.service-card {
  padding: 50px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .25s;
  display: block;
  color: var(--black);
}
.service-card:nth-child(2n) { border-right: none; }
.service-card:nth-last-child(-n+2) { border-bottom: none; }
.service-card:hover {
  background: var(--black);
  color: var(--white);
}
.service-card:hover .service-num,
.service-card:hover .service-arrow { color: var(--red-bright); }
.service-card:hover h3 { color: var(--white); }
.service-card:hover p { color: var(--gray-light); }
.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-arrow {
  font-size: 22px;
  color: var(--gray);
  transition: transform .2s, color .2s;
}
.service-card:hover .service-arrow { transform: translateX(6px); }
.service-card h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
  transition: color .2s;
}
.service-card p {
  font-size: 0.98rem;
  color: var(--gray);
  margin-bottom: 18px;
  transition: color .2s;
}
.service-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.service-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border: 1px solid currentColor;
  opacity: 0.7;
}

/* =============================================
   STORY / ABOUT
   ============================================= */
.story {
  padding: 110px 0;
  background: var(--white);
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.story-visual {
  position: sticky;
  top: 120px;
  background: var(--black);
  color: var(--white);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}
.story-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 60%, var(--red) 60%, var(--red) 62%, transparent 62%);
  opacity: 0.4;
  pointer-events: none;
}
.story-visual-label {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 18px;
  opacity: 0.7;
}
.story-visual h3 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.story-visual h3 .accent { color: var(--red-bright); }
.story-visual-meaning {
  font-size: 0.95rem;
  opacity: 0.85;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  margin-top: 30px;
}
.story-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 30px;
}
.story-text p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.story-text strong {
  color: var(--black);
  font-weight: 600;
}

/* =============================================
   TRUST / WHY US
   ============================================= */
.trust {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}
.trust .section-head h2 { color: var(--white); }
.trust .section-head p { color: var(--gray-light); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.trust-card {
  padding: 50px 30px 50px 0;
  border-right: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.trust-card:last-child { border-right: none; }
.trust-card:not(:first-child) { padding-left: 40px; }
.trust-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--red-bright);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
  letter-spacing: -0.02em;
}
.trust-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--white);
}
.trust-card p {
  color: var(--gray-light);
  font-size: 0.98rem;
}

/* =============================================
   AREAS GRID
   ============================================= */
.areas {
  padding: 100px 0;
  background: var(--cream);
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.area-item {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s, color .2s;
}
.area-item:hover { background: var(--red); color: var(--white); }
.area-item::after {
  content: '→';
  opacity: 0.4;
  transition: opacity .2s, transform .2s;
}
.area-item:hover::after { opacity: 1; transform: translateX(4px); }
.areas-cta {
  margin-top: 50px;
  text-align: center;
}
.areas-cta p { color: var(--gray); margin-bottom: 18px; }

/* =============================================
   REVIEWS
   ============================================= */
.reviews {
  padding: 100px 0;
  background: var(--white);
}
.reviews-carousel {
  margin-top: 60px;
}
.reviews-viewport {
  position: relative;
}
.reviews-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border: 1px solid var(--line);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track > .review-card {
  flex: 0 0 calc(100% / 3);
  scroll-snap-align: start;
}
.reviews-track .review-text {
  flex-grow: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviews-track .review-author { margin-top: auto; }
.rev-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  z-index: 3;
}
.rev-arrow:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.rev-prev { left: -23px; }
.rev-next { right: -23px; }
.rev-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.rev-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.rev-dot:hover { background: var(--gray); }
.rev-dot.active { background: var(--red); transform: scale(1.3); }
.review-card {
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.review-card:last-child { border-right: none; }
.review-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.review-text {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 28px;
}
.review-text em {
  color: var(--black);
  font-style: normal;
  font-weight: 600;
}
.review-author {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
}
.review-location {
  font-size: 13px;
  color: var(--gray);
  margin-top: 2px;
}
.review-source {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0.7;
}
.reviews-footer {
  margin-top: 50px;
  text-align: center;
}
.reviews-footer p {
  color: var(--gray);
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.google-rating-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.02em;
}
.google-rating-meta {
  text-align: left;
}
.google-rating-stars {
  color: #f5a623;
  font-size: 20px;
  letter-spacing: 2px;
}
.google-rating-count {
  font-size: 13px;
  color: var(--gray);
  margin-top: 2px;
}
.faq {
  padding: 100px 0;
  background: var(--cream);
}
.faq-grid {
  margin-top: 60px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: 20px;
}
.faq-question:hover {
  color: var(--red);
}
.faq-icon {
  font-size: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-family: var(--font-display);
  font-weight: 300;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 0 28px;
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 800px;
  line-height: 1.7;
}
@media (max-width: 960px) {
  .reviews-track > .review-card { flex-basis: calc(100% / 2); }
}
@media (max-width: 720px) {
  .reviews-track > .review-card { flex-basis: 100%; }
  .rev-arrow { display: none; }
}

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  background: var(--red);
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 30px,
      rgba(0,0,0,0.06) 30px,
      rgba(0,0,0,0.06) 60px
    );
  pointer-events: none;
}
.cta-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  max-width: 700px;
}
.cta-strip h2 .italic-accent { color: var(--black); display: inline; }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 30px;
}
.footer .logo-img {
  height: 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo-mark { color: var(--white); font-size: 32px; }
.footer-brand p {
  color: var(--gray-light);
  margin-top: 24px;
  margin-bottom: 28px;
  font-size: 0.95rem;
  max-width: 360px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: all .2s;
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
}
.footer-col h4 {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--red-bright);
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: var(--gray-light);
  font-size: 0.95rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--gray);
}
.footer-bottom .italic-accent {
  color: var(--gray-light);
  font-size: 14px;
}

/* =============================================
   PAGE HEADERS (for service pages)
   ============================================= */
.page-header {
  background: var(--black);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,30,30,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .container { position: relative; }
.page-header .breadcrumb {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 30px;
  opacity: 0.6;
}
.page-header .breadcrumb a:hover { color: var(--red-bright); opacity: 1; }
.page-header h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 900px;
}
.page-header h1 .italic-accent { color: var(--red-bright); }
.page-header .lead {
  font-size: 1.2rem;
  max-width: 600px;
  opacity: 0.85;
}

/* =============================================
   CONTENT SECTIONS (service pages)
   ============================================= */
.content-section {
  padding: 100px 0;
  background: var(--white);
}
.content-section.alt { background: var(--cream); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.content-grid h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}
.content-grid p {
  color: var(--gray);
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.content-grid ul.features {
  list-style: none;
  margin-top: 30px;
}
.content-grid ul.features li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  align-items: start;
}
.content-grid ul.features li:last-child { border-bottom: none; }
.content-grid ul.features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.content-grid ul.features li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  color: var(--black);
}
.content-grid ul.features li span {
  color: var(--gray);
  font-size: 0.96rem;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info h2 { margin-bottom: 30px; }
.contact-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-block:last-child { border-bottom: none; }
.contact-block-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.contact-block a, .contact-block p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--black);
  text-transform: uppercase;
}
.contact-block a:hover { color: var(--red); }
.contact-form {
  background: var(--cream);
  padding: 50px 40px;
}
.contact-form h3 { margin-bottom: 24px; font-size: 1.4rem; }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
  margin-bottom: 6px;
  color: var(--gray);
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--red);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .story { padding: 50px 0; }
  .story-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;
  }
  .story-visual { position: relative; }
  .story-visual::before { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card {
    padding: 40px 0 !important;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .trust-card:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .content-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .service-card:nth-last-child(-n+1) { border-bottom: none; }
  .service-card:not(:last-child) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .topbar { font-size: 12px; }
  .topbar .container { justify-content: center; }
  .topbar-status { display: none; }
  .hero { padding: 50px 0 60px; }
  .services, .areas { padding: 50px 0; }
  .story-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    align-items: stretch !important;
  }
  .story-visual {
    position: relative !important;
    top: auto !important;
    overflow: visible !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .story-text {
    position: relative !important;
    top: auto !important;
    margin: 0 !important;
    width: 100% !important;
    z-index: 1;
  }
  .story-text .eyebrow { 
    display: inline-flex !important; 
    visibility: visible !important;
    color: var(--red) !important;
    margin-bottom: 12px;
  }
  .story-text h2 { 
    display: block !important;
    visibility: visible !important;
    color: var(--black) !important;
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
  .story-text p {
    display: block !important;
    color: var(--gray) !important;
  }
  .trust { padding: 50px 0; }
  .content-section { padding: 50px 0; }
  .content-grid { gap: 24px; }
  .faq { padding: 50px 0; }
  .faq-grid { margin-top: 30px; }
  .section-head { margin-bottom: 30px; }
  .page-header { padding: 50px 0 40px; }
  .cta-strip { padding: 50px 0; }
  .cta-strip .container { flex-direction: column; align-items: flex-start; }
  .footer { padding: 50px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; }
}
/* =============================================
   MOBILE NAV (when toggled)
   ============================================= */
.nav.open {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px 28px 30px;
  border-bottom: 1px solid var(--line);
  z-index: 99;
}
.nav.open ul {
  flex-direction: column;
  width: 100%;
  gap: 4px;
  align-items: stretch;
}
.nav.open ul li { width: 100%; }
.nav.open ul a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
