/* ============================================================
   CCGS CONSTRUCTION — STYLE.CSS
   Brand Bible Compliant · Dark Luxury · Mobile-First
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --founder-black: #0A0A0A;
  --deep-charcoal: #141414;
  --charcoal: #1A1A1A;
  --mid-charcoal: #2C2C2C;
  --gold: #C17F24;
  --gold-light: #D4953A;
  --gold-pale: #E8B870;
  --gold-deep: #7A4E14;
  --white: #FFFFFF;
  --cream: #F5F2EE;
  --stone: #888680;
  --stone-deep: #555352;

  /* Layout */
  --nav-height: 72px;
  --container: 1200px;
  --container-wide: 1400px;
  --grid-size: 80px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cream);
  background: var(--founder-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button { cursor: pointer; }

/* ---------- Typography ---------- */
.display, h1 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
}
.mono {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container--wide {
  max-width: var(--container-wide);
}
.text-gold { color: var(--gold); }
.text-stone { color: var(--stone); }
.text-cream { color: var(--cream); }
.text-white { color: var(--white); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ---------- Grid Background Texture ---------- */
.grid-bg {
  position: relative;
}
.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Gold Glow ---------- */
.gold-glow {
  position: relative;
}
.gold-glow::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,127,36,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--founder-black);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(193,127,36,0.25);
}
.btn--outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cream);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--ghost {
  color: var(--gold);
  padding: 12px 0;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
}
.btn--ghost:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 20px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.is-scrolled {
  background: rgba(10,10,10,0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
}
.navbar__logo {
  z-index: 1001;
  display: flex;
  align-items: center;
}
.navbar__logo-img {
  height: 40px;
  width: auto;
}
.navbar__logo span {
  color: var(--gold);
}
.navbar__links {
  display: none;
  gap: 20px;
}
.navbar__links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--stone);
  transition: color 0.3s var(--ease);
}
.navbar__links a:hover,
.navbar__links a.active {
  color: var(--white);
}
.navbar__cta {
  display: none;
  padding: 8px 20px;
  font-size: 11px;
}
.navbar__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}
.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.navbar__burger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.navbar__burger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--founder-black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cream);
  transition: color 0.3s var(--ease);
}
.mobile-nav a:hover {
  color: var(--gold);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 90px 20px 40px;
  position: relative;
  overflow: hidden;
}
.hero__content {
  position: relative;
  z-index: 1;
}
.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.85;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__tagline {
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 8px;
}
.hero__tagline--es {
  font-size: 0.9rem;
  color: var(--stone);
  margin-bottom: 28px;
}
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero__scroll span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--stone);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 32px 20px;
  background: var(--deep-charcoal);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.stats__item-number {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stats__item-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--stone);
  margin-top: 4px;
}

/* ============================================================
   RECOGNITION BANNER
   ============================================================ */
.recognition {
  padding: 48px 20px;
  background: var(--founder-black);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.recognition__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.recognition__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--stone-deep);
  text-transform: uppercase;
}

.recognition__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.recognition__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.recognition__badge {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.recognition__badge:hover {
  transform: scale(1.05);
}

.recognition__badge--forbes {
  height: 100px;
  border-radius: 10px;
}

.recognition__badge--bbb {
  height: 100px;
  border-radius: 10px;
}

.recognition__badge--mara {
  height: 100px;
  border-radius: 10px;
}

.recognition__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--stone);
  text-align: center;
  line-height: 1.5;
}

.recognition__divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
}

/* Homepage recognition strip (clickable link to recognition page) */
.recognition-strip {
  display: block;
  padding: 28px 20px;
  background: var(--deep-charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s;
  text-decoration: none;
}

.recognition-strip:hover {
  background: var(--charcoal);
}

.recognition-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.recognition-strip__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--stone-deep);
  text-transform: uppercase;
}

.recognition-strip__logos {
  display: flex;
  align-items: center;
  gap: 24px;
}

.recognition-strip__img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.recognition-strip__img--rounded {
  border-radius: 6px;
}

