/* ============================================================
   OA DESIGN & BUILD — Global Stylesheet
   Design System v2.0 | March 2026
   ============================================================ */

/* --- CSS VARIABLES --- */
:root {
  /* Backgrounds */
  --color-bg-primary: #0E0D0B;
  --color-bg-secondary: #1A1814;
  --color-bg-tertiary: #252219;
  --color-bg-light: #F5F2EC;

  /* Gold */
  --color-gold: #B8924A;
  --color-gold-light: #C9A96E;
  --color-gold-muted: rgba(184,146,74,0.15);

  /* Text */
  --color-text-primary: #F0EDE6;
  --color-text-secondary: rgba(240,237,230,0.55);
  --color-text-muted: rgba(240,237,230,0.3);
  --color-text-dark: #1A1814;

  /* Borders */
  --color-border: rgba(240,237,230,0.08);
  --color-border-mid: rgba(240,237,230,0.15);

  /* CTA */
  --color-cta-bg: #B8924A;
  --color-cta-text: #0E0D0B;
}

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.8;
  overflow-x: hidden;
}
/* --- PAGE TRANSITION --- */
@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body > *:not(nav) {
  animation: pageFadeIn 450ms ease-out both;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- TYPOGRAPHY --- */
.display, h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: -0.01em;
}
h1 { font-size: 68px; line-height: 1.04; }
h2 { font-size: 44px; line-height: 1.08; }
h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 24px; line-height: 1.2; }
.body-large { font-size: 15px; line-height: 1.85; font-weight: 300; }
.body-base { font-size: 13px; line-height: 1.8; font-weight: 300; }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 0.5px;
  background: rgba(184,146,74,0.4);
}

.gold { color: var(--color-gold); }
.gold-italic { color: var(--color-gold); font-style: italic; }

/* --- NAVIGATION --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 0.5px solid transparent;
}
nav.scrolled {
  background: var(--color-bg-primary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--color-gold);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
}
.nav-logo {
  flex-shrink: 0;
}
.nav-logo img,
.nav-logo-link img {
  width: 160px;
  height: auto;
}
.footer-logo {
  width: 160px;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links li { list-style: none; }
.nav-links a,
.nav-links li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 0.5px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text-primary);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 12px 28px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--color-gold);
  color: var(--color-cta-text);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-gold);
  transition: 0.3s ease;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg-primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
}
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--color-gold);
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* --- HERO (VIDEO) --- */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-video video,
.hero-video .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video .hero-poster {
  display: none;
}
.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,13,11,0.65);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 80px;
  max-width: 800px;
}
.hero-content .eyebrow {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.25,0.46,0.45,0.94) 0.2s forwards;
}
.hero-content h1 {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.25,0.46,0.45,0.94) 0.5s forwards;
  margin-bottom: 24px;
}
.hero-content .hero-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.25,0.46,0.45,0.94) 0.8s forwards;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.25,0.46,0.45,0.94) 0.9s forwards;
}

/* Page hero (non-video) */
.hero-page {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-bg-primary);
}
.hero-page .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-page .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,13,11,0.75);
}
.hero-page .hero-content {
  padding: 160px 40px 80px;
}
.hero-page .hero-content .hero-body {
  margin-bottom: 0;
}

/* --- PAGE BANNER (slim interior hero) --- */
.page-banner {
  position: relative;
  height: 42vh;
  min-height: 320px;
  max-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 13, 11, 0.58);
  z-index: 1;
}
.page-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 48px;
  max-width: 1440px;
}
.page-banner-content .eyebrow {
  margin-bottom: 12px;
}
.page-banner-content h1 {
  margin-bottom: 12px;
}
.page-banner-content .page-banner-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(240, 237, 230, 0.7);
  line-height: 1.7;
  max-width: 560px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 48px;
  overflow: hidden;
}
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background: var(--color-gold);
  opacity: 0.5;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--color-gold);
  color: var(--color-cta-text);
  padding: 14px 32px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--color-bg-primary);
  color: var(--color-gold);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 0.5px solid var(--color-gold);
  padding: 14px 32px;
  transition: all 0.3s ease;
  background: transparent;
}
.btn-ghost:hover {
  background: var(--color-gold);
  color: var(--color-cta-text);
}
.link-gold {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: opacity 0.3s ease;
}
.link-gold:hover { opacity: 0.7; }

/* --- STATS BAR --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--color-border);
  border-bottom: 0.5px solid var(--color-border);
}
.stat-cell {
  padding: 28px 40px;
  border-right: 0.5px solid var(--color-border);
  text-align: center;
}
.stat-cell:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--color-text-primary);
  line-height: 1.2;
}
.stat-suffix {
  font-size: 22px;
  color: var(--color-gold);
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.stats-bar-testimonials {
  grid-template-columns: repeat(3, 1fr);
}

/* --- CREDIBILITY STRIP --- */
.credibility-strip {
  background: #1A1916;
  padding: 1rem 40px;
  border-bottom: 0.5px solid var(--color-border);
}
.credibility-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.credibility-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.7);
  white-space: nowrap;
  padding: 4px 20px;
}
.credibility-icon {
  color: var(--color-gold);
  margin-right: 4px;
}
.credibility-divider {
  width: 1px;
  height: 16px;
  background: rgba(184, 146, 74, 0.4);
}

