/* ════════════════════════════════════════════════════════════════
   MAQSIM PROTECTION — main.css
   Design System v1.0 | Shared across EN + FR + all pages
   ════════════════════════════════════════════════════════════════ */


/* ── CSS Custom Properties ────────────────────────────────────── */
:root {
  /* Gold palette — extracted from Maqsim logo */
  --gold:          #C9941A;
  --gold-bright:   #F5C518;
  --gold-deep:     #8B5A0A;
  --gold-amber:    #5C3000;
  --gold-grad:     linear-gradient(135deg, #F5C518 0%, #C9941A 50%, #8B5A0A 100%);
  --gold-tint:     rgba(201, 148, 26, .08);
  --gold-border:   rgba(201, 148, 26, .25);

  /* Neutrals — warm-toned to complement the gold */
  --charcoal:      #1C1410;
  --warm-dark:     #2A1F14;
  --warm-dark2:    #3D2910;
  --warm-gray:     #7A6E5E;
  --light-gray:    #C9C3B8;

  /* Backgrounds */
  --cream:         #FAF8F2;
  --ivory:         #F3EFE3;
  --sand:          #EDE6D4;

  /* Typography */
  --display:       'Cormorant Garamond', Georgia, serif;
  --body:          'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --sp-xs:         8px;
  --sp-sm:         16px;
  --sp-md:         32px;
  --sp-lg:         64px;
  --sp-xl:         112px;

  /* Layout */
  --max-w:         1240px;
  --r-sm:          4px;
  --r-md:          12px;

  /* Animation */
  --ease:          cubic-bezier(.25, .46, .45, .94);
  --dur:           .4s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ══════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
   ══════════════════════════════════════════════════════════════ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════════════════════════ */
.eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-xs);
}

.display-h1 {
  font-family: var(--display);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.025em;
}

.display-h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.01em;
}

.display-h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.15;
}

.text-gold   { color: var(--gold); }
.text-bright { color: var(--gold-bright); }
.text-cream  { color: var(--cream); }
.text-muted  { color: var(--warm-gray); }
.italic      { font-style: italic; }

/* ══════════════════════════════════════════════════════════════
   DIVIDERS
   ══════════════════════════════════════════════════════════════ */
.gold-rule {
  height: 3px;
  background: var(--gold-grad);
  width: 100%;
  border: none;
}

.section-divider {
  border: none;
  height: 1px;
  background: var(--sand);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold-grad);
  color: var(--cream);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary:hover  { opacity: .88; transform: translateY(-1px); }
.btn-primary:active { opacity: 1; transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--cream);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(201, 148, 26, .45);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(201, 148, 26, .08); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-dark:hover { background: var(--warm-dark2); transform: translateY(-1px); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--light-gray);
  cursor: pointer;
  transition: border-color var(--dur), color var(--dur);
  white-space: nowrap;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
   ══════════════════════════════════════════════════════════════ */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.rv.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .10s; }
.d2 { transition-delay: .20s; }
.d3 { transition-delay: .30s; }
.d4 { transition-delay: .40s; }
.d5 { transition-delay: .50s; }

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(26, 20, 16, .97);   /* Always solid — never transparent */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, .45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--sp-md);
}

.site-logo { flex-shrink: 0; line-height: 0; }
.site-logo img { height: 48px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(250, 248, 242, .72);
  letter-spacing: .04em;
  transition: color .2s;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.site-nav a:hover         { color: var(--cream); }
.site-nav a:hover::after  { width: 100%; }
.site-nav a.active        { color: var(--gold-bright); }
.site-nav a.active::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.lang-switch {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, .55);
  border: 1px solid rgba(201, 148, 26, .3);
  padding: 5px 12px;
  border-radius: 3px;
  transition: color .2s, border-color .2s;
}
.lang-switch:hover { color: var(--cream); border-color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  line-height: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.site-nav.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(26, 20, 16, .98);
  padding: 28px 28px 36px;
  gap: 24px;
  z-index: 199;
  border-top: 1px solid rgba(201, 148, 26, .2);
  border-bottom: 1px solid rgba(201, 148, 26, .12);
}
.site-nav.open a {
  font-size: 22px;
  font-family: var(--display);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0;
}

