*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --content-max: 1200px;
  --content-gutter: 18px;
  --gold: #d6ac6d;
  --gold-light: #d4a96a;
  --gold-pale: rgba(184,146,74,0.18);
  --red: #7a0e19;
  --red-hover: #9a1422;
  --red-light: rgba(122,14,25,0.25);
  --dark: #0a0a08;
  --dark-2: #111110;
  --dark-3: #181816;
  --dark-4: #1e1e1b;
  --mid: #252520;
  --cream: #111110;
  --cream-2: #181816;
  --text: #f0e6e1;
  --muted: rgba(255, 255, 255, 0.915);
  --light-muted: rgba(255, 255, 255, 0.985);
  --border: rgba(184,146,74,0.15);
  --border-light: rgba(255,255,255,0.06);
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'DM Sans', sans-serif;
}

:root {
  --content-offset: max(var(--content-gutter), calc((100vw - var(--content-max)) / 2));
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--dark); color: var(--text); overflow-x: hidden; font-size: 16px; line-height: 1.65; }

/* Universal injected navbar */
#navbar nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 var(--content-offset);
  height: 64px;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
#navbar nav.is-scrolled {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#navbar nav .nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
#navbar nav .nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
#navbar nav .nav-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 600;
  width: 72px;
  height: 56px;
}
#navbar nav .nav-logo-text {
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.1;
}
#navbar nav .nav-logo-sub {
  color: rgba(214,172,109,0.85);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--ff-body);
  line-height: 1.1;
}
#navbar nav a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 2px;
  transition: color .2s, border-color .2s;
  border-bottom: 1px solid transparent;
  font-family: var(--ff-body);
}
#navbar nav a:hover {
  color: rgba(255,255,255,0.9);
  border-bottom-color: transparent;
}
#navbar nav .nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
#navbar nav .nav-cta {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  padding: 0 28px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-family: var(--ff-body);
}
#navbar nav .nav-cta:hover {
  background: var(--red-hover);
  color: #fff;
  border-color: var(--red-hover);
}

/* SCROLL ENTRANCE ANIMATIONS */
.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-up.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-bg,
  .page-hero-bg {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* FULL-WIDTH SECTIONS + BOXED CONTENT */

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--content-offset); height: 64px;
  background: #000;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-icon {
  width: 72px;
  height: 56px;
  flex: 0 0 auto;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-family: var(--ff-display); 
  font-size: 17px; 
  font-weight: 600; 
  color: var(--gold);
  overflow: hidden;
  background: transparent;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-logo-text { font-family: var(--ff-display); font-size: 15px; font-weight: 600; color: var(--text); letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.2; }
.nav-logo-sub { font-size: 10px; letter-spacing: 2.4px; color: var(--muted); text-transform: uppercase; font-family: var(--ff-body); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links { gap: 34px; }
.nav-links a { font-family: var(--ff-body); font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.82); text-decoration: none; letter-spacing: 0.8px; text-transform: uppercase; transition: color .2s; padding-bottom: 4px; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active { color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(214,172,109,0.45);
  background: transparent;
  color: var(--gold);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-cta {
  background: var(--red); color: #fff; font-family: var(--ff-body); font-size: 12px;
  font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 0 28px; height: 64px; display: inline-flex; align-items: center; border: 1px solid var(--red); cursor: pointer; transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--red-hover); color: #fff; border-color: var(--red-hover); }

/* HERO */
.hero {
  min-height: 800px; position: relative; overflow: hidden;
  display: flex; 
  align-items: center;
  background: #0d0d0b;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('ChatGPT Image May 27, 2026, 04_56_36 PM.png');
  background-size: cover; background-position: center 30%;
  opacity: 0.55;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.hero-bg.bg-visible { opacity: 0.55; transform: translateY(0); }
.hero-bg:not(.bg-visible) { opacity: 0.55; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13, 13, 11, 0.474) 38%, rgba(13,13,11,0.1) 80%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  min-width: -webkit-fill-available;
  
  padding: 0 var(--content-offset) 96px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.hero-eyebrow { font-family: var(--ff-body); font-size: 13px; font-weight: 400; letter-spacing: 2.4px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.hero-h1 { font-family: var(--ff-display); font-size: 68px; font-weight: 300; color: #fff; line-height: 1.05; letter-spacing: -1px; margin-bottom: 20px; }
.hero-h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-divider { width: 44px; height: 1.5px; background: var(--gold); margin-bottom: 24px; }
.hero-p { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 36px; max-width: 460px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--ff-body); font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 24px; text-decoration: none; transition: background-color .25s ease, color .25s ease, border-color .25s ease;
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-outline svg { transition: transform .25s; }
.btn-outline:hover svg { transform: translateX(4px); }

/* COUNTER */
.counterdivider {
  background: var(--red);
  border-top: 1px solid rgba(184,146,74,0.15);
}
.counter {
  width: min(calc(100% - 112px), var(--content-max));
  margin-inline: auto;
  background: var(--red);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 0.5px solid rgba(255,255,255,0.06);
  border-right: 0.5px solid rgba(255,255,255,0.06);
}
.counter-cell {
  padding: 44px 40px;
  border-right: 0.5px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; align-items: flex-start;
}
.counter-cell:last-child { border-right: none; }
.counter-icon { color: var(--gold); font-size: 22px; margin-bottom: 16px; opacity: 0.8; }
.counter-num { font-family: var(--ff-display); font-size: 52px; font-weight: 300; color: #fff; letter-spacing: -1.5px; line-height: 1; margin-bottom: 10px; }
.counter-label { font-size: 13px; color: #b7b7a8; letter-spacing: 0.3px; line-height: 1.65; font-weight: 400; }
@media (max-width: 760px) {
  .counter { width: calc(100% - 44px); }
}

/* SERVICES */
.services { padding: 104px var(--content-offset); background: var(--dark-3); }
.section-tag { font-family: var(--ff-body); font-size: 12px; font-weight: 500; letter-spacing: 2.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: var(--ff-display); font-size: 46px; font-weight: 300; color: var(--text); letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 10px; }
.section-divider { width: 44px; height: 1px; background: var(--gold); margin: 0 auto 60px; }
.services-header { text-align: center; margin-bottom: 0; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card { background: var(--dark-4); overflow: hidden; transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out); }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.35); }
.svc-img { position: relative; height: 200px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .22s var(--ease-out); }
.svc-card:hover .svc-img img { transform: scale(1.04); }
.svc-img-icon {
  position: absolute; top: 14px; left: 14px; width: 38px; height: 38px;
  background: rgba(13,13,11,0.75); display: flex; align-items: center; justify-content: center;
}
.svc-img-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.svc-body { padding: 26px 24px 28px; }
.svc-title { font-family: var(--ff-display); font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 12px; letter-spacing: -0.3px; }
.svc-text { font-size: 15px; font-weight: 400; color: var(--muted); line-height: 1.75; margin-bottom: 22px; }
.svc-link { font-size: 12px; font-weight: 500; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: color .2s ease; }
.svc-link:hover { color: var(--gold-light); }

.svc-card-fullbg {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  background-size: cover;
  background-position: center center;
}
.svc-card-fullbg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,8,8,0.85) 22%, rgba(12,8,8,0.35) 62%, rgba(12,8,8,0.2) 100%);
}
.svc-card-fullbg .svc-img-icon,
.svc-card-fullbg .svc-body {
  position: relative;
  z-index: 1;
}
.svc-card-fullbg .svc-img-icon {
  position: absolute;
  top: 14px;
  left: 14px;
}

/* COMPLETED PROJECTS */
.completed-projects { padding: 100px var(--content-offset); background: var(--dark-2); }
.completed-header { text-align: center; }
.completed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { background: var(--dark-4); border: 0.5px solid var(--border-light); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0,0,0,0.32); }
.project-img { height: 220px; overflow: hidden; }
.project-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .22s var(--ease-out); }
.project-card:hover .project-img img { transform: scale(1.04); }
.project-body { padding: 22px 20px 24px; }
.project-title { font-family: var(--ff-display); font-size: 28px; font-weight: 400; color: var(--text); margin-bottom: 8px; }
.project-text { font-size: 14px; line-height: 1.8; font-weight: 200; color: var(--muted); margin-bottom: 18px; }
.completed-cta { margin-top: 28px; display: flex; justify-content: center; }