/* --- SECTIONS --- */
.section {
  padding: 100px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.section-full {
  padding: 100px 40px;
}
.section-dark { background: var(--color-bg-primary); }
.section-alt { background: var(--color-bg-secondary); }

.section-inner,
.container {
  max-width: 1440px;
  margin: 0 auto;
}
.section h2 { margin-bottom: 48px; }

/* Hero page content wrappers */
.hero-page .container,
.hero-page .hero-page-inner {
  position: relative;
  z-index: 2;
  padding: 160px 40px 80px;
}
.hero-page .container p,
.hero-page .hero-page-inner p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.85;
  max-width: 600px;
}

/* --- SERVICE CARDS (HOME) --- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid var(--color-border-mid);
}
.service-card {
  padding: 40px 36px;
  border-right: 0.5px solid var(--color-border-mid);
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--color-bg-tertiary); }
.service-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--color-gold);
  margin-bottom: 24px;
  transition: color 0.3s ease;
}
.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--color-text-primary);
}
.service-card p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-card .link-gold { font-size: 10px; }
.service-card:hover .service-card-num,
.service-card:hover .link-gold { color: var(--color-gold-light); }

/* --- PROJECT CARDS (HOME) --- */
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.projects-header h2 { margin-bottom: 0; }
.projects-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
}
.projects-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.project-card-large { height: 320px; }
.project-card-small { height: 154px; }
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,13,11,0.8) 0%, transparent 60%);
  z-index: 1;
}
.project-card:hover img { transform: scale(1.04); }
.project-card-info,
.project-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  z-index: 2;
}
.project-card-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}
.project-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text-primary);
  transition: color 0.3s ease;
}
.project-card:hover .project-card-name { color: var(--color-gold); }

/* --- TRUST SECTION --- */
.trust-section-full {
  text-align: center;
}
.trust-section-full .eyebrow {
  justify-content: center;
}
.trust-lines-centered {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.trust-line {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}
.trust-dash,
.gold-dash {
  color: var(--color-gold);
  flex-shrink: 0;
  font-weight: 400;
}
.gold-dash {
  display: inline-block;
  width: 20px;
  height: 0.5px;
  background: var(--color-gold);
  margin-top: 12px;
}

/* --- TESTIMONIAL CAROUSEL --- */
.testi-carousel {
  margin-top: 64px;
}
.testi-carousel-hr {
  width: 100%;
  height: 0.5px;
  background: rgba(184, 146, 74, 0.3);
  margin-bottom: 48px;
}
.testi-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.testi-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  padding: 0;
}
.testi-arrow:hover { opacity: 0.7; }
.testi-carousel-stage {
  flex: 1;
  position: relative;
  min-height: 260px;
  overflow: hidden;
}
.testi-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}
.testi-slide-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  color: var(--color-gold);
  line-height: 0.6;
  margin-bottom: 16px;
}
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: rgba(240, 237, 230, 0.9);
  line-height: 1.55;
  max-width: 700px;
  margin-bottom: 24px;
}
.testi-sep {
  display: block;
  width: 40px;
  height: 0.5px;
  background: var(--color-gold);
  margin: 0 auto 16px;
}
.testi-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}
.testi-stars {
  font-size: 14px;
  color: var(--color-gold);
  letter-spacing: 4px;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(184, 146, 74, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}
.testi-dot-active {
  background: var(--color-gold);
}

/* --- PROCESS TEASER (HOME) --- */
.process-steps,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.process-num,
.process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-gold-muted);
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}
.process-link {
  display: inline-block;
  margin-top: 16px;
}

/* --- SERVICE BLOCKS (SERVICES PAGE) --- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  position: relative;
}
.service-block.reversed { direction: rtl; }
.service-block.reversed > * { direction: ltr; }
.service-block-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.service-intro-body {
  max-width: 800px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-secondary);
}
.service-note {
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 16px;
}
.service-block-ghost {
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 300;
  color: rgba(184,146,74,0.06);
  position: absolute;
  top: 40px;
  right: 40px;
  line-height: 1;
  pointer-events: none;
}
.service-block-text h2 {
  font-size: 36px;
  margin-bottom: 24px;
}
.service-block-text p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}
.scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.scope-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 0.5px solid var(--color-border-mid);
  padding: 6px 14px;
}
.service-block-image {
  position: relative;
  overflow: hidden;
}
.service-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- GUARANTEE BLOCK --- */
.guarantee {
  background: var(--color-bg-secondary);
  padding: 80px 40px;
  text-align: center;
}
.guarantee h2 {
  font-size: 40px;
  max-width: 700px;
  margin: 0 auto 24px;
}
.guarantee p {
  font-size: 15px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* --- VALUE CARDS --- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--color-bg-secondary);
  border: 0.5px solid var(--color-border-mid);
  padding: 36px;
}
.value-card h3 { margin-bottom: 12px; font-size: 22px; }
.value-card p { font-size: 13px; color: var(--color-text-secondary); line-height: 1.7; }

