/* ============================================================
   CHEX EARTHWORKS — shared design system
   Dark / premium / metallic theme
   ============================================================ */

:root {
  --bg: #0a0b0c;
  --bg-alt: #101214;
  --panel: #16181b;
  --panel-2: #1c1e21;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text: #f3f2ef;
  --text-dim: #a8acb1;
  --text-faint: #6f7378;

  --silver-1: #f2f3f4;
  --silver-2: #c6cacd;
  --silver-3: #8b9096;

  --gold: #cda54d;
  --gold-bright: #e6c778;
  --gold-dim: #8a6f34;

  --social-green: #163d2c;
  --social-green-bright: #235f45;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
  --shadow-sm: 0 8px 20px -10px rgba(0, 0, 0, 0.6);

  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
  font-weight: 600;
  color: var(--text);
}

p { color: var(--text-dim); margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

ul { padding: 0; margin: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; padding: 110px 0; }

@media (max-width: 768px) {
  section { padding: 72px 0; }
}

/* ---------- metallic text ---------- */
.metal-text {
  background: linear-gradient(120deg, var(--silver-1) 10%, var(--silver-3) 35%, var(--silver-1) 55%, var(--silver-2) 75%, var(--silver-1) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-text {
  background: linear-gradient(120deg, var(--gold-dim), var(--gold-bright) 50%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 60%, var(--gold-dim));
  color: #14120a;
  box-shadow: 0 10px 30px -8px rgba(205, 165, 77, 0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(205, 165, 77, 0.6); }

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: var(--silver-1);
  border-color: var(--border-strong);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding .35s ease, background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(10, 11, 12, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.8);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height .35s ease;
}

.site-header.scrolled .brand img { height: 32px; }

.brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.15;
}

.brand-name small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width .3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--text);
}
.nav-phone i { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    background: rgba(10,11,12,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform .4s ease;
    border-left: 1px solid var(--border);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; }
  .nav-phone span { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .site-header .container { gap: 10px; }
  .brand-name { font-size: 14px; }
  .brand img { height: 32px; }
  .nav-cta { gap: 10px; }
  .nav-cta .btn-primary { display: none; }
  .nav-phone { padding: 8px; border: 1px solid var(--border-strong); border-radius: 50%; }
}

@media (max-width: 360px) {
  .brand-name small { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  position: relative;
  background:
    radial-gradient(ellipse 900px 500px at 15% 15%, rgba(205,165,77,0.09), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 85%, rgba(255,255,255,0.05), transparent 60%),
    linear-gradient(180deg, #0d0f11 0%, #0a0b0c 60%, #0a0b0c 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 75%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 10%;
  width: 55%;
  height: 90%;
  background: linear-gradient(120deg, transparent, rgba(205,165,77,0.06), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.hero-meta {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.hero-meta div { display: flex; align-items: center; gap: 10px; }
.hero-meta i { color: var(--gold); font-size: 16px; }
.hero-meta span { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); }

.hero-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-plate {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.08), transparent 55%),
    linear-gradient(155deg, #24272b 0%, #17181a 45%, #0c0d0e 100%);
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.85), inset 0 0 0 1px rgba(255,255,255,0.03), inset 0 2px 30px rgba(255,255,255,0.04);
  position: relative;
}

.hero-plate::before {
  content: "";
  position: absolute; inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(205,165,77,0.35);
}

.hero-plate img {
  width: 78%;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.hero-plate.plate-photo {
  padding: 0;
  overflow: hidden;
}
.hero-plate.plate-photo img { width: 100%; height: 100%; object-fit: cover; filter: none; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-badge-wrap { order: -1; }
  .hero-plate { max-width: 280px; }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); }
.section-head p { font-size: 16px; }
.section-head.left { margin-left: 0; text-align: left; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.service-card {
  flex: 0 1 calc(25% - 16.5px);
  min-width: 250px;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}

@media (max-width: 980px) {
  .service-card { flex-basis: calc(50% - 11px); }
}
@media (max-width: 560px) {
  .service-card { flex-basis: 100%; }
}
.service-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dim));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, rgba(205,165,77,0.18), rgba(205,165,77,0.03));
  border: 1px solid rgba(205,165,77,0.25);
  margin-bottom: 22px;
  font-size: 22px;
  color: var(--gold-bright);
}

.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; margin-bottom: 0; }

/* ============================================================
   DIVISION CARDS (home page — Concrete / Landscaping)
   ============================================================ */
.division-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.division-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 46px 38px;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.division-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--border-strong); }

