:root {
  --ink:       #090b0c;
  --coal:      #111417;
  --gold:      #f5b316;
  --gold-dark: #c98500;
  --gold-pale: #fff4ce;
  --cream:     #f9f8f3;
  --paper:     #ffffff;
  --muted:     #5e6872;
  --line:      #e5e1d7;
  --green:     #1d7f5b;
  --shadow:    0 18px 50px rgba(9,11,12,.12);
  --shadow-sm: 0 4px 16px rgba(9,11,12,.07);
  --radius:    10px;
  --font:      Inter, system-ui, sans-serif;
  --heading:   Sora, Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--cream); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(9,11,12,.96);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; font-family: var(--heading); font-weight: 800; font-size: 16px; }
.brand img { width: 64px; height: 56px; object-fit: contain; object-position: center; border-radius: 6px; background: #fff; padding: 2px; }
.site-nav { display: flex; align-items: center; gap: 4px; color: rgba(255,255,255,.78); font-size: 14px; font-weight: 700; }
.site-nav a { padding: 9px 13px; border-radius: 6px; transition: background .15s, color .15s; }
.site-nav a:hover, .site-nav a.active { color: #fff; background: rgba(255,255,255,.09); }
.site-nav .nav-cta { background: var(--gold); color: var(--ink); margin-left: 4px; }
.site-nav .nav-cta:hover { background: #ffc843; }
.nav-toggle { display: none; color: #fff; background: transparent; border: 0; font-size: 22px; cursor: pointer; }
.nav-divider { width: 1px; height: 20px; background: rgba(255,255,255,.16); margin: 0 6px; flex-shrink: 0; }
.nav-social { display: flex; align-items: center; gap: 2px; }
.nav-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px; font-size: 13px;
  color: rgba(255,255,255,.6); transition: background .15s, color .15s;
}
.nav-social-link:hover { background: rgba(255,255,255,.09); color: #fff; }

/* ── Nav Dropdown ───────────────────────────────── */
.nav-dropdown { position: relative; }
/* Invisible bridge fills the 8px gap so hover doesn't break mid-mouse-move */
.nav-dropdown::before {
  content: ''; position: absolute; bottom: -8px; left: 0; right: 0; height: 8px;
}
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 13px; border-radius: 6px; cursor: pointer;
  color: rgba(255,255,255,.78); font-size: 14px; font-weight: 700;
  transition: background .15s, color .15s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.active .nav-dropdown-toggle { color: #fff; background: rgba(255,255,255,.09); }
.nav-dropdown-toggle i.fa-chevron-down { font-size: 11px; transition: transform .22s; }
.nav-dropdown:hover .nav-dropdown-toggle i.fa-chevron-down { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 210px; background: #111417;
  border: 1px solid rgba(255,255,255,.12); border-radius: 10px;
  padding: 6px; z-index: 200; box-shadow: 0 12px 32px rgba(0,0,0,.5);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: 6px;
  color: rgba(255,255,255,.75) !important;
  font-size: 13px; font-weight: 600; background: none !important;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a i { width: 16px; text-align: center; color: var(--gold); font-size: 13px; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,.09) !important; color: #fff !important; }
.nav-dropdown-divider { height: 1px; background: rgba(255,255,255,.1); margin: 5px 6px; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 12px 22px; border-radius: 6px;
  font-weight: 900; border: 1px solid transparent; cursor: pointer; font-size: 15px;
  transition: background .18s, transform .14s;
}
.btn.primary { background: var(--gold); color: var(--ink); }
.btn.primary:hover { background: #ffc843; }
.btn.ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.btn.ghost:hover { background: rgba(255,255,255,.09); }
.btn.dark { background: var(--ink); color: #fff; }
.btn.dark:hover { background: #1e2428; }

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 70px);
  display: grid; grid-template-columns: minmax(0,1.04fr) minmax(320px,.82fr);
  align-items: center; gap: clamp(28px,5vw,80px);
  padding: clamp(52px,8vw,96px) clamp(18px,5vw,72px);
  background:
    linear-gradient(120deg, rgba(9,11,12,.92), rgba(9,11,12,.72)),
    radial-gradient(circle at 78% 24%, rgba(245,179,22,.20), transparent 32%),
    var(--coal);
  color: #fff;
}
.eyebrow { margin: 0 0 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; font-weight: 900; }
h1, h2, h3 { font-family: var(--heading); line-height: 1.06; margin: 0; }
h1 { font-size: clamp(40px,7vw,80px); max-width: 900px; }
h2 { font-size: clamp(28px,4vw,50px); }
h3 { font-size: 20px; }
.hero p { max-width: 640px; color: rgba(255,255,255,.78); font-size: 18px; margin: 16px 0 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image {
  position: relative; min-height: 540px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.14);
}
.hero-image img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; object-position: center right; }
.hero-stat {
  position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 16px 18px;
  background: rgba(9,11,12,.82); border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px; backdrop-filter: blur(12px);
}
.hero-stat span, .hero-stat strong { display: block; }
.hero-stat span { color: rgba(255,255,255,.6); font-size: 12px; font-weight: 800; }
.hero-stat strong { color: #fff; font-size: 20px; font-family: var(--heading); margin-top: 2px; }
.metric-row { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.12); font-weight: 800; }
.metric-row span { color: rgba(255,255,255,.58); font-weight: 700; }
.metric-row strong { color: var(--gold); font-size: 22px; }
.bars { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; align-items: end; height: 100px; margin-top: 14px; padding: 10px; background: rgba(255,255,255,.06); border-radius: 6px; }
.bars span { display: block; border-radius: 4px 4px 0 0; background: var(--gold); opacity: .8; }
.bars span:nth-child(1){height:36%}.bars span:nth-child(2){height:58%}.bars span:nth-child(3){height:46%}.bars span:nth-child(4){height:82%}.bars span:nth-child(5){height:72%}

/* ── Page Banner ─────────────────────────────────── */
.page-banner {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Base ink background */
  background-color: var(--ink);
  /* Decorative CSS placeholder — dot grid + gold glows.
     Covered by ::before when a real image is uploaded. */
  background-image:
    radial-gradient(ellipse at 76% 28%, rgba(245,179,22,.18), transparent 44%),
    radial-gradient(ellipse at 18% 72%, rgba(245,179,22,.09), transparent 38%),
    repeating-linear-gradient(
      0deg, transparent, transparent 39px,
      rgba(255,255,255,.026) 39px, rgba(255,255,255,.026) 40px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 39px,
      rgba(255,255,255,.026) 39px, rgba(255,255,255,.026) 40px
    );
}

/* Image + aldoha-style multi-stop gradient overlay */
.page-banner.has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg,
      rgba(9,11,12,.93) 0%,
      rgba(9,11,12,.72) 42%,
      rgba(9,11,12,.44) 100%),
    var(--banner-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

/* Bottom vignette — depth like aldoha */
.page-banner.has-image::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(transparent, rgba(9,11,12,.72));
}

.page-banner-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
  color: #fff;
}
.page-banner-inner .eyebrow { color: var(--gold); }
.page-banner-inner h1 { font-size: clamp(34px,5.5vw,68px); max-width: 860px; }
.banner-sub { max-width: 680px; font-size: 19px; color: rgba(255,255,255,.78); margin-top: 18px; }

/* ── Layout wrappers ─────────────────────────────── */
.wrap { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.section { padding: 72px 0 36px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,5vw,64px); align-items: start; }
.split p { font-size: 18px; color: var(--muted); margin: 0; }

/* ── Hero Slider (steward-v2 pattern) ────────────── */
.hero-slider {
  position: relative;
  height: clamp(540px, 80vh, 860px);
  overflow: hidden; background: var(--ink);
  display: flex; flex-direction: column;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity .9s ease;
  display: flex; flex-direction: column;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.slide-overlay {
  position: absolute; inset: 0;
  background: var(--ink); z-index: 1;
}
.slide-content {
  position: relative; z-index: 3;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(60px,10vh,120px) clamp(18px,5vw,72px);
  width: min(1180px, 100%); margin: 0 auto;
}
.slide-content h1 {
  font-size: clamp(36px,5.5vw,72px);
  font-weight: 900; font-family: var(--heading);
  color: #fff; line-height: 1.06;
  margin: 0 0 16px; max-width: 780px;
}
.hero-sub {
  font-size: clamp(15px,1.6vw,18px); color: rgba(255,255,255,.76);
  margin-bottom: 32px; max-width: 560px; line-height: 1.7;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  margin-bottom: 18px; padding: 5px 14px; border-radius: 20px;
  background: rgba(245,179,22,.14); border: 1px solid rgba(245,179,22,.30);
  color: var(--gold); font-size: 11px; font-weight: 900;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slider controls */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 48px; height: 48px;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.24); border-radius: 9px;
  color: #fff; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s, color .15s;
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px; align-items: center;
}
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.38); border: 0; cursor: pointer; padding: 0;
  transition: background .2s, width .2s, border-radius .2s;
}
.dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

/* ── Service grid (homepage) ─────────────────────── */
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; padding: 28px 0 68px; }
.service-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .18s, box-shadow .18s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: var(--coal);
  background-image:
    radial-gradient(ellipse at 70% 30%, rgba(245,179,22,.14), transparent 48%),
    radial-gradient(ellipse at 22% 72%, rgba(245,179,22,.07), transparent 38%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.service-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.service-card:hover .service-card-image img { transform: scale(1.04); }
.service-card-image .svc-icon-placeholder {
  font-size: 38px;
  color: var(--gold);
  opacity: .7;
}
.service-card-body { padding: 20px 22px 22px; }
.service-card-body i { color: var(--gold-dark); font-size: 22px; margin-bottom: 12px; display: block; }
.service-card-body h3 { margin-bottom: 8px; font-size: 18px; }
.service-card-body p { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.55; }

/* ── Image feature ───────────────────────────────── */
.image-feature {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(24px,5vw,58px); align-items: center; padding: 10px 0 82px;
}
.image-feature.flip { direction: rtl; }
.image-feature.flip > * { direction: ltr; }
.image-feature p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.feature-image {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  border-radius: var(--radius); box-shadow: var(--shadow); background: var(--ink);
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.text-link {
  display: inline-flex; margin-top: 14px;
  color: var(--ink); font-weight: 900; border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

/* ── Dark band ───────────────────────────────────── */
.dark-band {
  width: 100%; padding: 76px clamp(18px,5vw,72px);
  background: var(--ink); color: #fff;
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px;
}
.dark-band h2 { margin-top: 14px; }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.proof-grid div {
  padding: 22px; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); background: rgba(255,255,255,.04);
}
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { font-size: 15px; margin-bottom: 8px; }
.proof-grid span { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.5; }

/* ── Testimonials ────────────────────────────────── */
.section-heading { margin-bottom: 28px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
blockquote {
  margin: 0; padding: 28px 28px 22px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}
blockquote p { font-size: 18px; margin: 0 0 16px; line-height: 1.55; }
cite { color: var(--muted); font-style: normal; font-weight: 800; font-size: 14px; }

/* ── CTA band ────────────────────────────────────── */
.cta-band {
  margin: 64px auto; width: min(1180px, calc(100% - 36px));
  padding: 48px 42px; background: var(--gold); color: var(--ink);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: space-between; gap: 28px;
}
.cta-band h2 { margin-bottom: 0; }
.cta-band p { max-width: 540px; margin: 10px 0 0; font-size: 16px; }
.cta-band-text { flex: 1; }

/* ── Services page ───────────────────────────────── */
.service-list { display: grid; gap: 24px; padding-bottom: 48px; width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.service-detail {
  display: grid; grid-template-columns: 300px 1fr;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden;
}
.service-detail-img {
  background-color: var(--coal);
  background-image:
    radial-gradient(ellipse at 70% 30%, rgba(245,179,22,.14), transparent 48%),
    radial-gradient(ellipse at 22% 72%, rgba(245,179,22,.07), transparent 38%),
    repeating-linear-gradient(0deg, transparent, transparent 27px,rgba(255,255,255,.028) 27px, rgba(255,255,255,.028) 28px),
    repeating-linear-gradient(90deg, transparent, transparent 27px,rgba(255,255,255,.028) 27px, rgba(255,255,255,.028) 28px);
  display: flex; align-items: center; justify-content: center;
  min-height: 300px; width: 300px; flex-shrink: 0; overflow: hidden; position: relative;
}
.service-detail-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0; z-index: 1;
}
.service-detail-img .svc-icon-lg {
  font-size: 76px; color: var(--gold); opacity: .55; z-index: 2;
  filter: drop-shadow(0 4px 24px rgba(245,179,22,.18));
}
.service-detail-body { padding: 44px 44px 40px; }
.service-detail-body h2 { font-size: 36px; margin-bottom: 14px; letter-spacing: -.02em; }
.lead { font-size: 19px; font-weight: 700; color: var(--muted); margin: 0 0 18px; line-height: 1.5; }
.service-detail-body p { color: var(--muted); font-size: 16px; line-height: 1.7; }
.service-detail-body p:last-child { margin: 0; }

/* ── Pricing ─────────────────────────────────────── */
.pricing-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; padding: 16px 0 80px; width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.price-card {
  padding: 28px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.price-card.featured { border-color: var(--gold); border-width: 2px; }
.price-card.featured::before {
  content: 'Most Popular'; position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 900;
  padding: 4px 14px; border-bottom-left-radius: 8px; letter-spacing: .6px;
}
.price-card h3 { font-size: 18px; margin-bottom: 6px; }
.price-card strong { display: block; font-size: 32px; font-family: var(--heading); color: var(--ink); margin: 10px 0 18px; }
.price-card span { display: block; padding: 10px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.price-card span::before { content: '✓ '; color: var(--green); font-weight: 900; }

/* ── About page ──────────────────────────────────── */
.content-narrow { max-width: 860px; padding: 20px 0 54px; }
.content-narrow p { font-size: 18px; color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; padding-bottom: 72px; }
.value-card {
  padding: 28px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--muted); margin: 0; }

/* ── Contact page ────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 24px; padding-bottom: 80px; }
.contact-card {
  padding: 28px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin: 0 0 10px; font-weight: 900; }
.contact-card h3:not(:first-child) { margin-top: 24px; }
.contact-card a, .contact-card span { display: block; color: var(--muted); margin: 6px 0; font-size: 15px; }
.contact-card a:hover { color: var(--ink); }
.contact-form {
  display: grid; gap: 14px; padding: 28px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.contact-form label { display: grid; gap: 7px; font-weight: 800; color: var(--coal); font-size: 14px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 6px;
  padding: 11px 13px; font: inherit; background: #fff;
  transition: border-color .15s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
fieldset { border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; }
legend { font-weight: 800; font-size: 14px; }
.svc-check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 10px; margin-top: 10px; }
.check { display: flex !important; align-items: center; gap: 8px; font-weight: 700 !important; color: var(--muted) !important; cursor: pointer; }
.check input[type="checkbox"] { width: auto; flex-shrink: 0; }
.contact-side-img { margin-top: 16px; border-radius: var(--radius); overflow: hidden; position: relative; }
.contact-side-img img { width: 100%; height: 220px; object-fit: cover; display: block; }
.contact-side-img-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.55)); color: #fff; font-size: 13px; font-weight: 700; padding: 28px 16px 14px; display: flex; align-items: center; gap: 8px; }
.contact-side-img-caption i { color: var(--gold); font-size: 15px; }
.success-note { padding: 14px 16px; background: #eaf8f0; color: #116640; border: 1px solid #bde6cf; border-radius: 7px; font-weight: 800; }

/* ── Careers page ────────────────────────────────── */
.openings { padding: 10px 0 56px; }
.openings h2 { margin-bottom: 18px; }
.opening-item {
  display: flex; align-items: center; gap: 14px; padding: 18px 22px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  margin-bottom: 10px; font-weight: 700; box-shadow: var(--shadow-sm);
}
.opening-item::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.clean-list { margin: 12px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }

/* ── Footer ──────────────────────────────────────── */
.site-footer { padding: 60px clamp(18px,5vw,72px) 24px; background: var(--ink); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3,1fr); gap: 36px; width: min(1180px,100%); margin: 0 auto; }
.footer-logo { width: 180px; border-radius: 6px; margin-bottom: 14px; }
.site-footer h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; color: rgba(255,255,255,.5); }
.site-footer p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.6; }
.site-footer a, .site-footer span { display: block; color: rgba(255,255,255,.58); margin: 8px 0; font-size: 14px; }
.site-footer a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.site-footer .footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; font-size: 15px;
  border: 1.5px solid rgba(255,255,255,.35); color: rgba(255,255,255,.8);
  margin: 0; transition: border-color .15s, color .15s, background .15s;
}
.site-footer .footer-social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,179,22,.08); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  width: min(1180px,100%); margin: 36px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: 13px;
}