/* ══════════════════════════════════════════════════════════════
   HERO — Full-bleed photo with gradient overlay
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--warm-dark);
}

/* Subtle grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(201, 148, 26, .018) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(201, 148, 26, .018) 60px);
  pointer-events: none;
  z-index: 2;
}

/* Full-bleed background image container */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
}
/* Gradient: deep dark left (text) → fades to transparent right (shows full photo) */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 12, 6, 0.97) 0%,
    rgba(24, 16, 8, 0.90) 30%,
    rgba(28, 18, 8, 0.58) 52%,
    rgba(26, 16, 8, 0.15) 72%,
    transparent 100%
  );
}

/* Text content — left side */
.hero-left {
  position: relative;
  z-index: 3;
  padding: 140px 60px 80px 80px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Thin gold accent bar along the left edge of text column */
.hero-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 140px;
  bottom: 80px;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--gold) 20%,
    var(--gold-bright) 50%,
    var(--gold) 80%,
    transparent 100%);
}

/* hero-divider not needed in full-bleed layout */
.hero-divider { display: none; }

/* hero-right alias kept for any legacy refs — hidden */
.hero-right { display: none; }

/* Hero typography */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 700;
  line-height: .97;
  letter-spacing: -.025em;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold-bright); }

.hero-body {
  font-size: 16px;
  font-weight: 300;
  color: rgba(250, 248, 242, .72);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  padding: 14px 20px;
  background: rgba(201, 148, 26, .08);
  border: 1px solid rgba(201, 148, 26, .2);
  border-radius: 6px;
  max-width: fit-content;
}
.hero-stars {
  color: var(--gold-bright);
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
}
.hero-rating-text {
  font-size: 13px;
  font-weight: 400;
  color: rgba(250, 248, 242, .7);
}
.hero-rating-text strong {
  font-weight: 500;
  color: var(--cream);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Floating badge — bottom right of hero */
.hero-badge {
  position: absolute;
  bottom: 48px;
  right: 60px;
  z-index: 4;
  background: rgba(26, 20, 16, .85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 148, 26, .3);
  border-radius: var(--r-md);
  padding: 16px 22px;
  text-align: center;
  min-width: 130px;
}
.hero-badge-num {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.hero-badge-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, .55);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── Page hero (interior pages — compact) ── */
.page-hero {
  background: var(--warm-dark);
  padding: 160px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero-bc {
  font-size: 12px;
  color: rgba(245, 197, 24, .5);
  letter-spacing: .04em;
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-hero-bc a { transition: color .2s; }
.page-hero-bc a:hover { color: var(--gold-bright); }
.page-hero-bc span { color: var(--gold); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.0;
  letter-spacing: -.02em;
  max-width: 800px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-bright); }
.page-hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250, 248, 242, .6);
  margin-top: 16px;
  max-width: 560px;
}
.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 450px at 12% 15%, rgba(245,197,24,.14), transparent 60%),
    radial-gradient(ellipse 550px 550px at 92% 105%, rgba(201,148,26,.12), transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: repeating-linear-gradient(115deg, transparent 0 2px, var(--gold-bright) 2px 3px, transparent 3px 40px);
  pointer-events: none;
  z-index: 1;
}

.page-hero .wrap {
  position: relative;
  z-index: 2;
}

.page-hero-shimmer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--gold-deep), var(--gold), var(--gold-bright));
  background-size: 200% 100%;
  animation: heroShimmer 8s linear infinite;
}

@keyframes heroShimmer {
  from { background-position: 0% 0; }
  to   { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-shimmer { animation: none; }
}

/* Animated bottom shimmer rule — replaces the old static gold bar */
.page-hero-shimmer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--gold-deep), var(--gold), var(--gold-bright));
  background-size: 200% 100%;
  animation: heroShimmer 8s linear infinite;
  z-index: 2;
}

@keyframes heroShimmer {
  from { background-position: 0% 0; }
  to   { background-position: -200% 0; }
}

/* Drifting gold orbs — fill the empty right-hand space of the hero */
.page-hero-orb-1,
.page-hero-orb-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.page-hero-orb-1 {
  top: -60px;
  right: 5%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(245, 197, 24, .16), transparent 70%);
  filter: blur(4px);
  animation: pageHeroDrift1 9s ease-in-out infinite;
}

.page-hero-orb-2 {
  bottom: -80px;
  right: 18%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 148, 26, .13), transparent 70%);
  filter: blur(4px);
  animation: pageHeroDrift2 12s ease-in-out infinite;
}

