/* ============================================================
   KKB GROUP — PRECISION INDUSTRIAL DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --ink:       #111111;
  --ink-soft:  #2a2a2a;
  --steel:     #1c2b3a;
  --rust:      #c94f1a;
  --rust-lite: #e8621a;
  --amber:     #f0a04b;
  --bone:      #f2ede6;
  --mid:       #9a9080;
  --line:      rgba(242,237,230,0.12);
  --white:     #ffffff;

  --font-display: 'Bebas Neue', sans-serif;
  --font-head:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --r-xs: 3px;
  --r-sm: 6px;
  --r-md: 12px;

  --max: 1200px;
  --gutter: clamp(20px, 5vw, 60px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--bone);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---- UTILITY ---- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.kicker {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rust-lite);
  margin-bottom: 10px;
}
.section { padding: clamp(60px, 8vw, 120px) 0; }
.section-dark { background: var(--ink-soft); }
.section-steel { background: var(--steel); }
.section-bone { background: var(--bone); color: var(--ink); }

/* ---- HEADER ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,17,17,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: 64px;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 44px; height: 44px; object-fit: contain; border-radius: var(--r-xs); }
.brand strong {
  display: block;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--mid);
  text-transform: uppercase;
  margin-top: 2px;
}
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r-xs);
  color: rgba(242,237,230,.7);
  transition: color .2s, background .2s;
}
.site-nav a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.site-nav a.active { color: var(--rust-lite); }
.nav-toggle { display: none; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 11px 22px; border-radius: var(--r-xs);
  border: none; cursor: pointer;
  transition: all .25s;
}
.btn-accent {
  background: var(--rust); color: var(--white);
  box-shadow: 0 4px 20px rgba(201,79,26,.35);
}
.btn-accent:hover { background: var(--rust-lite); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(201,79,26,.45); }
.btn-ghost {
  background: transparent; color: var(--bone);
  border: 1px solid rgba(242,237,230,.25);
}
.btn-ghost:hover { border-color: var(--bone); background: rgba(242,237,230,.06); }
.btn-dark {
  background: var(--ink); color: var(--bone);
  border: 1px solid rgba(17,17,17,.3);
}
.btn-dark:hover { background: var(--steel); }

/* ---- HERO ---- */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--ink);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(28,43,58,.7) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,79,26,.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/img/hero-collage.jpg') center/cover no-repeat;
  opacity: .18; filter: grayscale(30%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
  padding: 80px 0;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rust-lite); margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 2px; background: var(--rust-lite);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: .95; letter-spacing: .01em;
  color: var(--white); margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--rust-lite); }
.hero-sub {
  font-size: 17px; line-height: 1.7;
  color: rgba(242,237,230,.7);
  max-width: 480px; margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 52px; }

.stat-strip {
  display: flex; gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: rgba(255,255,255,.03);
}
.stat-item {
  flex: 1; padding: 18px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px; color: var(--rust-lite);
  line-height: 1;
}
.stat-item span {
  font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mid); margin-top: 4px; display: block;
}

/* Hero right photo stack */
.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  position: relative;
}
.hero-photos img {
  width: 100%; object-fit: cover; border-radius: var(--r-sm);
  filter: brightness(.9) contrast(1.05) saturate(.9);
  transition: filter .4s;
}
.hero-photos img:hover { filter: brightness(1) contrast(1.05) saturate(1); }
.hero-photos .ph-tall { grid-row: span 2; height: 420px; }
.hero-photos .ph-sq  { height: 205px; }
.hero-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--rust); color: var(--white);
  font-family: var(--font-head); font-size: 12px;
  font-weight: 600; letter-spacing: .06em;
  padding: 14px 18px; border-radius: var(--r-sm);
  max-width: 240px; line-height: 1.4;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  z-index: 2;
}

/* ---- PARTNER STRIP ---- */
.partner-strip {
  background: var(--steel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.partner-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.partner-label {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mid); white-space: nowrap;
}
.partner-name {
  font-family: var(--font-display);
  font-size: 20px; color: var(--amber); letter-spacing: .05em;
}
.partner-desc {
  font-size: 12px; color: rgba(242,237,230,.55);
  letter-spacing: .04em;
}
.partner-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--rust-lite); opacity: .6;
}

/* ---- WHAT WE DO CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.service-card {
  background: var(--ink-soft);
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,.04);
  transition: background .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rust), var(--amber));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.service-card:hover { background: rgba(42,42,42,.9); border-color: rgba(201,79,26,.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-num {
  font-family: var(--font-display);
  font-size: 48px; color: rgba(255,255,255,.06);
  line-height: 1; margin-bottom: -8px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
  letter-spacing: .04em; color: var(--white);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: rgba(242,237,230,.6); line-height: 1.6; }

/* ---- SPLIT IMAGE SECTION ---- */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-img { overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.85) saturate(.9); }
.split-content {
  padding: clamp(40px, 6vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1; letter-spacing: .02em;
  color: var(--white); margin-bottom: 20px;
}
.split-content p {
  font-size: 15px; color: rgba(242,237,230,.65);
  line-height: 1.7; margin-bottom: 16px;
}

/* ---- CHECK LIST ---- */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(242,237,230,.75);
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(201,79,26,.2); border: 1px solid rgba(201,79,26,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--rust-lite);
  margin-top: 2px;
}