/* --- PROJECTS PAGE --- */
.filter-bar {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: var(--color-bg-primary);
  border-bottom: 0.5px solid var(--color-border);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-buttons {
  display: flex;
  gap: 32px;
}
.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn.active,
.filter-btn:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}
.filter-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--color-text-muted);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.project-grid-card {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.project-grid-card.hidden {
  display: none;
}
.project-grid-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-grid-card:hover .project-grid-img { transform: scale(1.04); }
.project-grid-card:hover { border: 0.5px solid var(--color-gold); }
.project-grid-info { padding: 20px 0; }
.project-grid-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.project-grid-card:hover .project-grid-info h3 { color: var(--color-gold); }
.project-grid-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 4px;
}
.project-grid-location {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--color-text-muted);
}

/* --- PROCESS TIMELINE (rebuilt) --- */
.process-timeline {
  max-width: 900px;
  margin: 0 auto;
}
.process-tl-step {
  display: grid;
  grid-template-columns: 120px 40px 1fr;
  min-height: 0;
}
.process-tl-step-alt {
  background: #111109;
}
.process-tl-left {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 3rem;
}
.process-tl-ghost {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(184, 146, 74, 0.3);
  line-height: 1;
  user-select: none;
}
.process-tl-line {
  position: relative;
  display: flex;
  justify-content: center;
}
.process-tl-line::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(184, 146, 74, 0.4);
}
.process-tl-step:last-child .process-tl-line::before {
  bottom: 50%;
}
.process-tl-dot {
  position: absolute;
  top: 3.4rem;
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
  z-index: 2;
}
.process-tl-right {
  padding: 3rem 0 3rem 32px;
}
.process-tl-right .duration-badge {
  margin-bottom: 12px;
}
.process-tl-right h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}
.process-tl-right p {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 560px;
}
.duration-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 0.5px solid var(--color-gold);
  padding: 6px 16px;
}

/* Guarantee panel */
.process-tl-guarantee {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 40px;
  background: #1A1916;
  border: 1px solid rgba(184, 146, 74, 0.5);
  text-align: center;
}
.process-tl-guarantee p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* --- IMAGINE PULL QUOTE (HOME) --- */
.imagine-quote {
  background: var(--color-bg-primary);
  padding: 6rem 40px;
  position: relative;
  overflow: hidden;
}
.imagine-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.imagine-quote-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.imagine-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 300;
  color: rgba(240, 237, 230, 0.9);
  line-height: 1.35;
  margin-bottom: 32px;
}
.imagine-quote-attr {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* --- PRECISION STATS (HOME) --- */
.precision-stats {
  background: #1A1916;
  padding: 5rem 40px;
}
.precision-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.precision-stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: 12px;
}
.precision-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --- ABOUT PAGE --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-grid p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-bottom: 24px;
}
.about-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}
.values-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.value-2x2-card {
  border-top: 0.5px solid var(--color-border-mid);
  padding-top: 24px;
}
.value-2x2-card h3 { font-size: 22px; margin-bottom: 12px; }
.value-2x2-card p { font-size: 13px; color: var(--color-text-secondary); line-height: 1.7; }

/* Team cards */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.team-card {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  text-align: left;
}
.team-portrait {
  width: 210px;
  min-width: 210px;
  height: 260px;
  object-fit: cover;
  object-position: center;
  background: var(--color-bg-tertiary);
}
.team-text {
  flex: 1;
}
.team-portrait[src=""],
.team-portrait:not([src]) {
  display: none;
}
.team-card h3 { font-size: 22px; margin-bottom: 6px; }
.team-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.team-bio {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}
.team-bio p {
  margin-bottom: 0;
}

/* --- FOUNDING STORY --- */
.founding-story {
  background: var(--color-bg-secondary);
  padding: 80px 40px;
}
.founding-story-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.founding-story-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 24px;
}
.founding-story-inner p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.9;
}