.recognition-strip__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  transition: gap 0.3s;
}

.recognition-strip:hover .recognition-strip__cta {
  gap: 10px;
}

@media (max-width: 560px) {
  .recognition__logos {
    gap: 24px;
  }
  .recognition__divider {
    display: none;
  }
  .recognition__badge {
    height: 80px;
  }
  .recognition__badge--forbes {
    height: 80px;
  }
}

/* ============================================================
   RECOGNITION PAGE CARDS
   ============================================================ */
.recog-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.recog-card--reverse {
  grid-template-columns: 1fr 320px;
}

.recog-card--reverse .recog-card__badge {
  order: 2;
}

.recog-card--reverse .recog-card__content {
  order: 1;
}

.recog-card__badge {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recog-card__badge img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.recog-card__badge--mara img:first-child {
  border-radius: 14px;
}

.recog-card__cert {
  border-radius: 14px;
}

.recog-card__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 20px;
}

.recog-card__text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 16px;
}

.recog-card__text:last-of-type {
  margin-bottom: 0;
}

.recog-card__quote {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(193, 127, 36, 0.06);
  border: 1px solid rgba(193, 127, 36, 0.2);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  color: var(--cream);
  line-height: 1.7;
}

.recog-card__quote span {
  font-style: normal;
  font-size: 13px;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .recog-card,
  .recog-card--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .recog-card--reverse .recog-card__badge {
    order: 0;
  }
  .recog-card--reverse .recog-card__content {
    order: 0;
  }
  .recog-card__badge {
    max-width: 280px;
  }
}

/* ============================================================
   TWO COLUMN LAYOUT
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   FULLSERVICE ITEMS (homeowners page)
   ============================================================ */
.fullservice-item {
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fullservice-item + .fullservice-item {
  border-top: none;
}

.fullservice-item__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.fullservice-item--highlight {
  background: rgba(193, 127, 36, 0.05);
  border-color: rgba(193, 127, 36, 0.2);
}

/* ============================================================
   CREDENTIALS GRID (homeowners page)
   ============================================================ */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.cred-grid > div {
  background: var(--deep-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 28px;
}

@media (max-width: 768px) {
  .cred-grid {
    grid-template-columns: 1fr;
  }
  .cred-grid > div {
    padding: 36px 28px;
  }
}

/* Bullet list in credentials */
.cred-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.cred-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--stone);
  font-weight: 300;
  line-height: 1.7;
}

.cred-list__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ============================================================
   FORMA SECTION (homeowners page)
   ============================================================ */
.forma-section {
  background: #F5F2EE;
  padding: 36px 0;
}

.forma-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 768px) {
  .forma-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.forma-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 10vw, 120px);
  color: #0A0A0A;
  letter-spacing: -0.04em;
  line-height: 0.88;
  margin-bottom: 6px;
}

.forma-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 5px;
  color: rgba(10, 10, 10, 0.35);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.forma-text {
  font-size: 16px;
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.95;
  font-weight: 300;
  margin-bottom: 16px;
}

.forma-card {
  background: #fff;
  padding: 32px;
  border-left: 3px solid #C17F24;
}

.forma-card + .forma-card {
  margin-top: 16px;
}

.forma-card__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #0A0A0A;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.forma-card__text {
  font-size: 13px;
  color: rgba(10, 10, 10, 0.55);
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================================
   SECTION DEFAULTS
   ============================================================ */
.section {
  padding: 32px 20px;
  position: relative;
}
.section--dark {
  background: var(--founder-black);
}
.section--charcoal {
  background: var(--deep-charcoal);
}
.section--mid {
  background: var(--charcoal);
}
.section__header {
  text-align: center;
  margin-bottom: 20px;
}
.section__header .eyebrow {
  margin-bottom: 16px;
  display: block;
  font-size: 15px;
}
.section__header h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 10px;
}
.section__header p {
  color: var(--stone);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: var(--container);
  margin: 0 auto;
}
.service-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 24px;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.service-card:hover {
  border-color: rgba(193,127,36,0.2);
  transform: translateY(-4px);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card__number {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.service-card__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.6;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  transition: gap 0.3s var(--ease);
}
.service-card__link:hover {
  gap: 12px;
}

/* ============================================================
   ABOUT TEASER (split layout)
   ============================================================ */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}