/* ── Policy page ─────────────────────────────────── */
.policy h2 { font-size: 22px; margin: 28px 0 10px; }
.policy p { font-size: 17px; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; left: 16px; right: 16px; top: 100%;
    padding: 10px; background: #111417; border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px; flex-direction: column; align-items: stretch;
    z-index: 30;
  }
  .site-nav.open { display: flex; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; }
  .nav-dropdown-menu { display: none; position: static; border: 0; background: rgba(255,255,255,.05); box-shadow: none; margin: 4px 0 4px 8px; border-radius: 8px; }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown.open .nav-dropdown-toggle i.fa-chevron-down { transform: rotate(180deg); }
  .hero, .split, .dark-band, .contact-layout, .image-feature { grid-template-columns: 1fr; }
  .image-feature.flip { direction: ltr; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid, .pricing-strip, .values-grid, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-img { min-height: 220px; width: 100%; }
  .service-detail-body { padding: 28px 24px; }
  .service-detail-body h2 { font-size: 26px; }
  .lead { font-size: 16px; }
  .hero { min-height: auto; }
  .hero-slider { height: clamp(400px, 65vh, 600px); }
  .slide-content h1 { font-size: 34px; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; }
  .hero-image, .hero-image img { min-height: 320px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 30px; gap: 20px; }
  h1 { font-size: 40px; }
  .page-banner { min-height: 300px; }
  .page-banner-inner { padding: 70px 0; }
  .page-banner-inner h1 { font-size: 34px; }
}
@media (max-width: 580px) {
  .service-grid { grid-template-columns: 1fr; }
  .slider-arrow { display: none; }
  .svc-check-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-side-img { display: none; }
  .dark-band { padding: 52px 20px; gap: 28px; }
  .cta-band { padding: 24px 20px; }
  .section { padding: 48px 0 24px; }
  .value-card { padding: 20px; }
  .footer-logo { width: 140px; }
  .page-banner-inner h1 { font-size: 28px; }
  .banner-sub { font-size: 16px; }
}
@media (max-width: 480px) {
  h1 { font-size: 30px; }
  h2 { font-size: clamp(22px, 6vw, 34px); }
  .btn { min-height: 42px; padding: 10px 18px; font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .brand img { width: 52px; height: 46px; }
  .service-detail-body { padding: 20px 16px; }
  .cta-band { padding: 20px 16px; }
  .contact-form { padding: 20px 16px; }
  .contact-card { padding: 20px 16px; }
  .value-card { padding: 16px; }
}