.completed-projects--imagebg {
  position: relative;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1800&q=80') center/cover no-repeat;
  overflow: hidden;
}
.completed-projects--imagebg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.56);
}
.completed-projects--imagebg .completed-header,
.completed-projects--imagebg .completed-grid,
.completed-projects--imagebg .completed-cta {
  position: relative;
  z-index: 1;
}
.completed-projects--imagebg .project-card {
  background: rgba(20,20,20,0.82);
  border: 0.5px solid rgba(255,255,255,0.1);
}

/* WHO WE ARE */
.whoweare { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.whoweare { width: 100%; max-width: var(--content-max); margin-left: auto; margin-right: auto;  margin-top: 70px;    margin-bottom: 70px;}
.wwa-img { position: relative; overflow: hidden; }
.wwa-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wwa-content { background: var(--dark-4); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.wwa-content .section-divider { margin: 0 0 32px; }
.wwa-h2 { font-family: var(--ff-display); font-size: 40px; font-weight: 300; color: var(--text); letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 24px; }
.wwa-text { font-size: 16px; font-weight: 400; color: var(--muted); line-height: 1.8; margin-bottom: 36px; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--text);
  font-family: var(--ff-body); font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 26px; text-decoration: none; transition: background .2s; align-self: flex-start;
  border: 1px solid var(--red); cursor: pointer;
}
.btn-gold:hover { background: var(--red-hover); border-color: var(--gold); }
.btn-gold svg { transition: transform .2s; }
.btn-gold:hover svg { transform: translateX(4px); }

/* APPROACH */
.approach { padding: 100px var(--content-offset); background: var(--dark-2); }
.approach-header { text-align: center; margin-bottom: 64px; }
.approach-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 0.5px solid var(--border-light); overflow: visible; }
.approach-step {
  padding: 40px 32px;
  border-right: 0.5px solid var(--border-light);
  background: var(--dark-3);
  position: relative;
  z-index: 1;
  overflow: visible;
  transition: background .3s;
}
.approach-step:nth-child(1) { z-index: 4; }
.approach-step:nth-child(2) { z-index: 3; }
.approach-step:nth-child(3) { z-index: 2; }
.approach-step:nth-child(4) { z-index: 1; }
.approach-step:last-child { border-right: none; }
.approach-step:hover { background: var(--red); }
.approach-step:hover .ap-num,
.approach-step:hover .ap-title,
.approach-step:hover .ap-text { color: #fff; }
.approach-step:hover .ap-icon-wrap { background: var(--gold); border-color: var(--gold); }
.approach-step:hover .ap-icon-wrap svg { stroke: #fff; }
.ap-arrow {
  margin-top: 30%;
  position: absolute; right: -13px; top: 62px; transform: none;
  width: 26px; height: 26px; background: var(--dark-2); border: 0.5px solid var(--border-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 10;
}
.ap-arrow svg { width: 10px; height: 10px; stroke: var(--gold); fill: none; stroke-width: 2; }
.approach-step:last-child .ap-arrow { display: none; }
.ap-icon-wrap {
  width: 44px; height: 44px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background .3s, border-color .3s;
}
.ap-icon-wrap svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; transition: stroke .3s; }
.ap-num { font-family: var(--ff-display); font-size: 62px; font-weight: 400; color: var(--gold); letter-spacing: 0.8px; margin-bottom: 10px; transition: color .3s; }
.ap-title { font-family: var(--ff-display); font-size: 20px; font-weight: 400; color: var(--text); margin-bottom: 10px; transition: color .3s; }
.ap-text { font-size: 14px; font-weight: 400; color: var(--muted); line-height: 1.75; transition: color .3s; }

/* CONTACT */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; min-height: 600px; }
.contact { width: 100%; max-width: var(--content-max); margin-left: auto; margin-right: auto;     margin-top: 70px; margin-bottom: 70px;}
.contact-left {
  background: var(--dark); padding: 88px 64px;
  background-image: url('https://images.unsplash.com/photo-1600607686527-6fb886090705?w=800&q=70');
  background-size: cover; background-position: center;
  position: relative;
}
.contact-left-overlay { position: absolute; inset: 0; background: rgba(120, 11, 11, 0.86); }
.contact-left-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.contact-eyebrow { font-size: 12px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.contact-h2 { font-family: var(--ff-display); font-size: 46px; font-weight: 300; color: #fff; letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 20px; }
.contact-sub { font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 44px; max-width: 360px; }
.contact-info-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.ci-icon { width: 16px; color: var(--gold); }
.ci-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.ci-text { font-size: 14px; color: rgba(255,255,255,0.88); font-weight: 400; }
.contact-right { background: var(--dark-3); padding: 88px 64px; display: flex; flex-direction: column; justify-content: center; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.cf-input {
  background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.1);
  padding: 14px 16px; font-family: var(--ff-body); font-size: 13px; font-weight: 300;
  color: #fff; outline: none; transition: border-color .2s; width: 100%;
}
.cf-input::placeholder { color: rgba(255,255,255,0.3); }
.cf-input:focus { border-color: var(--gold); }
.cf-textarea { height: 120px; resize: none; margin-bottom: 6px; }
.cf-submit {
  margin-top: 6px; background: var(--red); color: var(--text);
  font-family: var(--ff-body); font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 32px; border: 1px solid var(--red); cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .2s, color .2s, border-color .2s; align-self: flex-start;
}
.cf-submit:hover { background: var(--red-hover); color: #fff; border-color: var(--gold); }
.cf-submit svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .2s; }
.cf-submit:hover svg { transform: translateX(4px); }

/* FOOTER */
footer {
  background: #2b080e; border-top: 0.5px solid rgba(255,255,255,0.05);
  padding: 64px var(--content-offset) 0;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 52px; border-bottom: 0.5px solid rgba(255,255,255,0.06); }
.footer-brand-icon { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-brand-icon .nav-logo-icon { width: 90px; height: 70px; border-color: rgba(184,146,74,0.4); }
.footer-brand-text { font-family: var(--ff-display); font-size: 14px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.footer-brand-sub-text { font-size: 10px; letter-spacing: 2.2px; color: #666; font-family: var(--ff-body); text-transform: uppercase; }
.footer-about { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social { width: 30px; height: 30px; border: 0.5px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .2s; }
.footer-social:hover { border-color: var(--gold); }
.footer-social svg { width: 13px; height: 13px; stroke: rgba(255,255,255,0.4); fill: none; stroke-width: 1.5; }
.footer-col h4 { font-family: var(--ff-body); font-size: 12px; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.72); text-decoration: none; transition: color .2s; letter-spacing: 0.2px; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.8); }
.footer-ci-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-ci-icon { width: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-ci-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.footer-ci-text { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.72); line-height: 1.7; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.62); font-weight: 400; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.62); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.55); }

/* INNER PAGES */
.page-hero {
  min-height: 68vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
  padding-top: 150px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('ChatGPT Image May 27, 2026, 04_56_36 PM.png');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: translateY(16px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.page-hero-bg.bg-visible { opacity: 0.45; transform: translateY(0); }
.page-hero-bg:not(.bg-visible) { opacity: 0.45; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(13,13,11,0.9) 28%, rgba(13,13,11,0.15) 90%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  
  padding: 0 var(--content-offset) 88px;
}
.page-content {
  padding: 96px var(--content-offset);
  background: var(--dark-2);
}
.page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.panel {
  background: var(--dark-4);
  border: 0.5px solid var(--border-light);
  padding: 30px 28px;
}
.project-panel-card {
  padding: 0;
  overflow: hidden;
}
.project-panel-card .panel-img {
  height: 220px;
  background: rgba(13,13,11,0.75);
}
.project-panel-card .panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-panel-card .panel-body {
  padding: 30px 28px;
}
.panel-title {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.panel-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 400;
}
.content-cta {
  margin-top: 36px;
}
.content-cta .btn-gold {
  text-decoration: none;
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
  }
  .nav-links a {
    font-size: 11px;
  }
  .hero-h1 {
    font-size: 56px;
  }
  .services-grid,
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .page-grid {
    grid-template-columns: 1fr;
  }
  .about-intro,
  .mission,
  .svc-promo,
  .svc-block {
    grid-template-columns: 1fr;
  }
  .values-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .whatwedo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .completed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

@media (max-width: 760px) {
  nav {
    padding: 0 18px;
    min-height: 72px;
    height: 72px;
    flex-wrap: nowrap;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10,10,8,0.98);
    border-top: 1px solid var(--border-light);
    padding: 16px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    z-index: 120;
  }
  nav.nav-open .nav-links {
    display: flex;
  }
  nav.nav-open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: calc(72px + 176px);
    left: 18px;
    right: 18px;
    justify-content: center;
  }
  .nav-cta {
    display: none;
  }
  .hero-content,
  .services,
  .approach,
  footer,
  .page-content,
  .page-hero-content,
  .services-intro,
  .whatwedo,
  .values,
  .mission,
  .svc-promo,
  .cta-band,
  .breadcrumb {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero-content {
    padding-top: 110px;
    padding-bottom: 70px;
  }
  .hero,
  .page-hero {
    align-items: flex-end;
  }
  .page-hero-content {
    padding-top: 0;
  }
  .hero-h1 {
    font-size: 42px;
  }
  .section-title,
  .contact-h2 {
    font-size: 34px;
  }
  .counter {
    grid-template-columns: 1fr 1fr;
  }
  .counter-cell {
    padding: 28px 20px;
  }
  .services-grid,
  .approach-grid,
  .contact-form-grid,
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .completed-grid {
    grid-template-columns: 1fr;
  }
  .svc-promo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .approach-grid,
  .whatwedo-grid,
  .values-list,
  .counter,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .whoweare {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .wwa-content,
  .contact-left,
  .contact-right {
    padding: 56px 22px;
  }
  .ap-arrow {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .svc-block-content,
  .about-intro-content {
    padding: 56px 22px;
  }
  .svc-num {
    font-size: 56px;
  }
  .svc-block-title {
    font-size: 30px;
  }
  .page-hero-h1 {
    font-size: 44px;
  }
}

@media (max-width: 560px) {
  .hero-h1,
  .page-hero-h1 {
    font-size: 36px;
    line-height: 1.12;
  }
  .section-title,
  .contact-h2,
  .mission-title,
  .svc-promo-title {
    font-size: 30px;
  }
  .hero-content,
  .page-hero-content {
    padding-bottom: 56px;
  }
  .counter,
  .stats,
  .approach-grid,
  .whatwedo-grid,
  .values-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-cell,
  .stats-cell {
    border-right: none;
  }
  .btn-outline,
  .btn-gold,
  .btn-white,
  .cf-submit,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ABOUT + SERVICES PAGE SECTIONS */
.page-hero-eyebrow { font-size: 12px; letter-spacing: 2.6px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; }
.page-hero-h1 { font-family: var(--ff-display); font-size: 64px; font-weight: 300; color: #fff; line-height: 1.05; letter-spacing: -1px; margin-bottom: 0; }
.page-hero-h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-sub { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55); margin-top: 20px; max-width: 480px; line-height: 1.9; }
.page-hero-divider { width: 44px; height: 1.5px; background: var(--gold); margin-top: 24px; }

/* Contact page hero title: keep exactly two lines on desktop */
.contact-page .page-hero .hero-h1 {
  max-width: 900px;
}
.contact-page .page-hero .hero-h1 em {
  white-space: nowrap;
}
.breadcrumb { padding: 18px var(--content-offset); background: var(--cream-2); border-bottom: 0.5px solid var(--border-light); display: flex; align-items: center; gap: 8px; }
.breadcrumb a { font-size: 13px; letter-spacing: 0.3px; color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { font-size: 13px; color: var(--light-muted); }
.breadcrumb-current { font-size: 13px; color: var(--gold); letter-spacing: 0.3px; }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.about-intro { width: 100%; max-width: var(--content-max); margin-left: auto; margin-right: auto; }
.about-intro-img { position: relative; min-height: 560px; overflow: hidden; }
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-intro-content { padding: 88px 72px; background: var(--dark-4); display: flex; flex-direction: column; justify-content: center; }
.about-intro-text { font-size: 16px; font-weight: 400; color: var(--muted); line-height: 1.8; margin-bottom: 0; }
.ceo-profile { width: 100%; max-width: var(--content-max); margin: 0 auto; display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); background: var(--dark-3); border-top: 0.5px solid rgba(255,255,255,0.08); }
.ceo-profile-img { min-height: 560px; background: var(--dark); overflow: hidden; }
.ceo-profile-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.ceo-profile-content { padding: 88px 72px; background: var(--dark-4); display: flex; flex-direction: column; justify-content: center; }
.ceo-title { color: var(--gold); font-size: 13px; text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 20px; }
.ceo-copy { font-size: 16px; line-height: 1.9; color: var(--muted); max-width: 620px; }
.mission { background: var(--dark); padding: 88px var(--content-offset); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mission-label { font-size: 12px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; }
.mission-title { font-family: var(--ff-display); font-size: 46px; font-weight: 300; color: #fff; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 24px; }
.mission-title em { font-style: italic; color: var(--gold-light); }
.mission-divider { width: 44px; height: 1px; background: var(--gold); margin-bottom: 0; }
.mission-text { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 2; font-family: var(--ff-display); font-style: italic; }
.whatwedo { padding: 100px var(--content-offset); background: var(--cream); }
.whatwedo-header { text-align: center; margin-bottom: 64px; }
.section-divider-center { width: 44px; height: 1px; background: var(--gold); margin: 20px auto 0; }
.whatwedo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 0.5px solid var(--border-light); }
.wd-card { padding: 44px 36px; border-right: 0.5px solid var(--border-light); background: var(--dark-4); transition: background .3s; position: relative; overflow: hidden; }
.wd-card:last-child { border-right: none; }
.wd-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.wd-card:hover::before { transform: scaleX(1); }
.wd-card:hover { background: #22221f; }
.wd-icon { width: 44px; height: 44px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.wd-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.wd-title { font-family: var(--ff-display); font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 14px; }
.wd-text { font-size: 14px; font-weight: 400; color: var(--muted); line-height: 1.75; }
.values { padding: 100px var(--content-offset); background: var(--cream-2); }
.values-header { margin-bottom: 60px; }
.values-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.val-item { text-align: center; padding: 48px 28px; background: var(--dark-4); border: 0.5px solid var(--border-light); transition: transform .3s, box-shadow .3s; }
.val-item:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,0.07); }
.val-num { font-family: var(--ff-display); font-size: 64px; font-weight: 300; color: #ffffff; line-height: 1; margin-bottom: 16px; }
.val-title { font-family: var(--ff-display); font-size: 20px; font-weight: 500; color: var(--text); margin-bottom: 12px; }
.val-line { width: 28px; height: 1px; background: var(--gold); margin: 0 auto 14px; }
.val-text { font-size: 13px; font-weight: 400; color: var(--muted); line-height: 1.75; letter-spacing: 0.2px; }
.stats { background: var(--dark-2); display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(184,146,74,0.15); }
.stats-cell { padding: 44px 40px; border-right: 0.5px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; align-items: flex-start; }
.stats-cell:last-child { border-right: none; }
.stats-num { font-family: var(--ff-display); font-size: 52px; font-weight: 300; color: #fff; letter-spacing: -1.5px; line-height: 1; margin-bottom: 10px; }
.stats-label { font-size: 13px; color: #b4b4a8; letter-spacing: 0.3px; line-height: 1.65; font-weight: 400; }
.cta-band { background: var(--red); padding: 72px var(--content-offset); display: flex; align-items: center; justify-content: space-between; }
.cta-band-text h2 { font-family: var(--ff-display); font-size: 40px; font-weight: 300; color: #fff; letter-spacing: -0.5px; }
.cta-band-text p { font-size: 15px; color: rgba(255,255,255,0.9); margin-top: 8px; font-weight: 400; }
.btn-white { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--gold); font-family: var(--ff-body); font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 28px; text-decoration: none; transition: background-color 220ms var(--ease-out), color 220ms var(--ease-out), transform 220ms var(--ease-out); }
.btn-white:hover { background: transparent; color: #fff; border-color: #fff; }
.btn-white svg { transition: transform .25s; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-white:hover svg { transform: translateX(4px); }
.services-intro { padding: 88px var(--content-offset); background: var(--dark-2); text-align: center; border-bottom: 0.5px solid var(--border-light); }
.services-intro-text { font-size: 16px; font-weight: 400; color: var(--muted); line-height: 1.8; max-width: 700px; margin: 0 auto; }
.svc-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.svc-block { width: 100%; max-width: var(--content-max); margin-left: auto; margin-right: auto; }
.svc-block.reverse { direction: rtl; }
.svc-block.reverse > * { direction: ltr; }
.svc-block-img { position: relative; overflow: hidden; }
.svc-block-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .22s var(--ease-out); }
.svc-block:hover .svc-block-img img { transform: scale(1.03); }
.svc-block-content { padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.svc-block:nth-child(odd) .svc-block-content { background: var(--cream); }
.svc-block:nth-child(even) .svc-block-content { background: var(--cream-2); }
.svc-num { font-family: var(--ff-display); font-size: 72px; font-weight: 300; color: var(--gold-pale); line-height: 1; margin-bottom: 4px; letter-spacing: -2px; }
.svc-block-title { font-family: var(--ff-display); font-size: 36px; font-weight: 400; color: var(--text); letter-spacing: -0.3px; line-height: 1.15; margin-bottom: 8px; }
.svc-divider { width: 44px; height: 1px; background: var(--gold); margin: 16px 0 24px; }
.svc-block-text { font-size: 16px; font-weight: 400; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.svc-features { list-style: none; margin-bottom: 36px; }
.svc-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 400; color: var(--muted); padding: 8px 0; border-bottom: 0.5px solid var(--border-light); }
.svc-features li::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.svc-promo { background: var(--dark-2); padding: 88px var(--content-offset); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; border-top: 1px solid rgba(184,146,74,0.15); }
.svc-promo-label { font-size: 12px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.svc-promo-title { font-family: var(--ff-display); font-size: 42px; font-weight: 300; color: #fff; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
.svc-promo-title em { font-style: italic; color: var(--gold-light); }
.svc-promo-text { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.68); line-height: 1.85; }
.svc-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.svc-promo-card { padding: 32px 28px; border: 0.5px solid rgba(255,255,255,0.08); transition: border-color .2s; }
.svc-promo-card:hover { border-color: rgba(184,146,74,0.4); }
.spc-icon { width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.spc-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.spc-title { font-family: var(--ff-display); font-size: 18px; font-weight: 400; color: #fff; margin-bottom: 8px; }
.spc-text { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.68); line-height: 1.75; }

/* SERVICES PROMPT EXACT STYLE (SCOPED) */
.services-page {
  --gold: #b8924a; --gold-light: #d4a96a; --gold-pale: rgba(184,146,74,0.18);
  --red: #7a0e19; --red-hover: #9a1422; --red-light: rgba(122,14,25,0.25);
  --dark: #0a0a08; --dark-2: #111110; --dark-3: #181816; --dark-4: #1e1e1b; --mid: #252520;
  --text: #e8e4dc; --muted: #8a8878; --light-muted: #5a5a4e;
  --border: rgba(184,146,74,0.15); --border-light: rgba(255,255,255,0.06);
  background: var(--dark);
  color: var(--text);
}
.services-page nav { background: #000; border-bottom-color: var(--border-light); }
.services-page .nav-cta { background: var(--red); color: #fff; border: 1px solid var(--red); }
.services-page .nav-cta:hover { background: var(--red-hover); color: #fff; border-color: var(--red-hover); }
.services-page .page-hero { min-height: 56vh;  margin-top: 72px; background: var(--dark); padding-top: 120px; }
.services-page .page-hero-bg { background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1400&q=80') center/cover no-repeat; opacity: 0.2; }
.services-page .page-hero-overlay { background: linear-gradient(to right, rgba(10,10,8,0.92) 40%, rgba(10,10,8,0.5) 100%); }
.services-page .page-hero-eyebrow { color: var(--gold); }
.services-page .page-hero-sub { color: rgba(255,255,255,0.45); }
.services-page .breadcrumb { background: var(--dark-3); border-bottom-color: var(--border-light); }
.services-page .breadcrumb a { color: var(--muted); }
.services-page .breadcrumb-sep { color: var(--light-muted); }
.services-page .breadcrumb-current { color: var(--gold); }
.services-page .services-intro { background: var(--dark-2); border-bottom-color: var(--border-light); }
.services-page .section-title { color: var(--text); }
.services-page .services-intro-text { color: rgba(232,228,220,0.78); }
.services-page .svc-block-img img { filter: brightness(0.75) saturate(0.85); }
.services-page .svc-block:hover .svc-block-img img { filter: brightness(0.85) saturate(0.9); }
.services-page .svc-block:nth-child(odd) .svc-block-content { background: var(--dark-3); }
.services-page .svc-block:nth-child(even) .svc-block-content { background: var(--dark-4); }
.services-page .svc-num { color: rgba(122,14,25,0.35); }
.services-page .svc-block-title { color: var(--text); }
.services-page .svc-block-text, .services-page .svc-features li { color: rgba(232,228,220,0.82); }
.services-page .svc-features li::before { background: var(--red); }
.services-page .btn-gold { background: var(--red); color: var(--gold); border: 1px solid var(--red); }
.services-page .btn-gold svg { stroke: var(--gold); }
.services-page .btn-gold:hover { background: var(--red-hover); border-color: var(--gold); color: #fff; }
.services-page .btn-gold:hover svg { stroke: #fff; }
.services-page .svc-promo { background: var(--dark-2); border-top: 1px solid rgba(122,14,25,0.4); }
.services-page .svc-promo-text { color: rgba(255,255,255,0.72); }
.services-page .svc-promo-card { background: var(--dark-3); border: 0.5px solid rgba(255,255,255,0.07); border-left: 2px solid transparent; }
.services-page .svc-promo-card:hover { border-left-color: var(--red); background: rgba(122,14,25,0.1); }
.services-page .spc-icon { border: 1px solid rgba(122,14,25,0.5); }
.services-page .spc-text { color: rgba(255,255,255,0.7); }
.services-page .cta-band { background: var(--red); border-top: 1px solid rgba(184,146,74,0.2); }
.services-page .cta-band-text p { color: rgba(255,255,255,0.6); }
.services-page .btn-white { background: var(--gold); color: #fff; border: 1px solid var(--gold); }
.services-page .btn-white:hover { background: transparent; color: var(--gold); }
.services-page footer { background: #2b080e; border-top-color: rgba(255,255,255,0.05); }
.services-page .footer-top { border-bottom-color: rgba(255,255,255,0.05); }
.services-page .footer-brand-text { color: rgba(255,255,255,0.65); }
.services-page .footer-brand-sub-text { color: #555; }
.services-page .footer-about-p, .services-page .footer-ci-text, .services-page .footer-col ul li a { color: rgba(255,255,255,0.72); }
.services-page .footer-social { border-color: rgba(255,255,255,0.08); }
.services-page .footer-social:hover { border-color: var(--red); background: var(--red-light); }
.services-page .footer-social svg { stroke: rgba(255,255,255,0.35); }
.services-page .footer-copy, .services-page .footer-bottom-links a { color: rgba(255,255,255,0.62); }

/* HOME PAGE SOURCE-OF-TRUTH ALIGNMENT */
.home-page {
  --gold: #b8924a;
  --gold-light: #d4a96a;
  --gold-pale: rgba(184,146,74,0.18);
  --red: #7a0e19;
  --red-hover: #9a1422;
  --red-light: rgba(122,14,25,0.25);
  --dark: #0a0a08;
  --dark-2: #111110;
  --dark-3: #181816;
  --dark-4: #1e1e1b;
  --mid: #252520;
  --text: #e8e4dc;
  --muted: #ebebeb;
  --light-muted: #ebebeb;
  --border: rgba(184,146,74,0.15);
  --border-light: rgba(255,255,255,0.06);
  background: var(--dark);
  color: var(--text);
}
.home-page nav { background: #000; border-bottom-color: var(--border-light); }
.home-page .nav-links a { color: var(--muted); }
.home-page .nav-links a:hover { color: var(--text); }
.home-page .nav-cta { background: var(--red); color: #fff; border: 1px solid var(--red); }
.home-page .nav-cta:hover { background: var(--red-hover); color: #fff; border-color: var(--red-hover); }
.home-page .hero { background: var(--dark); }
.home-page .hero-bg { opacity: 0.78; }
.home-page .hero-overlay {
  background: linear-gradient(to right, rgba(10,10,8,0.62) 34%, rgba(10,10,8,0.18) 84%);
}

.home-page .hero-p { font-size: 17px; font-weight: 400; color: rgba(255,255,255,0.82); line-height: 1.8; max-width: 460px; }
.home-page .btn-outline { border: 1px solid var(--red); background: var(--red); color: var(--gold); }
.home-page .btn-outline:hover { background: transparent; border-color: var(--gold); color: var(--gold-light); }
.home-page .counter { background: var(--red); border-top: 1px solid rgba(122,14,25,0.45); }
.home-page .counter-cell { border-right: 0.5px solid var(--border-light); transition: background .25s; }
.home-page .counter-cell:hover { background: rgba(122,14,25,0.12); }
.home-page .counter-label { font-size: 16px; color: #b7b7a8; letter-spacing: 0.3px; line-height: 1.65; font-weight: 400; }
.home-page .services { background: var(--dark-3); }
.home-page .svc-card { background: var(--dark-4); }
.home-page .svc-card:hover { box-shadow: 0 20px 48px rgba(0,0,0,0.4); border-color: rgba(122,14,25,0.5); }
.home-page .svc-img img { filter: brightness(0.75) saturate(0.85); }
.home-page .svc-card:hover .svc-img img { filter: brightness(0.85) saturate(0.9); }
.home-page .svc-img-icon { background: rgba(122,14,25,0.85); }
.home-page .svc-title { color: var(--text); }
.home-page .svc-text { font-size: 16px; font-weight: 400; color: var(--muted); line-height: 1.75; }
.home-page .svc-link:hover { color: var(--gold-light); }
.home-page .wwa-img img { filter: brightness(0.7) saturate(0.8); }
.home-page .wwa-content { background: var(--dark-4); border-left: 2px solid var(--red); }
.home-page .wwa-h2 { color: var(--text); }
.home-page .wwa-text { font-size: 16px; font-weight: 400; color: var(--muted); line-height: 1.8; }
.home-page .btn-gold { background: var(--red); color: var(--gold); border: 1px solid var(--red); }
.home-page .btn-gold svg { stroke: var(--gold); }
.home-page .btn-gold:hover { background: var(--red-hover); border-color: var(--gold); color: #fff; }
.home-page .btn-gold:hover svg { stroke: #fff; }
.home-page .approach { background: #7a0e19; }
.home-page .approach-grid { border: 0.5px solid rgba(214,172,109,0.18); }
.home-page .approach-step { background: #691019; border-right: 0.5px solid rgba(214,172,109,0.14); }
.home-page .approach-step:hover { background: var(--red); }
.home-page .approach-step:hover .ap-num { color: rgba(255,255,255,0.6); }
.home-page .approach-step:hover .ap-title,
.home-page .approach-step:hover .ap-text { color: #fff; }
.home-page .ap-icon-wrap { border: 1px solid rgba(214,172,109,0.35); }
.home-page .ap-icon-wrap svg { stroke: var(--gold); }
.home-page .ap-text { font-size: 14px; font-weight: 400; color: var(--muted); line-height: 1.75; }
.home-page .contact-left-overlay { background: linear-gradient(180deg, rgba(122,14,25,0.62) 0%, rgba(122,14,25,0.72) 100%); }
.home-page .contact-sub { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.75); line-height: 1.8; max-width: 360px; }
.home-page .ci-text { font-size: 14px; color: rgba(255,255,255,0.88); font-weight: 400; }
.home-page .contact-right { background: var(--dark-3); border-left: 2px solid rgba(122,14,25,0.4); }
.home-page .cf-input { border: 0.5px solid rgba(255,255,255,0.08); }
.home-page .cf-input::placeholder { color: rgba(255,255,255,0.25); }
.home-page .cf-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.06); }
.home-page .cf-submit { background: var(--red); color: var(--gold); border: 1px solid var(--red); }
.home-page .cf-submit svg { stroke: var(--gold); }
.home-page .cf-submit:hover { background: var(--red-hover); border-color: var(--gold); color: #fff; }
.home-page .cf-submit:hover svg { stroke: #fff; }
.home-page footer { background: #2b080e; border-top: 0.5px solid rgba(255,255,255,0.05); }
.home-page .footer-top { border-bottom: 0.5px solid rgba(255,255,255,0.05); }
.home-page .footer-brand-text { color: rgba(255,255,255,0.65); }
.home-page .footer-brand-sub-text { color: #555; }
.home-page .footer-about,
.home-page .footer-col ul li a,
.home-page .footer-ci-text { color: rgb(255, 255, 255); font-weight: 300; }
.home-page .footer-social { border: 0.5px solid rgba(255,255,255,0.08); }
.home-page .footer-social:hover { border-color: var(--red); background: var(--red-light); }
.home-page .footer-social svg { stroke: rgba(255,255,255,0.35); }
.home-page .footer-copy,
.home-page .footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.62); font-weight: 400; }

/* About page requested red-themed cards */
.about-page .wd-card {
  background: #691019;
  border-right-color: rgba(214,172,109,0.14);
}

.about-page .wd-card:hover {
  background: #4f0d14;
}

.about-page .val-item {
  background: #691019;
  border-color: rgba(214,172,109,0.18);
}

.about-page .val-item:hover {
  background: #4f0d14;
}

/* Services page requested red-themed cards */
.services-page .svc-block:nth-child(odd) .svc-block-content,
.services-page .svc-block:nth-child(even) .svc-block-content {
  background: #691019;
}

.services-page .svc-promo-card {
  background: #691019;
  border: 0.5px solid rgba(214,172,109,0.14);
}

.services-page .svc-promo-card:hover {
  background: #4f0d14;
  border-left-color: rgba(214,172,109,0.35);
}

/* Red theme alignment for inner pages */
body:not(.home-page) .page-hero {
  background: var(--red);
}

body:not(.home-page) .page-hero-overlay {
  background: linear-gradient(110deg, rgba(74,16,16,0.94) 28%, rgba(122,14,25,0.32) 90%);
}

body:not(.home-page) .breadcrumb {
  background: #2b080e;
  border-bottom-color: rgba(214,172,109,0.16);
}

body:not(.home-page) .page-content,
body:not(.home-page) .services-intro,
body:not(.home-page) .values,
body:not(.home-page) .svc-promo {
  background: var(--dark-2);
}

body:not(.home-page) .panel,
body:not(.home-page) .about-intro-content,
body:not(.home-page) .wd-card,
body:not(.home-page) .val-item,
body:not(.home-page) .svc-promo-card,
body:not(.home-page) .svc-block-content {
  background: var(--dark-4);
}

body:not(.home-page) .mission,
body:not(.home-page) .cta-band,
body:not(.home-page) .stats,
body:not(.home-page) .approach {
  background: var(--red);
}

body:not(.home-page) .approach-step {
  background: #691019;
  border-right-color: rgba(214,172,109,0.14);
}

body:not(.home-page) .approach-grid {
  border-color: rgba(214,172,109,0.18);
}

body:not(.home-page) .approach-step:hover {
  background: var(--red-hover);
}

body:not(.home-page) .contact-left-overlay {
  background: linear-gradient(180deg, rgba(122,14,25,0.62) 0%, rgba(122,14,25,0.72) 100%);
}

body:not(.home-page) .contact-right {
  background: var(--dark-3);
  border-left: 2px solid rgba(122,14,25,0.4);
}

body:not(.home-page) .stats-cell {
  border-right-color: rgba(255,255,255,0.08);
}

body:not(.home-page) .svc-block:nth-child(odd) .svc-block-content,
body:not(.home-page) .svc-block:nth-child(even) .svc-block-content {
  background: var(--dark-4);
}

body:not(.home-page) .svc-features li::before {
  background: var(--red);
}

body:not(.home-page) .btn-gold,
body:not(.home-page) .cf-submit {
  background: var(--red);
  border-color: var(--red);
}

body:not(.home-page) .btn-gold:hover,
body:not(.home-page) .cf-submit:hover {
  background: var(--red-hover);
}

body:not(.home-page) footer {
  background: #2b080e;
}

/* Requested card theming must come after inner-page alignment overrides */
body.about-page .wd-card {
  background: #691019;
  border-right-color: rgba(214,172,109,0.14);
}

body.about-page .wd-card:hover {
  background: #4f0d14;
}

body.about-page .val-item {
  background: #691019;
  border-color: rgba(214,172,109,0.18);
}

body.about-page .val-item:hover {
  background: #4f0d14;
}

body.services-page .svc-block:nth-child(odd) .svc-block-content,
body.services-page .svc-block:nth-child(even) .svc-block-content {
  background: #691019;
}

body.services-page .svc-promo-card {
  background: #691019;
  border: 0.5px solid rgba(214,172,109,0.14);
}

body.services-page .svc-promo-card:hover {
  background: #4f0d14;
  border-left-color: rgba(214,172,109,0.35);
}

/* Final CTA contrast pass on red-themed sections */
.btn-gold,
.cf-submit {
  background: #000;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-gold svg,
.cf-submit svg {
  stroke: currentColor;
}

.btn-gold:hover,
.cf-submit:hover {
  background: #151515;
  color: var(--gold);
  border-color: var(--gold);
}

/* Final responsive pass: placed last so page-scoped rules do not override it. */
@media (max-width: 980px) {
  :root {
    --content-gutter: 24px;
  }

  .services-grid,
  .completed-grid,
  .page-grid,
  .whatwedo-grid,
  .values-list,
  .svc-promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whoweare,
  .about-intro,
  .ceo-profile,
  .mission,
  .contact,
  .svc-block,
  .svc-promo {
    grid-template-columns: 1fr;
  }

  .svc-block.reverse {
    direction: ltr;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-h1,
  .page-hero-h1 {
    font-size: 52px;
  }

  .page-hero,
  .services-page .page-hero {
    padding-left: var(--content-offset);
    padding-right: var(--content-offset);
  }
}

@media (max-width: 760px) {
  :root {
    --content-gutter: 18px;
  }

  #navbar nav,
  nav {
    min-height: 68px;
    height: auto;
    padding: 14px 18px;
    align-items: center;
    flex-wrap: wrap;
  }

  #navbar nav .nav-toggle,
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  #navbar nav .nav-links,
  #navbar nav .nav-cta,
  nav .nav-links,
  nav .nav-cta {
    display: none;
  }

  #navbar nav.nav-open .nav-links,
  nav.nav-open .nav-links {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 14px;
  }

  #navbar nav.nav-open .nav-links a,
  nav.nav-open .nav-links a {
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  #navbar nav.nav-open .nav-cta,
  nav.nav-open .nav-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .hero,
  .page-hero,
  .services-page .page-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 56px;
    margin-top: 0;
  }

  .hero-content,
  .page-hero-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-h1,
  .page-hero-h1 {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .section-title,
  .mission-title,
  .contact-h2,
  .cta-band-text h2,
  .svc-promo-title,
  .wwa-h2 {
    font-size: 34px;
    letter-spacing: 0;
  }

  .services,
  .completed-projects,
  .approach,
  .whatwedo,
  .values,
  .services-intro,
  .svc-promo,
  footer {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .services-grid,
  .completed-grid,
  .page-grid,
  .whatwedo-grid,
  .svc-promo-grid,
  .approach-grid,
  .contact-form-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .counter,
  .stats,
  .approach-grid,
  .values-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approach-step,
  .wd-card {
    border-right: none;
  }

  .counter-cell:nth-child(odd),
  .stats-cell:nth-child(odd),
  .approach-step:nth-child(odd),
  .val-item:nth-child(odd) {
    border-right: 0.5px solid rgba(255,255,255,0.06);
  }

  .ap-arrow {
    display: none;
  }

  .svc-card-fullbg {
    min-height: 360px;
  }

  .wwa-img,
  .about-intro-img,
  .ceo-profile-img,
  .svc-block-img {
    min-height: 320px;
  }

  .wwa-content,
  .about-intro-content,
  .ceo-profile-content,
  .mission,
  .contact-left,
  .contact-right,
  .svc-block-content,
  .cta-band {
    padding: 56px 22px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .btn-outline,
  .btn-gold,
  .btn-white,
  .cf-submit {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  :root {
    --content-gutter: 16px;
  }

  #navbar nav,
  nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-logo-icon,
  #navbar nav .nav-logo-icon {
    width: 58px;
    height: 45px;
  }

  .nav-logo-text,
  #navbar nav .nav-logo-text {
    font-size: 13px;
  }

  .nav-logo-sub,
  #navbar nav .nav-logo-sub {
    font-size: 8px;
    letter-spacing: 1.8px;
  }

  .hero-h1,
  .page-hero-h1 {
    font-size: 34px;
  }

  .hero-p,
  .services-intro-text,
  .about-intro-text,
  .svc-block-text,
  .wwa-text,
  .contact-sub {
    font-size: 15px;
  }

  .section-title,
  .mission-title,
  .contact-h2,
  .cta-band-text h2,
  .svc-promo-title,
  .wwa-h2 {
    font-size: 30px;
  }

  .ap-num,
  .svc-num,
  .counter-num,
  .stats-num {
    font-size: 44px;
    letter-spacing: 0;
  }

  .svc-block-title {
    font-size: 28px;
    letter-spacing: 0;
  }

  .project-title {
    font-size: 24px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

/* Business profile team */
.team-section { padding: var(--section-spacing) 56px; background: var(--cream); }
.team-heading { max-width: var(--content-max); margin: 0 auto 40px; }
.team-grid { max-width: var(--content-max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { overflow: hidden; border: 1px solid rgba(122,14,25,.16); background: #fff; }
.team-photo { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--red-deep); }
.team-card-body { padding: 28px 30px 30px; }
.team-card h3 { margin: 0 0 8px; color: var(--red-deep); font: 400 28px/1.2 var(--ff-display); }
.team-card p { margin: 0; color: var(--gold-dark); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
@media (max-width: 760px) { .team-section { padding: 64px 22px; } .team-grid { grid-template-columns: 1fr; } }
.industries-section { overflow: hidden; padding: var(--section-spacing) 0; background: transparent; }
.industries-heading { max-width: var(--content-max); margin-left: auto; margin-right: auto; padding: 0 56px; }
.industries-heading { margin-bottom: 36px; }
.industries-ticker {
  width: min(calc(100% - 112px), var(--content-max));
  margin-inline: auto;
  overflow: hidden;
}
.industries-track { display: flex; width: max-content; animation: industriesTicker 42s linear infinite; }
.industries-ticker:hover .industries-track { animation-play-state: paused; }
.industries-list { display: flex; flex: none; align-items: center; gap: 0; }
.industries-list span {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 12px 32px 12px 0;
  color: var(--gold-light);
  font: 400 clamp(18px, 2vw, 28px)/1.2 var(--ff-display);
  white-space: nowrap;
}
.industries-list span::after { content: "•"; color: var(--gold); font-family: var(--ff-body); font-size: 11px; }
@keyframes industriesTicker { to { transform: translateX(-50%); } }
@media (max-width: 760px) {
  .industries-section { padding: 64px 0; }
  .industries-heading { padding: 0 22px; }
  .industries-ticker { width: calc(100% - 44px); }
  .industries-list span { gap: 22px; padding-right: 22px; }
}

/* Motion accessibility and touch behavior */
@media (hover: none), (pointer: coarse) {
  .svc-card:hover, .project-card:hover, .val-item:hover { transform: none; box-shadow: none; }
  .svc-card:hover img, .project-card:hover img, .svc-block:hover img, .btn-outline:hover svg, .btn-gold:hover svg, .btn-white:hover svg, .cf-submit:hover svg { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-up.is-visible { opacity: 1; transform: none; transition: opacity .2s ease; }
  .industries-ticker { overflow-x: auto; scrollbar-width: thin; }
  .industries-track { animation: none; }
}
@media (hover: hover) and (pointer: fine) {
  .btn-outline:active, .btn-gold:active, .btn-white:active, .cf-submit:active { transform: scale(.97); transition: transform 140ms var(--ease-out); }
}