/* --- TESTIMONIALS PAGE --- */
.featured-quote {
  background: var(--color-bg-secondary);
  padding: 80px 40px;
  text-align: center;
}
.featured-quote .quote-mark {
  position: static;
  font-size: 100px;
  display: block;
  margin-bottom: 24px;
}
.featured-quote .testimonial-text {
  font-size: 26px;
  max-width: 800px;
  margin: 0 auto 24px;
  padding-left: 0;
  text-align: center;
}
.featured-quote .testimonial-attr {
  padding-left: 0;
  text-align: center;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--color-bg-secondary);
  border-top: 2px solid var(--color-gold);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.review-card .quote-mark {
  position: static;
  font-size: 24px;
  margin-bottom: 16px;
}
.review-card p {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-stars {
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-attr {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--color-text-muted);
}
.review-grid-2x2 {
  grid-template-columns: repeat(2, 1fr);
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--color-gold-muted);
  color: var(--color-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
}
.review-avatar-sm {
  width: 28px;
  height: 28px;
  min-width: 28px;
  font-size: 13px;
}
.review-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-primary);
}

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}
.form-group {
  position: relative;
  margin-bottom: 32px;
}
.form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--color-bg-secondary);
  border: none;
  border-bottom: 0.5px solid transparent;
  color: var(--color-text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 14px 16px;
  transition: border-color 0.3s ease;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: var(--color-gold);
}
.form-select {
  appearance: none;
  cursor: pointer;
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.btn-submit {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--color-gold);
  color: var(--color-cta-text);
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.btn-submit:hover {
  background: var(--color-bg-tertiary);
  color: var(--color-gold);
}
.form-success {
  display: none;
  text-align: center;
  padding: 60px 0;
}
.form-success h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.form-success p {
  color: var(--color-text-secondary);
}
.contact-panel h3 {
  font-size: 20px;
  margin-bottom: 24px;
}
.contact-detail {
  margin-bottom: 16px;
}
.contact-detail a {
  font-size: 14px;
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}
.contact-detail a:hover { color: var(--color-gold); }
.contact-detail .label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 4px;
}
.whatsapp-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  color: #25D366;
}
.response-promise {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 0.5px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}
.trust-signals {
  margin-top: 32px;
}
.trust-signal {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* --- CTA STRIP --- */
.cta-strip {
  background: var(--color-gold);
  padding: 48px 40px;
}
.cta-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--color-cta-text);
  margin-bottom: 0;
}
.cta-strip .btn-dark {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  padding: 14px 32px;
  margin-top: 2.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.cta-strip .btn-dark:hover {
  background: var(--color-bg-tertiary);
}

/* --- FOOTER --- */
footer {
  background: var(--color-bg-secondary);
  border-top: 0.5px solid var(--color-border-mid);
}
.footer-upper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 4rem 40px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}
.footer-brand img {
  width: 160px;
  height: auto;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}
.footer-secondary-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.footer-company-num {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}
.footer-social a {
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}
.footer-social a:hover {
  color: var(--color-gold);
}
.footer-accreditations {
  list-style: none;
}
.footer-accreditations li {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-secondary);
  padding: 4px 0;
}
.accreditation-featured {
  color: var(--color-gold) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400 !important;
}
/* Footer aliases for variant markup */
.footer-col-label,
.footer-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-secondary);
  padding: 4px 0;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--color-gold); }
.footer-navigation ul { list-style: none; }
.footer-navigation ul li a,
.footer-nav li a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-secondary);
  padding: 4px 0;
  transition: color 0.3s ease;
}
.footer-navigation ul li a:hover,
.footer-nav li a:hover { color: var(--color-gold); }
.footer-navigation h4,
.footer-contact h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}
.footer-contact p {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}
.footer-contact a { color: var(--color-text-secondary); transition: color 0.3s ease; }
.footer-contact a:hover { color: var(--color-gold); }
.footer-company {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.footer-reg {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 40px;
}
.footer-contact-item {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}
.footer-contact-item a { color: var(--color-text-secondary); }
.footer-contact-item a:hover { color: var(--color-gold); }
.footer-bar {
  border-top: 0.5px solid var(--color-border);
  padding: 20px 40px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bar span,
.footer-bar p,
.footer-bar a {
  font-size: 11px;
  color: var(--color-text-muted);
}
.footer-bar a:hover { color: var(--color-gold); }
.footer-brand-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(184, 146, 74, 0.2);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- PROSE (Privacy Policy, legal pages) --- */
.prose {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}
.prose h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose p {
  margin-bottom: 1rem;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.prose ul li {
  margin-bottom: 0.4rem;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.8;
}
.prose a {
  color: var(--color-gold);
  transition: opacity 0.3s ease;
}
.prose a:hover {
  opacity: 0.7;
}
.prose em {
  color: var(--color-text-muted);
}

/* --- 404 PAGE --- */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.page-404 h1 {
  font-size: 120px;
  color: var(--color-gold-muted);
  margin-bottom: 16px;
}
.page-404 h2 {
  font-size: 32px;
  margin-bottom: 16px;
}
.page-404 p {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
}

/* --- PROJECT DETAIL PAGE --- */
.project-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}
.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 40px 40px;
  background: linear-gradient(to top, rgba(14,13,11,0.85) 0%, transparent 100%);
}
.project-hero-overlay h1 {
  font-size: 52px;
  margin-bottom: 8px;
}
.project-hero-overlay .project-hero-location {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.project-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 0.5px solid var(--color-border);
  max-width: 1440px;
  margin: 0 auto;
}
.project-summary-item {
  padding: 32px 40px;
  border-right: 0.5px solid var(--color-border);
}
.project-summary-item:last-child {
  border-right: none;
}
.project-summary-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}
.project-summary-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text-primary);
}
/* --- PROJECT CASE STUDY --- */
.project-overview-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--color-border);
  border-bottom: 0.5px solid var(--color-border);
}
.project-overview-item {
  padding: 24px 32px;
  border-right: 0.5px solid var(--color-border);
  text-align: center;
}
.project-overview-item:last-child { border-right: none; }
.project-overview-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.project-overview-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-primary);
}
.project-case-study {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}
.project-case-section {
  margin-bottom: 48px;
}
.project-case-section:last-child {
  margin-bottom: 0;
}
.project-case-section h2 {
  margin-bottom: 20px;
}
.project-case-section p {
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}
.project-case-section p:last-child {
  margin-bottom: 0;
}
.project-narrative {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}
.project-narrative h2 {
  margin-bottom: 32px;
}
.project-narrative p {
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}
.project-narrative p:last-child {
  margin-bottom: 0;
}
.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px 80px;
}
.project-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 2px;
}
.project-gallery img:first-child {
  grid-column: 1 / -1;
  height: 480px;
}
.project-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding: 24px 40px;
  transition: opacity 0.3s ease;
}
.project-back:hover {
  opacity: 0.7;
}