/* ---- PROJECT MOSAIC ---- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}
.mosaic-card { position: relative; overflow: hidden; border-radius: var(--r-sm); cursor: pointer; }
.mosaic-card.span-2 { grid-column: span 2; }
.mosaic-card img {
  width: 100%; height: 300px; object-fit: cover;
  display: block;
  filter: brightness(.7) saturate(.85);
  transition: filter .5s, transform .6s;
}
.mosaic-card.span-2 img { height: 400px; }
.mosaic-card:hover img { filter: brightness(.9) saturate(1); transform: scale(1.04); }
.mosaic-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
}
.mosaic-meta .tag {
  font-family: var(--font-head); font-size: 10px;
  font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--rust-lite); margin-bottom: 4px;
}
.mosaic-meta h3 {
  font-family: var(--font-head); font-size: 17px;
  font-weight: 700; color: var(--white); line-height: 1.2;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding-top: 64px;
  background: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background: radial-gradient(ellipse at right, rgba(201,79,26,.08), transparent 70%);
}
.page-hero-inner {
  padding: 72px 0 56px;
  position: relative; z-index: 1;
}
.crumb {
  font-family: var(--font-head); font-size: 11px;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--rust-lite); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.crumb::before { content: '—'; opacity: .5; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: .95; letter-spacing: .01em;
  color: var(--white); margin-bottom: 20px;
}
.page-hero .lead {
  font-size: 18px; color: rgba(242,237,230,.65);
  max-width: 620px; line-height: 1.65;
}

/* ---- EXPERTISE CARDS ---- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--line);
}
.exp-card {
  background: var(--ink-soft);
  padding: 32px 28px;
  transition: background .25s;
}
.exp-card:hover { background: rgba(42,42,42,.95); }
.exp-icon {
  font-size: 24px; margin-bottom: 14px; display: block;
}
.exp-card h3 {
  font-family: var(--font-head); font-size: 18px;
  font-weight: 700; color: var(--white);
  margin-bottom: 8px; letter-spacing: .02em;
}
.exp-card p { font-size: 13px; color: rgba(242,237,230,.55); line-height: 1.6; }

/* ---- RMC FEATURE ---- */
.rmc-feature {
  background: linear-gradient(135deg, var(--steel) 0%, #0d1a27 100%);
  border: 1px solid rgba(240,160,75,.2);
  border-radius: var(--r-md);
  padding: clamp(36px, 5vw, 60px);
  position: relative; overflow: hidden;
}
.rmc-feature::before {
  content: 'RMC';
  position: absolute; right: -20px; top: -30px;
  font-family: var(--font-display);
  font-size: 180px; color: rgba(240,160,75,.04);
  line-height: 1; pointer-events: none;
}
.rmc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.rmc-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--white); line-height: 1; margin-bottom: 16px;
}
.rmc-grid p { font-size: 15px; color: rgba(242,237,230,.65); margin-bottom: 14px; }
.ultratech-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(240,160,75,.12); border: 1px solid rgba(240,160,75,.3);
  border-radius: var(--r-sm); padding: 10px 18px; margin-top: 8px;
}
.ultratech-badge span {
  font-family: var(--font-head); font-size: 12px;
  font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
}
.ultratech-badge .ut-name { font-size: 16px; color: var(--amber); }
.rmc-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.rmc-spec {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 20px;
  text-align: center;
}
.rmc-spec strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px; color: var(--amber);
}
.rmc-spec span {
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--mid); margin-top: 4px; display: block;
}

/* ---- ABOUT / TEAM ---- */
.founder-section {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 60px; align-items: start;
}
.founder-photo {
  position: relative;
}
.founder-photo img {
  width: 100%; border-radius: var(--r-md);
  filter: brightness(.9) saturate(.9);
}
.founder-photo::after {
  content: '';
  position: absolute; bottom: -10px; right: -10px;
  width: 100%; height: 100%;
  border: 2px solid var(--rust); border-radius: var(--r-md);
  pointer-events: none;
}
.founder-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white); line-height: 1;
  margin-bottom: 6px;
}
.founder-title {
  font-family: var(--font-head); font-size: 13px;
  font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--rust-lite);
  margin-bottom: 22px;
}
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.team-card {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 28px 24px;
  transition: border-color .25s;
}
.team-card:hover { border-color: rgba(201,79,26,.3); }
.team-card h4 {
  font-family: var(--font-head); font-size: 17px;
  font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.team-card .role {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--rust-lite); margin-bottom: 10px;
}
.team-card p { font-size: 13px; color: rgba(242,237,230,.55); line-height: 1.5; }