.division-card.concrete { background: radial-gradient(circle at 75% 20%, rgba(255,255,255,0.05), transparent 55%), linear-gradient(160deg, #1a1a1a, #0a0a0a); }
.division-card.landscaping { background: radial-gradient(circle at 75% 20%, rgba(205,165,77,0.12), transparent 55%), linear-gradient(160deg, #17181a, #0a0b0c); }

.division-logo {
  position: absolute;
  top: 34px; left: 34px;
  height: 195px;
  width: auto;
  max-width: 74%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.55));
}

@media (max-width: 560px) {
  .division-logo { height: 140px; top: 26px; left: 26px; }
}

.division-card h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.division-card p { max-width: 380px; margin-bottom: 24px; }

.division-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.division-link i { transition: transform .3s ease; }
.division-card:hover .division-link i { transform: translateX(6px); }

@media (max-width: 800px) {
  .division-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT / WHY US
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 34px 0 10px;
}
.stat {
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  color: var(--text);
}
.stat span { font-size: 12.5px; letter-spacing: .04em; color: var(--text-dim); text-transform: uppercase; }

.feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--text-dim);
}
.feature-list i {
  color: var(--gold-bright);
  margin-top: 3px;
  font-size: 15px;
}

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

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 30px 24px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  display: block;
  margin-bottom: 14px;
}
.process-step h4 { font-size: 16px; margin-bottom: 8px; }
.process-step p { font-size: 14px; margin-bottom: 0; }

@media (max-width: 900px) {
  .process-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process-row { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY / PLACEHOLDER PHOTOS
   ============================================================ */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.gallery-grid .photo-placeholder { flex: 0 1 calc(33.333% - 13.4px); min-width: 220px; }
.gallery-grid.wide .photo-placeholder { flex: 0 1 calc(25% - 15px); min-width: 220px; }

.photo-placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 1.5px dashed var(--border-strong);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  transition: border-color .3s ease, background .3s ease;
}
.photo-placeholder:hover { border-color: var(--gold); background: rgba(205,165,77,0.04); }
.photo-placeholder i { font-size: 26px; color: var(--text-faint); }
.photo-placeholder span {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.photo-placeholder small { color: var(--text-faint); font-size: 11px; }

/* actual photo variant once images are added */
.photo-placeholder.has-img {
  border-style: solid;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.photo-placeholder.has-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.photo-placeholder.has-img:hover img { transform: scale(1.06); }
.photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 16px 12px;
  background: linear-gradient(0deg, rgba(0,0,0,0.78), transparent);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
}

@media (max-width: 900px) {
  .gallery-grid .photo-placeholder, .gallery-grid.wide .photo-placeholder { flex-basis: calc(50% - 10px); }
}
@media (max-width: 560px) {
  .gallery-grid .photo-placeholder, .gallery-grid.wide .photo-placeholder { flex-basis: 100%; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 54px;
}

.contact-info h2 { font-size: 30px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item i {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(205,165,77,0.1);
  color: var(--gold-bright);
  flex-shrink: 0;
  font-size: 16px;
}
.contact-item strong { display: block; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: var(--text-faint); margin-bottom: 4px; }
.contact-item a, .contact-item span.value { font-size: 17px; color: var(--text); }
.contact-item a:hover { color: var(--gold-bright); }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color .25s ease, background .25s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.05);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; padding: 34px 26px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 70px 0;
  text-align: center;
  background: linear-gradient(120deg, rgba(205,165,77,0.08), transparent 60%), var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 14px; }
.cta-band p { max-width: 520px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060707;
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { font-size: 14px; max-width: 280px; }
.footer-col h4 { font-size: 14px; letter-spacing: .1em; color: var(--text); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col span { font-size: 14.5px; color: var(--text-dim); transition: color .25s ease; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-faint);
}
.footer-bottom a { color: var(--text-faint); }
.footer-bottom a:hover { color: var(--gold-bright); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BREADCRUMB (subpages)
   ============================================================ */
.breadcrumb {
  font-family: 'Oswald', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold-bright); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--panel-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 900;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   BADGE STRIP
   ============================================================ */
.badge-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 44px;
  padding: 34px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.badge-strip div { display: flex; align-items: center; gap: 10px; color: var(--text-dim); }
.badge-strip i { color: var(--gold); font-size: 17px; }
.badge-strip span { font-family: 'Oswald', sans-serif; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; }

/* ============================================================
   PAGE HERO (subpages, shorter than home hero)
   ============================================================ */
.page-hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
}

/* ---------- logo panel (subpage hero lockups) ---------- */
.logo-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  background: #000;
  transition: transform .4s ease;
}
.logo-panel img { width: 100%; display: block; }
.logo-panel.light { background: #fff; padding: 44px; }
.logo-panel.pad {
  padding: 30px;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.06), transparent 55%), linear-gradient(160deg, #1c1e21, #0a0b0c);
}
.logo-panel:hover { transform: translateY(-6px); }

@media (max-width: 980px) {
  .logo-panel.light { padding: 30px; }
}