.about-teaser__image {
  aspect-ratio: 4/3;
  background: var(--mid-charcoal);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-deep);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
}
.about-teaser__text .eyebrow {
  margin-bottom: 16px;
  display: block;
  font-size: 14px;
}
.about-teaser__text h2 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 20px;
}
.about-teaser__text p {
  color: var(--stone);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ============================================================
   TESTIMONIAL / QUOTE
   ============================================================ */
.quote-section {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}
.quote-section blockquote {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.quote-section cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--stone);
}
.quote-section cite strong {
  color: var(--gold);
  font-weight: 500;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
}
.process-step__number {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.3;
}
.process-step__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step__desc {
  font-size: 0.9rem;
  color: var(--stone);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 36px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--deep-charcoal);
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--stone);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 0.95rem;
}
.cta-section .btn {
  margin: 0 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--founder-black);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 48px 20px 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto 48px;
}
.footer__brand-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__brand-name span { color: var(--gold); }
.footer__logo-img {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}
.footer__license {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--stone-deep);
  margin-top: 12px;
  letter-spacing: 0.05em;
}
.footer__brand p {
  color: var(--stone);
  font-size: 0.9rem;
  max-width: 300px;
}
.footer__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__links a {
  display: block;
  font-size: 0.9rem;
  color: var(--stone);
  padding: 4px 0;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer__copy {
  font-size: 0.8rem;
  color: var(--stone-deep);
}
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  font-size: 0.85rem;
  color: var(--stone);
  transition: color 0.3s;
}
.footer__social a:hover { color: var(--gold); }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  padding: 96px 20px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header .eyebrow {
  margin-bottom: 16px;
  display: block;
  font-size: 15px;
}
.page-header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-header p {
  color: var(--stone);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================================
   TIMELINE (About page)
   ============================================================ */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(193,127,36,0.1));
}
.timeline__item {
  padding-bottom: 48px;
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(193,127,36,0.4);
}
.timeline__year {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.timeline__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.timeline__desc {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.6;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.team-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 2px;
}
.team-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--mid-charcoal);
  margin: 0 auto 20px;
  overflow: hidden;
  border: 2px solid rgba(193, 127, 36, 0.2);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.team-card__name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.team-card__role {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-card__desc {
  font-size: 0.9rem;
  color: var(--stone);
}

/* ============================================================
   SERVICE DETAIL (services page)
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
}
.service-detail:last-child { border-bottom: none; }
.service-detail__image video,
.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-detail__image {
  aspect-ratio: 9/16;
  max-height: 480px;
  max-width: 270px;
  background: var(--mid-charcoal);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-deep);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
}
.service-detail__content .eyebrow { margin-bottom: 16px; display: block; font-size: 14px; }
.service-detail__content h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.service-detail__content p {
  color: var(--stone);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.service-detail__content ul {
  margin-top: 12px;
}
.service-detail__content ul li {
  font-size: 0.9rem;
  color: var(--stone);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.service-detail__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.portfolio-filters button {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--stone);
  transition: all 0.3s var(--ease);
  text-transform: uppercase;
}
.portfolio-filters button:hover,
.portfolio-filters button.active {
  border-color: var(--gold);
  color: var(--gold);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: var(--container-wide);
  margin: 0 auto;
}
.portfolio-item {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--mid-charcoal);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.portfolio-item:hover {
  border-color: rgba(193,127,36,0.2);
  transform: translateY(-4px);
}
.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.portfolio-item__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--white);
}
.portfolio-item__cat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 4px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--cream);
  transition: color 0.3s;
  cursor: pointer;
}
.faq-item__question:hover { color: var(--gold); }
.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 16px;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.3s var(--ease);
}
.faq-item__icon::before {
  width: 14px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  width: 1px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item__answer p {
  padding: 0 0 16px;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  color: var(--cream);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888680' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option {
  background: var(--charcoal);
  color: var(--cream);
}
.form-group .error-msg {
  font-size: 0.8rem;
  color: #e05252;
  margin-top: 6px;
  display: none;
}
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #e05252;
}
.form-group.has-error .error-msg {
  display: block;
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.is-visible { display: block; }
.form-success h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--stone);
}

/* Contact info sidebar */
.contact-info__item {
  margin-bottom: 32px;
}
.contact-info__item .eyebrow {
  margin-bottom: 8px;
  display: block;
}
.contact-info__item p {
  color: var(--cream);
  font-size: 0.95rem;
}
.contact-info__item a {
  color: var(--gold);
  transition: color 0.3s;
}
.contact-info__item a:hover { color: var(--gold-light); }

/* ============================================================
   CONTENT BLOCKS (homeowners, investors, partners)
   ============================================================ */
.content-block {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 0;
}
.content-block h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.content-block p {
  color: var(--stone);
  font-size: 0.95rem;
  margin-bottom: 16px;
  max-width: 700px;
}
.content-block ul li {
  font-size: 0.9rem;
  color: var(--stone);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* Feature cards grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}
.feature-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 24px;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
}
.feature-card:hover {
  border-color: rgba(193,127,36,0.2);
  transform: translateY(-4px);
}
.feature-card .eyebrow { margin-bottom: 14px; display: block; font-size: 13px; }
.feature-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--stone);
}