@keyframes pageHeroDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-24px, 20px) scale(1.08); }
}

@keyframes pageHeroDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(18px, -16px) scale(1.05); }
}

/* Floating gold particles — same empty right-hand space */
.page-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.page-hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
  opacity: .5;
  animation-name: pageHeroFloat;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes pageHeroFloat {
  0%, 100% { transform: translateY(0);     opacity: .25; }
  50%      { transform: translateY(-18px); opacity: .6; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .page-hero-shimmer,
  .page-hero-orb-1,
  .page-hero-orb-2,
  .page-hero-particles span {
    animation: none;
  }
}

/* Hide decorative orbs/particles on small screens — hero is narrow,
   text column takes the full width, no empty space to fill */
@media (max-width: 768px) {
  .page-hero-orb-1,
  .page-hero-orb-2,
  .page-hero-particles {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--warm-dark);
  border-top: 1px solid rgba(201, 148, 26, .15);
  border-bottom: 1px solid rgba(201, 148, 26, .15);
}
.trust-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
  padding: 22px 28px;
  justify-content: center;
}
.trust-item + .trust-item {
  border-left: 1px solid rgba(201, 148, 26, .15);
}
.trust-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201, 148, 26, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1;
}
.trust-text strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
}
.trust-text span {
  font-size: 11px;
  color: rgba(250, 248, 242, .5);
  letter-spacing: .02em;
}

/* ══════════════════════════════════════════════════════════════
   AEO QUICK ANSWER BLOCK
   ══════════════════════════════════════════════════════════════ */
.quick-answer-wrap {
  background: var(--cream);
  padding: 52px 0;
}
.quick-answer-box {
  max-width: 780px;
  margin: 0 auto;
  background: var(--ivory);
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md);
  padding: 28px 36px;
}
.aeo-lbl {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(201, 148, 26, .12);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.quick-answer-text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   SECTION HEADERS (centered eyebrow + heading)
   ══════════════════════════════════════════════════════════════ */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }

/* ══════════════════════════════════════════════════════════════
   SERVICES GRID (Home page — asymmetric)
   ══════════════════════════════════════════════════════════════ */
.services-section {
  background: var(--cream);
  padding: var(--sp-xl) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.svc-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--ivory);
  border: 1px solid rgba(201, 148, 26, .12);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28, 20, 16, .12);
}
.svc-card--featured { grid-row: 1 / 3; }
.svc-photo {
  overflow: hidden;
  background: var(--warm-dark2);
}
.svc-card--featured .svc-photo { height: 340px; border-radius: 200px 200px 0 0; }
.svc-card--small   .svc-photo  { height: 170px; border-radius: 120px 120px 0 0; }
.svc-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}
.svc-card:hover .svc-photo img { transform: scale(1.04); }
.svc-body { padding: 24px 28px 28px; }
.svc-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 10px;
}
.svc-card--featured .svc-name { font-size: 30px; margin-bottom: 14px; }
.svc-desc {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.svc-tag {
  font-size: 11px;
  color: var(--gold-deep);
  background: rgba(201, 148, 26, .1);
  border: 1px solid rgba(201, 148, 26, .2);
  padding: 3px 10px;
  border-radius: 3px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s;
}
.svc-link:hover { gap: 10px; }
.svc-link::after { content: '→'; }

/* ══════════════════════════════════════════════════════════════
   SERVICES PAGE GRID (services.html — detailed cards)
   ══════════════════════════════════════════════════════════════ */
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  align-items: start;
}
.service-block { scroll-margin-top: 100px; }
.service-block-photo {
  border-radius: 200px 200px var(--r-md) var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--warm-dark2);
  margin-bottom: 28px;
}
.service-block-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-block h2 {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 16px;
}
.service-block h2 em { font-style: italic; color: var(--gold); }
.service-block p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.service-bullet-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.5;
}
.service-bullet-list li::before {
  content: '—';
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   PARTNER LOGOS STRIP
   ══════════════════════════════════════════════════════════════ */
.partners-section {
  background: var(--ivory);
  padding: 48px 0;
  /* No overflow:hidden — lets all 6 logos breathe */
}
.partners-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.partners-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  white-space: nowrap;
}
.partners-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--light-gray), transparent);
}
.partners-strip {
  display: flex;
  align-items: center;
  justify-content: space-between; /* distribute all 6 evenly */
  gap: 24px;
  flex-wrap: wrap;
}
.partner-logo {
  flex: 1;
  min-width: 80px;
  max-width: 140px;
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.5);
  transition: filter var(--dur) var(--ease);
}
.partner-logo:hover { filter: grayscale(.1) opacity(.85); }

