/* ==========================================================================
   Groupe CNC — stylesheet
   Hand-written. Replaces the cdn.tailwindcss.com dev-only script.
   Brand tokens per clients/groupe-cnc/brand/groupe-cnc-brand-os.md §Tokens.
   ========================================================================== */

:root {
  --cnc-black:  #111111;
  --cnc-orange: #F05A1A;
  --cnc-grey:   #4A4F58;
  --cnc-light:  #F5F3EE;
  --cnc-green:  #2D7A4F;

  --surface:      rgba(255, 255, 255, 0.05);
  --surface-hi:   rgba(255, 255, 255, 0.08);
  --line:         rgba(255, 255, 255, 0.10);
  --line-hi:      rgba(255, 255, 255, 0.22);
  --text:         #ffffff;
  --text-soft:    rgba(255, 255, 255, 0.70);
  --text-mute:    rgba(255, 255, 255, 0.55);
  --text-faint:   rgba(255, 255, 255, 0.40);

  --maxw: 1180px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
          Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--cnc-black);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3 { line-height: 1.15; margin: 0; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; border-top: 1px solid var(--line); }
.section-head { max-width: 620px; margin-bottom: 48px; }
.eyebrow {
  color: var(--cnc-orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.h2 { font-size: clamp(28px, 4.2vw, 38px); }
.lede { color: var(--text-soft); margin-top: 16px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* focus visibility — keyboard users must always see where they are */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--cnc-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-primary { background: var(--cnc-orange); color: #fff; }
.btn-primary:hover { background: #d94d12; }
.btn-ghost { border-color: var(--line-hi); color: var(--text); }
.btn-ghost:hover { border-color: rgba(255,255,255,.45); background: var(--surface); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ------------------------------------------------------------------- nav */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(17, 17, 17, 0.86);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 17px; }

/* Logo plaque. The approved lockup is black + orange on a light ground, so on
   this dark shell it sits on a calcaire plaque rather than being recoloured.
   Recolouring approved artwork is a brand decision, not a CSS one. */
.brand-plaque {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cnc-light);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  flex: none;
  line-height: 0;
  transition: box-shadow .18s ease;
}
.brand:hover .brand-plaque { box-shadow: 0 0 0 2px rgba(240,90,26,.55); }
.brand-plaque img { width: 200px; height: auto; }
.brand-plaque-sm { padding: 7px 10px; }
.brand-plaque-sm img { width: 150px; }
@media (max-width: 420px) { .brand-plaque img { width: 156px; } }

.brand-mark {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  background: var(--cnc-black); border: 1px solid var(--line);
  display: grid; place-items: center; flex: none;
}
.brand-mark svg { width: 20px; height: 20px; }

.nav-links { display: flex; align-items: center; gap: 30px; font-size: 15px; }
.nav-links a { color: var(--text-soft); transition: color .15s ease; }
.nav-links a:hover { color: var(--text); }

.nav-cta { display: inline-flex; }

/* hamburger */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-sm); cursor: pointer;
}
.nav-toggle .bars { display: block; width: 18px; height: 12px; position: relative; }
.nav-toggle .bars i {
  position: absolute; left: 0; right: 0; height: 2px; background: #fff;
  border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle .bars i:nth-child(1) { top: 0; }
.nav-toggle .bars i:nth-child(2) { top: 5px; }
.nav-toggle .bars i:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .bars i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bars i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.98);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 8px 24px 20px; }
.mobile-nav li + li { border-top: 1px solid var(--line); }
.mobile-nav a {
  display: block; padding: 16px 2px; font-size: 17px; color: var(--text-soft);
}
.mobile-nav a:hover { color: var(--text); }
.mobile-nav .mobile-cta { margin-top: 16px; display: grid; gap: 10px; padding: 0 24px 24px; }
.mobile-nav .mobile-cta .btn { width: 100%; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ----------------------------------------------------------------- hero */
/* Honest visual treatment: the texture below is a pure-CSS abstraction of a
   ground/poured surface. It is a design element, never a photo of work done. */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 480px at 22% 8%, rgba(240,90,26,.20), transparent 65%),
    repeating-linear-gradient(118deg,
      #262019 0px, #262019 2px, #1a1613 2px, #1a1613 44px),
    linear-gradient(180deg, #1c1815 0%, var(--cnc-black) 78%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background: linear-gradient(180deg, rgba(17,17,17,.35) 0%, rgba(17,17,17,.92) 82%, var(--cnc-black) 100%);
}
.hero .wrap { position: relative; z-index: 1; padding-top: 76px; padding-bottom: 84px; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,90,26,.14);
  border: 1px solid rgba(240,90,26,.32);
  color: var(--cnc-orange);
  font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 26px;
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cnc-orange);
}
.h1 { font-size: clamp(34px, 6vw, 60px); max-width: 15ch; }
.h1 em { font-style: normal; color: var(--cnc-orange); }
.hero-sub { margin-top: 22px; font-size: clamp(16px, 2vw, 19px); color: var(--text-soft); max-width: 46ch; }
.hero-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px 22px;
  font-size: 14px; color: var(--text-mute); align-items: center;
}
.hero-trust .chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 7px 13px;
}
.hero-trust svg { width: 16px; height: 16px; flex: none; color: var(--cnc-orange); }
.hero-trust .lic { color: var(--text-soft); }
.hero-trust .lic b { color: var(--cnc-orange); font-weight: 700; }