/* ============================================================
   WHY CCGS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.why-item {
  display: flex;
  gap: 16px;
}
.why-item__marker {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 2px;
}
.why-item h4 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 0.9rem;
  color: var(--stone);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* 480px */
@media (min-width: 480px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 640px */
@media (min-width: 640px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px */
@media (min-width: 768px) {
  .section { padding: 40px 20px; }
  .about-teaser {
    grid-template-columns: 1fr 1fr;
  }
  .service-detail {
    grid-template-columns: 1fr 1fr;
  }
  .service-detail:nth-child(even) .service-detail__image {
    order: 2;
  }
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 860px */
@media (min-width: 860px) {
  .navbar__links {
    display: flex;
  }
  .navbar__cta {
    display: inline-flex;
  }
  .navbar__burger {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 960px */
@media (min-width: 960px) {
  .section { padding: 48px 20px; }
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .container { padding: 0 40px; }
}

/* ============================================================
   PORTFOLIO TALL ITEMS (masonry-like)
   ============================================================ */
@media (min-width: 480px) {
  .portfolio-item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

/* ============================================================
   REEL VIDEO CARDS
   ============================================================ */
.reel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.reel-grid--single {
  grid-template-columns: 1fr;
  max-width: 380px;
}

@media (max-width: 640px) {
  .reel-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .reel-grid--single {
    max-width: 340px;
  }
}

.reel-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  background: var(--charcoal-mid);
  border: 1px solid var(--border);
  display: block;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.reel-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(193, 127, 36, 0.15);
}

.reel-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(10, 10, 10, 0.8));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s;
}

.reel-card:hover .reel-card__overlay {
  opacity: 1;
}

.reel-card__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(193, 127, 36, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin-bottom: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reel-card__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--cream);
  text-transform: uppercase;
}

.reel-card__sound {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s, border-color 0.3s;
}

.reel-card__sound:hover {
  background: rgba(193, 127, 36, 0.3);
  border-color: var(--gold-border);
}

.reel-card__cta {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  z-index: 5;
  transition: background 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.reel-card__cta span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--cream);
}

.reel-card__cta svg {
  color: var(--gold);
}

.reel-card__cta:hover {
  background: rgba(193, 127, 36, 0.25);
  border-color: var(--gold-border);
}

/* ============================================================
   SOCIAL CARDS GRID
   ============================================================ */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .social-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.social-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.3s, transform 0.3s;
}

.social-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.social-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}

.social-card__name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.social-card__handle {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 14px;
}

.social-card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--stone);
  font-weight: 300;
}