/* ══════════════════════════════════════════════════════════════
   BANNER — Full-bleed lifestyle image with overlapping card
   ══════════════════════════════════════════════════════════════ */

/* Break out of any parent max-width — true full viewport width */
.banner-section {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: var(--cream);
}

/* Short, centered image */
.banner-img {
  width: 100%;
  height: clamp(400px, 52vw, 680px);  /* doubled from previous */
  overflow: hidden;
  position: relative;
  display: block;
}
.banner-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;  /* shift down to show dog on sofa */
  display: block;
}
/* Fade bottom of image into cream card below */
.banner-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 42%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(250, 248, 242, .65) 60%,
    rgba(250, 248, 242, .95) 100%);
  pointer-events: none;
}

/* Centered overlapping card — no left border, centered text */
.banner-card {
  position: relative;
  z-index: 2;
  margin-top: -64px;
}
.banner-card .wrap {
  display: flex;
  justify-content: center;
}
.banner-card-inner {
  background: var(--cream);
  padding: 40px 56px 52px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow:
    0 -4px 28px rgba(28, 20, 16, .06),
    0 8px 24px rgba(28, 20, 16, .05);
}
/* Gold gradient rule at the very top of the card */
.banner-card-inner::before {
  content: '';
  display: block;
  height: 3px;
  width: 80px;
  background: var(--gold-grad);
  border-radius: 2px;
  margin: 0 auto 28px;
}
.banner-card-inner .eyebrow {
  justify-content: center;  /* centre the inline-flex eyebrow */
}
.banner-card-inner .display-h2 { color: var(--charcoal); }
.banner-card-inner .display-h2 em { font-style: italic; color: var(--gold); }


/* ── Legacy about classes kept for any reuse ───────────────── */
.about-section {
  background: var(--cream);
  padding: 72px 0 var(--sp-xl);
}
.about-intro {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto var(--sp-lg);
  text-align: center;
}

/* 3-column pillars grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: var(--ivory);
  border: 1px solid rgba(201, 148, 26, .12);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: 36px 32px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28, 20, 16, .10);
}
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1;
}
.pillar-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.15;
}
.pillar-body { font-size: 14px; color: var(--warm-gray); line-height: 1.7; }

/* Legacy flex pillars — kept for other pages */
.pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-text h4 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.pillar-text p { font-size: 14px; color: var(--warm-gray); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   INDUSTRIES SERVED
   ══════════════════════════════════════════════════════════════ */
.industries-section { background: var(--warm-dark); padding: var(--sp-xl) 0; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.ind-card {
  background: rgba(250, 248, 242, .04);
  border: 1px solid rgba(201, 148, 26, .15);
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}
.ind-card:hover {
  background: rgba(201, 148, 26, .08);
  border-color: rgba(201, 148, 26, .35);
  transform: translateY(-3px);
}
.ind-icon { font-size: 30px; margin-bottom: 14px; display: block; line-height: 1; }
.ind-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.ind-desc { font-size: 12px; color: rgba(250, 248, 242, .5); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   BEFORE / AFTER SLIDER
   ══════════════════════════════════════════════════════════════ */
.proof-section { background: var(--ivory); padding: var(--sp-xl) 0; }
.proof-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.before-after {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  user-select: none;
  background: var(--warm-dark2);
  cursor: ew-resize;
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
}
.ba-before img, .ba-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.ba-after  { clip-path: inset(0 50% 0 0); }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold-bright);
  z-index: 4;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-grad);
  border: 3px solid var(--cream);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--cream);
  pointer-events: none;
}
.ba-label {
  position: absolute;
  bottom: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(26, 20, 16, .72);
  padding: 4px 12px;
  border-radius: 3px;
  z-index: 6;
  pointer-events: none;
}
.ba-label--before { left: 14px; }
.ba-label--after  { right: 14px; }
.ba-range {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: ew-resize;
  width: 100%;
  height: 100%;
  z-index: 10;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}