/* ---- GROUP STRUCTURE ---- */
.group-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.group-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: background .25s, border-color .25s;
}
.group-card:hover { background: rgba(255,255,255,.06); border-color: rgba(201,79,26,.25); }
.group-card::before {
  content: attr(data-abbr);
  position: absolute; right: 12px; top: 12px;
  font-family: var(--font-display);
  font-size: 36px; color: rgba(255,255,255,.04);
  line-height: 1;
}
.group-card h4 {
  font-family: var(--font-head); font-size: 16px;
  font-weight: 700; color: var(--white); margin-bottom: 6px;
}
.group-card p { font-size: 12px; color: rgba(242,237,230,.5); line-height: 1.5; }

/* ---- PROJECT LIST ---- */
.project-list-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.project-list-col h3 {
  font-family: var(--font-head); font-size: 14px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.project-list-col ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.project-list-col ul li {
  font-size: 15px; color: rgba(242,237,230,.75);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; gap: 10px;
}
.project-list-col ul li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rust); flex-shrink: 0;
}

/* ---- NAMED PROJECT CARDS ---- */
.named-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.named-card {
  background: var(--ink-soft); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 28px 24px;
  transition: border-color .25s, background .25s;
}
.named-card:hover { border-color: rgba(201,79,26,.3); background: rgba(42,42,42,.8); }
.named-card .type {
  font-family: var(--font-head); font-size: 10px;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--rust-lite); margin-bottom: 8px;
}
.named-card h3 {
  font-family: var(--font-head); font-size: 18px;
  font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.named-card p { font-size: 13px; color: rgba(242,237,230,.55); line-height: 1.55; }

/* ---- CONTACT ---- */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px;
}
.contact-details h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white); line-height: 1; margin-bottom: 8px;
}
.contact-block { margin-top: 32px; }
.contact-block h4 {
  font-family: var(--font-head); font-size: 11px;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 8px;
}
.contact-block p { font-size: 15px; color: rgba(242,237,230,.75); line-height: 1.6; }
.contact-block a { color: var(--rust-lite); }
.contact-block a:hover { color: var(--amber); }

.form-card {
  background: var(--ink-soft); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 40px;
}
.form-card h3 {
  font-family: var(--font-head); font-size: 22px;
  font-weight: 700; color: var(--white); margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label {
  font-family: var(--font-head); font-size: 11px;
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mid);
}
.field input, .field textarea, .field select {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xs);
  color: var(--bone); font-family: var(--font-body); font-size: 15px;
  padding: 12px 16px; outline: none;
  transition: border-color .2s;
  appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--rust-lite);
  background: rgba(255,255,255,.07);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select option { background: var(--ink-soft); }

/* ---- FOOTER ---- */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--line);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand .brand-logo { width: 52px; height: 52px; margin-bottom: 14px; }
.footer-brand p {
  font-size: 13px; color: rgba(242,237,230,.45);
  line-height: 1.65; margin-top: 10px; max-width: 260px;
}
.footer-col h5 {
  font-family: var(--font-head); font-size: 11px;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(242,237,230,.55);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--bone); }
.footer-col address {
  font-style: normal; font-size: 13px;
  color: rgba(242,237,230,.5); line-height: 1.7;
}
.footer-col address strong { color: rgba(242,237,230,.75); display: block; margin-bottom: 2px; }
.footer-col address + address { margin-top: 16px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(242,237,230,.3); }
.footer-bottom .group-entities {
  font-size: 11px; color: rgba(242,237,230,.25);
  letter-spacing: .04em;
}

/* ---- VALUES STRIP ---- */
.values-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden;
}
.value-item {
  background: var(--ink-soft);
  padding: 32px 28px;
}
.value-item h3 {
  font-family: var(--font-head); font-size: 18px;
  font-weight: 700; color: var(--white);
  margin-bottom: 8px; letter-spacing: .02em;
}
.value-item p { font-size: 13px; color: rgba(242,237,230,.55); line-height: 1.6; }

/* ---- REVEAL ANIMATION ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---- MOBILE NAV ---- */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 1px solid var(--line);
    color: var(--bone); font-family: var(--font-head);
    font-size: 12px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; padding: 8px 16px; border-radius: var(--r-xs);
    cursor: pointer;
  }
  .site-nav {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(17,17,17,.97);
    border-bottom: 1px solid var(--line);
    padding: 16px; gap: 4px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 16px; font-size: 14px; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .hero-photos { display: none; }
  .stat-strip { flex-wrap: wrap; }
  .stat-item { min-width: 80px; }
  .split-section { grid-template-columns: 1fr; }
  .split-img { min-height: 300px; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic-card.span-2 { grid-column: span 2; }
  .founder-section { grid-template-columns: 1fr; }
  .founder-photo { max-width: 300px; }
  .rmc-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .project-list-grid { grid-template-columns: 1fr; }
  .values-strip { grid-template-columns: 1fr; }
  .group-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(42px, 10vw, 64px); }
}

@media (max-width: 480px) {
  :root { --gutter: 18px; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic-card.span-2 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .group-grid { grid-template-columns: 1fr; }
  .rmc-specs { grid-template-columns: 1fr 1fr; }
}