/* ------------------------------------------------- hero right column
   Drawn graphic device + verified credentials + a reserved media slot.
   No photography, real or generated, appears here. */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero-copy .h1 { max-width: 14ch; }

.hero-visual { display: grid; gap: 16px; }

.cred-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  background:
    radial-gradient(120% 90% at 90% 0%, rgba(240,90,26,.16), transparent 60%),
    linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
}

/* the grinder head, drawn from the logo mark, used large as a graphic device */
.grinder {
  position: absolute; right: -58px; top: -46px;
  width: 300px; height: 300px;
  color: var(--cnc-orange);
  opacity: .16;
  pointer-events: none;
}
.grinder svg { width: 100%; height: 100%; }
.grinder-head {
  transform-origin: 120px 120px;
  animation: cnc-spin 26s linear infinite;
}
@keyframes cnc-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .grinder-head { animation: none; } }

.cred-kicker {
  position: relative; z-index: 1;
  color: var(--cnc-orange);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 18px;
}
.cred-list {
  position: relative; z-index: 1;
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0;
}
.cred-list li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 13px 0;
}
.cred-list li + li { border-top: 1px solid var(--line); }
.cred-list b {
  flex: none; min-width: 86px;
  font-size: 21px; font-weight: 700; color: #fff;
  font-variant-numeric: tabular-nums;
}
.cred-list span { color: var(--text-mute); font-size: 14.5px; }

.media-slot {
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px dashed rgba(255,255,255,.22);
  border-radius: var(--r-lg);
  padding: 18px;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,.022) 0px, rgba(255,255,255,.022) 10px,
      transparent 10px, transparent 20px),
    rgba(255,255,255,.02);
}
.media-slot svg { width: 24px; height: 24px; color: var(--text-faint); flex: none; margin-top: 2px; }
.media-slot .slot-label { font-size: 14px; font-weight: 600; color: var(--text-mute); }
.media-slot .slot-note { font-size: 12.5px; color: var(--text-faint); margin-top: 5px; }

/* ------------------------------------------------------------- services */
.grid-3 { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.grid-2 { display: grid; gap: 44px; grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; gap: 36px; } }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 30px;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(240,90,26,.55); background: var(--surface-hi); }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--text-mute); }
.icon-tile {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: rgba(240,90,26,.14); border: 1px solid rgba(240,90,26,.28);
  display: grid; place-items: center; margin-bottom: 20px; color: var(--cnc-orange);
}
.icon-tile svg { width: 24px; height: 24px; }

/* ------------------------------------------------- clientele segments
   Order is deliberate: institutional leads, then commercial, then
   residential (Steve, 2026-08-09). */
.segments {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 28px;
}
@media (max-width: 900px) { .segments { grid-template-columns: 1fr; } }
.segment {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  background: rgba(255,255,255,.03);
}
.segment-lead {
  border-color: rgba(240,90,26,.45);
  background:
    linear-gradient(150deg, rgba(240,90,26,.13), rgba(240,90,26,.03) 62%),
    rgba(255,255,255,.03);
}
.seg-rank {
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  color: var(--cnc-orange); margin-bottom: 10px;
}
.segment h3 { font-size: 22px; margin-bottom: 10px; }
.segment p { color: var(--text-mute); font-size: 15px; }
.seg-lic {
  margin-top: 14px !important;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px !important;
  color: var(--text-faint) !important;
}

/* ---------------------------------------------------------------- stats */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px; text-align: center;
}
.stat b { display: block; font-size: 30px; color: var(--cnc-orange); line-height: 1.1; }
.stat span { display: block; font-size: 13px; color: var(--text-faint); margin-top: 6px; }

/* -------------------------------------------------------------- process */
/* process tabs: one flow per project type */
.proc-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.proc-tab {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 20px;
  font-size: 14.5px; font-weight: 600; color: var(--text-mute);
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.proc-tab:hover { color: var(--text); border-color: var(--line-hi); }
.proc-tab.is-active {
  background: var(--cnc-orange); border-color: var(--cnc-orange); color: #fff;
}
/* Without JS the tablist is meaningless, so hide it and let all three panels
   show. With JS the panels are toggled and each gets its own heading band. */
.proc-tabs:not(.js-on) { display: none; }
.proc-panel { padding-top: 20px; }
.proc-panel[hidden] { display: none; }
.proc-lede { color: var(--text-soft); max-width: 70ch; margin-bottom: 8px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 8px; }
.steps-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) { .steps-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .steps, .steps-5 { grid-template-columns: 1fr; } }
.step { position: relative; padding: 26px 24px 26px 0; }
.step + .step { padding-left: 24px; border-left: 1px solid var(--line); }
@media (max-width: 900px) {
  .step { padding: 22px 0; }
  .step + .step { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
}
.step-num {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  color: var(--cnc-orange); margin-bottom: 12px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--text-mute); font-size: 15px; }