/* ========== ASK OADB ========== */
.ask-oadb-section,
.ask-oadb-section * {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}
.ask-oadb-section {
  background: #0E0D0B;
  padding: 4rem 0;
}

.ask-oadb-section .eyebrow,
.ask-oadb-section .ask-oadb-label {
  color: #B8924A !important;
}

.ask-oadb-section h2,
.ask-oadb-section p,
.ask-oadb-section .ask-sub {
  color: #F0EDE6 !important;
}

.ask-sub {
  font-size: 16px;
  margin-bottom: 32px;
}
.ask-widget {
  max-width: 720px;
}
.ask-common-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #B8924A !important;
  margin-bottom: 12px;
}
.ask-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.ask-oadb-section .ask-preset {
  color: #FFFFFF !important;
  border-color: rgba(184,146,74,0.4) !important;
  background: rgba(184,146,74,0.1) !important;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.ask-oadb-section .ask-preset:hover {
  background: #B8924A !important;
  color: #0E0D0B !important;
}
.ask-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.ask-oadb-section .ask-input {
  flex: 1;
  color: #F0EDE6 !important;
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(184,146,74,0.3) !important;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  border-radius: 4px;
}
.ask-input::placeholder {
  color: rgba(240,237,230,0.4);
}

.ask-oadb-section .ask-btn {
  background: #B8924A !important;
  color: #0E0D0B !important;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.ask-oadb-section .ask-btn:hover { opacity: 0.85; }
.ask-messages {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 24px;
}
.ask-msg {
  margin-bottom: 12px;
  max-width: 85%;
}
.ask-msg p {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #F0EDE6 !important;
}
.ask-msg-user {
  margin-left: auto;
  text-align: right;
}
.ask-msg-user p {
  background: #2A2520 !important;
  display: inline-block;
  text-align: left;
}
.ask-msg-assistant p {
  background: #111109 !important;
  border: 1px solid rgba(184,146,74,0.2);
}
.ask-msg-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #B8924A !important;
  display: block;
  margin-bottom: 4px;
}
.ask-dots {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: #111109;
  border: 1px solid rgba(184,146,74,0.2);
  border-radius: 8px;
  width: fit-content;
}
.ask-dots span {
  width: 8px;
  height: 8px;
  background: #B8924A;
  border-radius: 50%;
  animation: askDotPulse 1.2s infinite;
}
.ask-dots span:nth-child(2) { animation-delay: 0.2s; }
.ask-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes askDotPulse {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}
.ask-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: #111109;
  border: 1px solid rgba(184,146,74,0.2);
  border-radius: 6px;
  margin-bottom: 16px;
}
.ask-cta-strip p {
  font-size: 15px;
  color: rgba(240,237,230,0.6) !important;
  margin: 0;
}

.ask-oadb-section .ask-cta-strip .btn-primary {
  color: #0E0D0B !important;
  background: #B8924A !important;
}

.ask-oadb-section .ask-disclaimer {
  font-size: 11px;
  color: rgba(240,237,230,0.4) !important;
  line-height: 1.5;
}

/* ========== PDF BUTTON ========== */
.btn-outline-gold {
  display: inline-block;
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  padding: 14px 32px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
  margin-top: 8px;
}
.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-near-black);
}