.proof-content { }
.proof-content .display-h2 { margin: 12px 0 20px; }
.proof-body { font-size: 15px; color: var(--warm-gray); line-height: 1.75; margin-bottom: 24px; }
.proof-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.proof-list li { display: flex; gap: 10px; font-size: 14px; color: var(--charcoal); }
.proof-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   VIDEO SECTION
   ══════════════════════════════════════════════════════════════ */
.videos-section { background: var(--cream); padding: var(--sp-xl) 0; }
.videos-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}
.video-main {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--warm-dark);
}
.video-main iframe { width: 100%; height: 100%; border: none; display: block; }
.video-list { display: flex; flex-direction: column; gap: 12px; }
.video-thumb {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--ivory);
  border: 1px solid rgba(201, 148, 26, .12);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}
.video-thumb:hover {
  background: var(--sand);
  border-color: rgba(201, 148, 26, .3);
  transform: translateX(4px);
}
.video-thumb-img {
  width: 88px; height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--warm-dark2);
}
.video-thumb-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-thumb-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 3px;
}
.video-thumb-dur { font-size: 12px; color: var(--warm-gray); }

/* ══════════════════════════════════════════════════════════════
   AREAS SERVED
   ══════════════════════════════════════════════════════════════ */
.areas-section { background: var(--ivory); padding: var(--sp-xl) 0; }
.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.areas-content .display-h2 { margin: 12px 0 20px; }
.areas-body { font-size: 15px; color: var(--warm-gray); line-height: 1.75; margin-bottom: 28px; }
.areas-phone {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
  margin-bottom: 20px;
  transition: color .2s;
}
.areas-phone:hover { color: var(--gold); }
.cities-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.city-pill {
  font-size: 12px;
  color: var(--gold-deep);
  background: rgba(201, 148, 26, .08);
  border: 1px solid rgba(201, 148, 26, .18);
  padding: 5px 14px;
  border-radius: 99px;
  transition: background .2s, color .2s;
}
.city-pill:hover { background: rgba(201, 148, 26, .18); color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════════════════════ */
.faq-section { background: var(--cream); padding: var(--sp-xl) 0; }
.faq-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-intro { position: sticky; top: 104px; }
.faq-intro .display-h2 { margin: 12px 0 20px; }
.faq-intro-body { font-size: 15px; color: var(--warm-gray); line-height: 1.75; margin-bottom: 28px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-item:first-child { border-top: 1px solid var(--sand); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-q-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold-tint);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--gold);
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--warm-dark);
  padding: var(--sp-xl) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'M';
  position: absolute;
  right: -40px; top: -60px;
  font-family: var(--display);
  font-size: 400px;
  font-weight: 700;
  color: rgba(201, 148, 26, .04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  position: relative;
  z-index: 1;
}
.cta-band-text .eyebrow { color: rgba(245, 197, 24, .75); }
.cta-band-text h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.0;
  margin: 12px 0 0;
}
.cta-band-text h2 em { font-style: italic; color: var(--gold-bright); }
.cta-band-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}
.cta-phone-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, .4);
  margin-bottom: 2px;
  display: block;
  text-align: right;
}
.cta-phone-large {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  transition: color .2s;
}
.cta-phone-large:hover { color: var(--gold-bright); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--charcoal); padding: 72px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250, 248, 242, .08);
}
.footer-logo { line-height: 0; margin-bottom: 20px; }
.footer-logo img { height: 44px; width: auto; }
.footer-tagline {
  font-size: 14px;
  color: rgba(250, 248, 242, .4);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: rgba(250, 248, 242, .6);
  line-height: 1.5;
}
.footer-contact-item a { transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold-bright); }
.footer-col h4 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(250, 248, 242, .5);
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-links a::before { content: '—'; color: var(--gold-deep); font-size: 10px; flex-shrink: 0; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(250, 248, 242, .28); line-height: 1.5; }
.footer-credit a { color: rgba(250, 248, 242, .4); transition: color .2s; }
.footer-credit a:hover { color: var(--gold-bright); }
.footer-lang a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, .45);
  border: 1px solid rgba(201, 148, 26, .2);
  padding: 5px 12px;
  border-radius: 3px;
  transition: color .2s, border-color .2s;
}
.footer-lang a:hover { color: var(--cream); border-color: var(--gold); }
.footer-social { display: flex; gap: 10px; align-items: center; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(250, 248, 242, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(250, 248, 242, .5);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: rgba(201, 148, 26, .15); color: var(--gold-bright); }

/* ══════════════════════════════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════════════════════════════ */
.contact-section { background: var(--cream); padding: var(--sp-xl) 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--ivory);
  border: 1px solid var(--light-gray);
  border-radius: var(--r-sm);
  font-family: var(--body);
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 148, 26, .12);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--charcoal);
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
/* Honeypot — visually hidden */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.form-notice {
  font-size: 12px;
  color: var(--warm-gray);
  margin-top: 12px;
  line-height: 1.5;
}
.form-success {
  display: none;
  padding: 20px 24px;
  background: rgba(201, 148, 26, .08);
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}
.form-error {
  display: none;
  padding: 14px 18px;
  background: rgba(180, 40, 40, .06);
  border: 1px solid rgba(180, 40, 40, .2);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: #8B1A1A;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════════════════════════════
   ARTICLE / EDITORIAL PAGES
   ══════════════════════════════════════════════════════════════ */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
  padding: var(--sp-xl) 0;
}
.article-body h2 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 40px 0 16px;
  line-height: 1.2;
}
.article-body h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 28px 0 12px;
}
.article-body p { font-size: 16px; color: var(--charcoal); line-height: 1.8; margin-bottom: 20px; }
.article-body ul { margin: 16px 0 20px 0; display: flex; flex-direction: column; gap: 8px; }
.article-body ul li { display: flex; gap: 10px; font-size: 15px; color: var(--charcoal); line-height: 1.6; }
.article-body ul li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.article-body img { border-radius: var(--r-md); margin: 28px 0; }
.article-sidebar { position: sticky; top: 104px; }
.sidebar-cta-box {
  background: var(--warm-dark);
  border: 1px solid rgba(201, 148, 26, .25);
  border-radius: var(--r-md);
  padding: 28px 24px;
  margin-bottom: 24px;
}
.sidebar-cta-box h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.sidebar-cta-box p { font-size: 14px; color: rgba(250, 248, 242, .6); line-height: 1.65; margin-bottom: 20px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .wrap { padding: 0 28px; }
  :root { --sp-xl: 80px; }
  .hero-left { padding: 120px 48px 60px; }
  .about-inner { gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .services-detail-grid { grid-template-columns: 1fr; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  :root { --sp-xl: 56px; --sp-lg: 40px; }

  /* Nav */
  .site-nav  { display: none; }
  .nav-toggle { display: flex; }
  .header-right .btn-primary { display: none; }

  /* Hero */
  .hero { min-height: 100svh; align-items: flex-end; }
  .hero-left { padding: 100px 24px 60px 28px; max-width: 100%; }
  .hero-left::before { display: none; }
  .hero-bg::after {
    background: linear-gradient(
      0deg,
      rgba(18, 12, 6, 0.96) 0%,
      rgba(24, 16, 8, 0.80) 40%,
      rgba(28, 18, 8, 0.40) 70%,
      transparent 100%
    );
  }
  .hero-badge { right: 20px; bottom: 24px; min-width: 100px; padding: 12px 16px; }
  .hero-badge-num { font-size: 28px; }

  /* Trust */
  .trust-inner { flex-direction: column; }
  .trust-item + .trust-item { border-left: none; border-top: 1px solid rgba(201, 148, 26, .15); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .svc-card--featured { grid-row: auto; }

  /* Banner — mobile */
  .banner-section { margin-left: 0; width: 100%; }  /* reset vw trick on mobile */
  .banner-img { height: clamp(280px, 60vw, 420px); }  /* doubled */
  .banner-card { margin-top: -40px; }
  .banner-card-inner { padding: 24px 20px 32px; }

  /* About pillars */
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-intro { text-align: left; }

  /* Industries */
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  /* Proof / B&A */
  .proof-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Videos */
  .videos-grid { grid-template-columns: 1fr; }

  /* Areas */
  .areas-inner { grid-template-columns: 1fr; gap: 40px; }

  /* CTA band */
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-actions { align-items: flex-start; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* FAQ */
  .quick-answer-box { padding: 20px 20px; }
  .faq-inner { gap: 32px; }

  /* Form */
  .form-checkbox-group { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
}