/* ------------------------------------------------------- photo placeholders */
/* Deliberately empty. Groupe CNC has no jobsite photography yet; the site will
   not show generated or stock imagery in place of real completed work. */
.photo-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .photo-slots { grid-template-columns: 1fr; } }
.photo-slot {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px dashed rgba(255,255,255,.20);
  border-radius: var(--r-lg);
  display: grid; place-items: center; text-align: center; padding: 20px;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,.022) 0px, rgba(255,255,255,.022) 10px,
      transparent 10px, transparent 20px),
    rgba(255,255,255,.02);
}
.photo-slot svg { width: 26px; height: 26px; color: var(--text-faint); margin: 0 auto 12px; }
.photo-slot .slot-label { font-size: 14px; color: var(--text-mute); font-weight: 600; }
.photo-slot .slot-note { font-size: 12.5px; color: var(--text-faint); margin-top: 6px; }
.photo-disclosure {
  margin-top: 22px; font-size: 14px; color: var(--text-mute);
  border-left: 2px solid var(--cnc-orange); padding-left: 14px; max-width: 62ch;
}

/* ------------------------------------------------------------------ zones */
.regions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 900px) { .regions { grid-template-columns: 1fr; } }
.region {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; background: rgba(255,255,255,.03);
}
.region h3 { font-size: 20px; }
.region-note { color: var(--text-faint); font-size: 14px; margin: 6px 0 16px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; max-width: 860px; }
.tag {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 10px 16px; color: var(--text-soft); font-size: 15px;
}

/* -------------------------------------------------------------------- faq */
.faq { max-width: 800px; display: grid; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 20px 22px;
}
.faq summary {
  list-style: none; cursor: pointer; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  color: var(--cnc-orange); font-size: 22px; line-height: 1; flex: none;
  transition: transform .2s ease;
}
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq p { color: var(--text-mute); margin-top: 14px; }

/* ------------------------------------------------------------------ form */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 32px;
}
@media (max-width: 560px) { .form-card { padding: 22px; } }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--text-soft); margin-bottom: 7px;
}
.field label .req { color: var(--cnc-orange); }
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(0,0,0,.28);
  border: 1px solid var(--line-hi);
  border-radius: var(--r-sm);
  color: #fff;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color .15s ease, background-color .15s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px;
  padding-right: 40px;
}
.field select option { background: #1a1a1a; color: #fff; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.32); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--cnc-orange); background: rgba(0,0,0,.42); outline: none;
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #ff6b5e; }
.field-error { color: #ff8b80; font-size: 13px; margin-top: 6px; display: none; }
.field-error.show { display: block; }

/* honeypot — visually and programmatically hidden from real users */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-foot { margin-top: 6px; }
.form-foot .btn { width: 100%; }
.form-note { font-size: 13px; color: var(--text-faint); margin-top: 12px; text-align: center; }

.form-status { margin-top: 18px; border-radius: var(--r-md); padding: 18px; display: none; font-size: 15px; }
.form-status.show { display: block; }
.form-status h3 { font-size: 17px; margin-bottom: 8px; }
.form-status p { color: var(--text-soft); font-size: 14.5px; }
.form-status.ok { background: rgba(45,122,79,.14); border: 1px solid rgba(45,122,79,.5); }
.form-status.ok h3 { color: #6fd39b; }
.form-status.warn { background: rgba(240,90,26,.12); border: 1px solid rgba(240,90,26,.45); }
.form-status.warn h3 { color: var(--cnc-orange); }
.form-status.err { background: rgba(255,107,94,.10); border: 1px solid rgba(255,107,94,.45); }
.form-status.err h3 { color: #ff8b80; }
.status-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.status-actions .btn { flex: 1 1 auto; }
.fallback-text {
  margin-top: 14px; width: 100%; min-height: 150px;
  background: rgba(0,0,0,.4); border: 1px solid var(--line-hi);
  border-radius: var(--r-sm); color: var(--text-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px; padding: 12px; display: none;
}
.fallback-text.show { display: block; }

.contact-aside { display: grid; gap: 14px; }
.contact-line {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px;
}
.contact-line svg { width: 20px; height: 20px; color: var(--cnc-orange); flex: none; margin-top: 3px; }
.contact-line .k { font-size: 13px; color: var(--text-faint); }
.contact-line .v { font-weight: 600; font-size: 16px; margin-top: 2px; }
.contact-line .v:hover { color: var(--cnc-orange); }

/* ----------------------------------------------------------------- footer */
.site-footer { border-top: 1px solid var(--line); }
.footer-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 18px; padding: 36px 0; font-size: 14px; color: var(--text-faint);
}
.footer-inner a:hover { color: var(--cnc-orange); }
.footer-brand { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--text-mute); }
.footer-right { text-align: right; }
@media (max-width: 700px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
}
.footer-lic { margin-top: 4px; }