/* ========== PDF PERSONALISATION OVERLAY ========== */
.est-pdf-overlay {
  max-width: 400px;
  margin: 24px auto 0;
  padding: 28px 24px;
  background: var(--color-near-black);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  text-align: left;
  animation: estPdfSlideIn 0.3s ease-out;
}
@keyframes estPdfSlideIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.est-pdf-overlay-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}
.est-pdf-overlay-sub {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.est-pdf-overlay .form-group {
  margin-bottom: 16px;
}
.est-pdf-overlay .form-input {
  background: rgba(255,255,255,0.04);
  border: none;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-primary);
  padding: 10px 0;
  font-size: 14px;
}
.est-pdf-overlay .form-input::placeholder {
  color: var(--color-text-muted);
  font-size: 13px;
}
.est-pdf-download-btn {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 12px;
}
.est-pdf-skip {
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.est-pdf-skip:hover {
  color: var(--color-text-secondary);
}
.est-pdf-skip-note {
  font-size: 11px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}
.est-pdf-consent-group {
  margin-bottom: 16px;
}
.est-pdf-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  cursor: pointer;
}
.est-pdf-consent-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-gold);
  width: 16px;
  height: 16px;
}
.est-pdf-privacy-link {
  color: var(--color-gold);
  text-decoration: underline;
}
.est-pdf-download-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .project-hero { height: 50vh; }
  .project-summary { grid-template-columns: 1fr; }
  .project-summary-item { border-right: none; border-bottom: 0.5px solid var(--color-border); }
  .project-gallery { grid-template-columns: 1fr; padding: 0 24px 48px; }
  .project-gallery img { height: 260px; }
  .project-gallery img:first-child { height: 320px; }
}
@media (max-width: 640px) {
  .project-hero-overlay { padding: 40px 24px 24px; }
  .project-hero-overlay h1 { font-size: 36px; }
  .project-narrative { padding: 48px 24px; }
  .project-gallery img { height: 200px; }
  .project-gallery img:first-child { height: 240px; }
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- CUSTOM CURSOR --- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  margin: -6px 0 0 -6px;
}
.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-gold);
  margin: -16px 0 0 -16px;
  transition: width 0.15s ease, height 0.15s ease, margin 0.15s ease;
}
.cursor-ring.hover {
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
}

/* --- CHANNEL 4 FEATURE (HOME) --- */
.ch4-feature {
  background: var(--color-bg-primary);
  padding: 5rem 40px;
}
.ch4-feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ch4-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(240, 237, 230, 0.9);
  line-height: 1.1;
  margin-bottom: 24px;
}
.ch4-feature-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.ch4-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text-secondary);
  max-width: 480px;
}
.ch4-video {
  width: 100%;
  max-width: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(184, 146, 74, 0.3), 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* --- CHANNEL 4 ABOUT --- */
.ch4-about {
  background: #1A1916;
  padding: 80px 40px;
}
.ch4-about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.ch4-about-inner .eyebrow {
  justify-content: center;
}
.ch4-about-inner h2 {
  margin-bottom: 20px;
}
.ch4-about-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
}
.ch4-video-centered {
  max-width: 700px;
  margin: 0 auto;
}

/* --- CHANNEL 4 TRUST BAR (TESTIMONIALS) --- */
.ch4-trust-bar {
  background: var(--color-bg-primary);
  padding: 2rem 40px 3rem;
}
.ch4-trust-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.ch4-trust-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: rgba(240, 237, 230, 0.9);
  margin-bottom: 24px;
}
.ch4-trust-gold {
  color: var(--color-gold);
}
.ch4-video-slim {
  max-width: 600px;
  margin: 0 auto;
}

/* --- ESTIMATOR PAGE --- */
.estimator-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text-secondary);
}
.estimator-section { padding-top: 0; }
.estimator-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.estimator-main { position: relative; }
.estimator-progress {
  height: 3px;
  background: var(--color-border);
  margin-bottom: 48px;
  border-radius: 2px;
  overflow: hidden;
}
.estimator-progress-bar {
  height: 100%;
  background: var(--color-gold);
  transition: width 0.4s ease;
}
.est-step { display: none; }
.est-step-active { display: block; }
.est-step-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.est-step h2 { font-size: 36px; margin-bottom: 32px; }
.est-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.est-option {
  background: transparent;
  border: 1px solid var(--color-border-mid);
  padding: 24px;
  text-align: left;
  transition: all 0.25s ease;
  cursor: pointer;
}
.est-option:hover { border-color: var(--color-gold); }
.est-option-selected {
  border-color: var(--color-gold);
  background: rgba(184, 146, 74, 0.08);
}
.est-option-title {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}
.est-option-sub {
  display: block;
  font-size: 12px;
  color: var(--color-text-secondary);
}
.est-back {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 24px;
  padding: 0;
  transition: color 0.2s ease;
}
.est-back:hover { color: var(--color-gold); }

/* Estimator result */
.est-result-range {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.est-range-low, .est-range-high {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--color-gold);
}
.est-range-sep {
  font-size: 32px;
  color: var(--color-text-muted);
}
.est-result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.est-result-stat { text-align: center; }
.est-result-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}
.est-result-stat-label {
  font-size: 11px;
  color: var(--color-text-secondary);
}
.est-disclaimer {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.est-cta-btn {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.est-contact-form {
  max-width: 400px;
  margin: 32px auto 0;
}
.est-contact-form .form-group { margin-bottom: 16px; }
.est-form-submit { width: 100%; margin-bottom: 12px; }
.est-cancel {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.est-cancel:hover { color: var(--color-gold); }
.est-thank-you { text-align: center; padding: 40px 0; }
.est-thank-you p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-top: 16px;
}

/* Estimator sidebar */
.estimator-sidebar {
  background: var(--color-bg-secondary);
  padding: 32px;
  border: 1px solid var(--color-border);
  align-self: start;
  position: sticky;
  top: 100px;
}
.estimator-sidebar h3 {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--color-text-primary);
}
.est-summary-item {
  padding: 12px 0;
  border-bottom: 0.5px solid var(--color-border);
}
.est-summary-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.est-summary-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--color-text-primary);
}
.est-summary-range {
  padding: 16px 0 0;
  margin-top: 8px;
}
.est-summary-range-val {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--color-gold);
  margin-top: 4px;
}

/* Nav estimate link */
.nav-estimate-link {
  color: var(--color-gold) !important;
}

/* --- TIMELINE VISUALISER (PROCESS) --- */
.tl-vis-sub {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
}
.tl-vis-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tl-vis-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--color-border-mid);
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.25s ease;
}
.tl-vis-btn:hover { border-color: var(--color-gold); color: var(--color-text-primary); }
.tl-vis-btn-active {
  border-color: var(--color-gold);
  background: rgba(184, 146, 74, 0.1);
  color: var(--color-gold);
}
.tl-vis-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding: 24px;
  background: var(--color-bg-secondary);
  border: 0.5px solid var(--color-border);
}
.tl-vis-stat { text-align: center; }
.tl-vis-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--color-gold);
  margin-bottom: 4px;
}
.tl-vis-stat-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.tl-vis-gantt { margin-bottom: 32px; }
.tl-gantt-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  margin-bottom: 8px;
}
.tl-gantt-label {
  font-size: 12px;
  color: var(--color-text-secondary);
  padding-right: 16px;
}
.tl-gantt-track {
  position: relative;
  height: 32px;
  background: var(--color-bg-secondary);
  border: 0.5px solid var(--color-border);
}
.tl-gantt-bar {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 8px;
  min-width: 40px;
}
.tl-gantt-bar-text {
  font-size: 10px;
  color: var(--color-text-primary);
  white-space: nowrap;
}
.tl-gantt-milestone {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-6px);
}
.tl-gantt-milestone-diamond {
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.tl-gantt-date-mobile {
  display: none;
  font-size: 11px;
  color: var(--color-text-muted);
}
.tl-vis-handover-badge {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--color-gold);
  padding: 24px;
  border: 1px solid rgba(184, 146, 74, 0.4);
  margin-bottom: 24px;
}
.tl-vis-disclaimer {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.tl-vis-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

/* --- RESPONSIVE: TABLET --- */
@media (max-width: 1024px) {
  h1 { font-size: 52px; }
  h2 { font-size: 38px; }

  .nav-inner { padding: 0 24px; }
  .section, .section-full { padding: 64px 24px; }

  .service-cards { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 0.5px solid var(--color-border-mid); }
  .service-card:last-child { border-bottom: none; }

  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card-large { height: 280px; }
  .projects-stack { flex-direction: row; }
  .project-card-small { height: 280px; flex: 1; }

  .testi-carousel-stage { min-height: 280px; }
  .process-steps, .process-grid { grid-template-columns: 1fr; gap: 32px; }

  .service-block { grid-template-columns: 1fr; }
  .service-block-image { min-height: 300px; }
  .service-block.reversed { direction: ltr; }

  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { min-height: 300px; }
  .values-2x2 { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-upper { grid-template-columns: 1fr 1fr; }

  .cta-strip-inner { flex-direction: column; text-align: center; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-testimonials { grid-template-columns: repeat(3, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }

  .credibility-inner { justify-content: center; }
  .credibility-divider:nth-child(6) { display: none; }

  .ch4-feature-inner { grid-template-columns: 1fr; gap: 40px; }
  .ch4-logo-text { font-size: 40px; }

  .precision-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .precision-stat-number { font-size: 44px; }
  .imagine-quote-text { font-size: 34px; }

  .project-overview-bar { grid-template-columns: repeat(2, 1fr); }
  .project-overview-item:nth-child(2) { border-right: none; }

  .project-case-study { padding: 48px 24px; }

  .estimator-container { grid-template-columns: 1fr; }
  .estimator-sidebar { position: static; }

  .tl-vis-stats { grid-template-columns: repeat(2, 1fr); }
}

/* --- RESPONSIVE: MOBILE --- */
@media (max-width: 640px) {
  h1 { font-size: 38px; }
  h2 { font-size: 32px; }

  .nav-inner { padding: 0 24px; height: 60px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-video { min-height: 100vh; }
  .hero-video video { display: none; }
  .hero-video .hero-poster { display: block; }
  .hero-content { padding: 0 24px 60px; }
  .hero-ctas { flex-direction: column; gap: 16px; width: 100%; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { width: 100%; text-align: center; }

  .hero-page .hero-content,
  .hero-page .container,
  .hero-page .hero-page-inner { padding: 120px 24px 48px; }
  .page-banner { min-height: 220px; height: 30vh; }
  .page-banner-content { padding: 0 24px 32px; }
  .page-banner-content h1 { font-size: 32px; }

  .section, .section-full { padding: 48px 24px; }

  .credibility-strip { padding: 0.75rem 24px; }
  .credibility-inner { gap: 0; }
  .credibility-item { padding: 6px 12px; font-size: 10px; }
  .credibility-divider { display: none; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stats-bar-testimonials { grid-template-columns: 1fr 1fr 1fr; }
  .stat-cell { padding: 20px; }
  .stat-number { font-size: 28px; }

  .service-cards { grid-template-columns: 1fr; }

  .projects-grid { grid-template-columns: 1fr; }
  .projects-stack { flex-direction: column; }
  .project-card-large,
  .project-card-small { height: 240px; }

  .process-steps { grid-template-columns: 1fr; }

  .service-block { grid-template-columns: 1fr; }
  .service-block-text { padding: 48px 24px; }
  .service-block-ghost { font-size: 100px; }
  .service-block-image { min-height: 240px; }

  .value-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; padding: 24px; }

  .process-tl-step { grid-template-columns: 1fr; }
  .process-tl-left { padding-top: 2rem; justify-content: flex-start; padding-left: 24px; }
  .process-tl-ghost { font-size: 48px; }
  .process-tl-line { display: none; }
  .process-tl-right { padding: 0 24px 2rem; }
  .process-tl-right h3 { font-size: 22px; }
  .process-tl-guarantee { margin: 0 24px; padding: 24px; }
  .process-tl-guarantee p { font-size: 18px; }

  .precision-stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .precision-stat-number { font-size: 44px; }
  .imagine-quote { padding: 4rem 24px; }
  .imagine-quote-text { font-size: 28px; }

  .testi-carousel-wrap { gap: 8px; }
  .testi-arrow { width: 32px; height: 32px; }
  .testi-carousel-stage { min-height: 320px; }
  .testi-text { font-size: 18px; }
  .testi-carousel { margin-top: 40px; }

  .about-grid { grid-template-columns: 1fr; }
  .values-2x2 { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
  .team-portrait { width: 100%; min-width: unset; height: 240px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .featured-quote { padding: 48px 24px; }
  .featured-quote .testimonial-text { font-size: 20px; }

  .filter-bar { padding: 12px 24px; flex-direction: column; gap: 12px; }
  .filter-buttons { flex-wrap: wrap; gap: 16px; }

  .cta-strip { padding: 40px 24px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip h2 { font-size: 26px; }

  .project-overview-bar { grid-template-columns: 1fr; }
  .project-overview-item { border-right: none; border-bottom: 0.5px solid var(--color-border); }
  .project-overview-item:last-child { border-bottom: none; }
  .project-case-study { padding: 48px 24px; }

  .ch4-feature { padding: 3rem 24px; }
  .ch4-feature-inner { grid-template-columns: 1fr; gap: 32px; }
  .ch4-logo-text { font-size: 36px; margin-bottom: 16px; }
  .ch4-feature-text h2 { font-size: 28px; }
  .ch4-about { padding: 48px 24px; }
  .ch4-trust-bar { padding: 1.5rem 24px 2rem; }
  .ch4-trust-text { font-size: 20px; }

  .estimator-container { grid-template-columns: 1fr; }
  .estimator-sidebar { position: static; }
  .est-options { grid-template-columns: 1fr; }
  .est-step h2 { font-size: 28px; }
  .est-range-low, .est-range-high { font-size: 40px; }
  .est-result-stats { grid-template-columns: 1fr; gap: 16px; }

  .tl-vis-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .tl-vis-buttons { flex-direction: column; }
  .tl-gantt-row { grid-template-columns: 1fr; gap: 4px; }
  .tl-gantt-track { display: none; }
  .tl-gantt-date-mobile { display: block; }
  .tl-gantt-label { font-size: 13px; color: var(--color-text-primary); padding: 8px 0 0; border-left: 3px solid rgba(184, 146, 74, 0.5); padding-left: 12px; }

  .founding-story { padding: 48px 24px; }
  .founding-story-inner h2 { font-size: 28px; }

  .ask-cta-strip { flex-direction: column; text-align: center; }
  .ask-msg { max-width: 95%; }
  .ask-preset { font-size: 12px; padding: 6px 12px; }

  .footer-upper { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-bar { flex-direction: column; gap: 8px; text-align: center; }

  /* Touch targets */
  .btn-primary, .btn-ghost, .btn-submit, .nav-cta { min-height: 44px; }

  /* Disable custom cursor on touch */
  .cursor-dot, .cursor-ring { display: none !important; }

  /* Mobile tap response */
  .btn-primary:active,
  .btn-ghost:active,
  .btn-submit:active {
    transform: scale(0.97);
    transition: transform 0.15s ease;
  }
}
