/* ============================================================
   Symmetrical Flooring — Design System v2
   Palette: near-black / charcoal / warm stone accent
   Owner: Joseph Leger · Ottawa & Orléans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  /* Ink palette */
  --ink:        #111111;
  --ink-2:      #1e1e1e;
  --ink-3:      #2c2c2c;
  --charcoal:   #3a3a3a;
  --gray-mid:   #6a6a6a;
  --gray-lt:    #9e9e9e;
  /* Warm neutrals */
  --border:     #dedad3;
  --border-lt:  #eae7e0;
  --bg:         #f7f5f1;
  --bg-warm:    #f0ede7;
  --bg-stone:   #e8e4dc;
  --white:      #ffffff;
  /* Accent — warm honey stone */
  --accent:     #b8946a;
  --accent-lt:  #cba87e;
  --accent-dk:  #9a7a55;
  --accent-dim: rgba(184,148,106,.12);
  /* Text */
  --text:       #222222;
  --text-mid:   #555550;
  --text-lt:    #888880;
  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,.07);
  --shadow:     0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.11);
  /* Misc */
  --radius:     5px;
  --radius-lg:  10px;
  --transition: .22s ease;
  --max-w:      1160px;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, -apple-system, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
address { font-style: normal; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section    { padding: 80px 0; }
.section--sm { padding: 52px 0; }
.section--lg { padding: 112px 0; }
.section--dark   { background: var(--ink);   color: var(--white); }
.section--ink-2  { background: var(--ink-2); color: var(--white); }
.section--bg     { background: var(--bg); }
.section--warm   { background: var(--bg-warm); }
.section--stone  { background: var(--bg-stone); }
.section--white  { background: var(--white); }

.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-2--center { align-items: center; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; color: var(--ink); }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label--light { color: var(--accent-lt); }

.section-head { margin-bottom: 52px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p  { font-size: 1.05rem; color: var(--text-mid); max-width: 620px; line-height: 1.75; }
.section-head--center { text-align: center; }
.section-head--center p { margin: 0 auto; }
.section-head--light h2, .section-head--light h3 { color: var(--white); }
.section-head--light p { color: rgba(255,255,255,.65); }
.section-head--light .section-label { color: var(--accent-lt); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-lt);
  border-color: var(--accent-lt);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184,148,106,.3);
}
.btn--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--dark:hover {
  background: var(--ink-2);
  border-color: var(--ink-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn--outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.8);
}
.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: .82rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--ink-2);
  color: rgba(255,255,255,.60);
  font-size: .775rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.topbar__item {
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.12);
  white-space: nowrap;
}
.topbar__item:last-child { border-right: none; }
.topbar__item .hl { color: var(--accent-lt); font-weight: 600; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border-lt);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner {
  display: flex;
  align-items: center;
  height: 66px;
  gap: 20px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 34px;
  height: 34px;
  background: var(--ink);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-lt);
  flex-shrink: 0;
  letter-spacing: -.02em;
}
.nav__logo-text { line-height: 1.1; }
.nav__logo-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.nav__logo-sub {
  display: block;
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gray-lt);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav__link {
  padding: 7px 13px;
  font-size: .845rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active { color: var(--ink); background: var(--bg); }

/* dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
}
.nav__dropdown-toggle svg { width: 11px; height: 11px; transition: transform var(--transition); }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 272px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 9px 13px;
  font-size: .845rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav__dropdown-item:hover { background: var(--bg); color: var(--ink); }
.nav__dropdown-item strong { display: block; font-size: .845rem; font-weight: 600; color: var(--ink); }
.nav__dropdown-item span   { font-size: .75rem; color: var(--gray-lt); }

.nav__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__phone {
  font-size: .845rem; font-weight: 700; color: var(--ink);
  white-space: nowrap; transition: color var(--transition);
}
.nav__phone:hover { color: var(--accent); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__toggle span {
  display: block; width: 23px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 66px 0 0;
  background: var(--white);
  overflow-y: auto;
  padding: 20px 24px 40px;
  z-index: 899;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border-lt);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 12px 14px; font-size: .95rem; font-weight: 500;
  color: var(--text); border-radius: var(--radius); display: block;
}
.nav__mobile a:hover { background: var(--bg); color: var(--ink); }
.nav__mobile .mobile-section {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gray-lt);
  padding: 16px 14px 6px; display: block;
}
.nav__mobile .mobile-cta {
  margin-top: 16px; padding-top: 20px;
  border-top: 1px solid var(--border-lt);
  display: flex; flex-direction: column; gap: 10px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(17,17,17,.95) 0%,
    rgba(17,17,17,.80) 55%,
    rgba(17,17,17,.55) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 700px;
  padding: 88px 0;
}
.hero__eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent-lt);
  margin-bottom: 18px;
  opacity: 0; animation: fadeUp .65s .2s forwards;
}
.hero__title {
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp .65s .38s forwards;
}
.hero__sub {
  font-size: 1.1rem; line-height: 1.75;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp .65s .54s forwards;
}
.hero__btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0; animation: fadeUp .65s .68s forwards;
}
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.10);
  opacity: 0; animation: fadeUp .65s .82s forwards;
}
.hero__badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 6px 13px;
  font-size: .78rem; font-weight: 500;
  color: rgba(255,255,255,.80);
  white-space: nowrap;
}
.hero__badge::before {
  content: '✓';
  color: var(--accent-lt);
  font-weight: 700;
  font-size: .8rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TRUST INTRO BAND
   ============================================================ */
.trust-band {
  background: var(--ink-2);
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-band__item {
  padding: 10px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust-band__item:last-child { border-right: none; }
.trust-band__num {
  font-family: var(--font-head);
  font-size: 1.8rem; font-weight: 700;
  color: var(--accent-lt); line-height: 1;
  margin-bottom: 4px;
}
.trust-band__label {
  font-size: .78rem; color: rgba(255,255,255,.50); font-weight: 500;
}

/* ============================================================
   WHY TRUST — prose intro
   ============================================================ */
.trust-intro { background: var(--white); }
.trust-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.trust-intro__text h2 { margin-bottom: 20px; }
.trust-intro__text p  { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.78; }
.trust-intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.trust-intro__image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   TECHNICAL APPROACH CARDS
   ============================================================ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tech-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background var(--transition);
}
.tech-card:hover { background: var(--bg); }
.tech-card__num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700;
  color: var(--border-lt); line-height: 1;
  margin-bottom: 14px;
  transition: color var(--transition);
}
.tech-card:hover .tech-card__num { color: var(--accent); }
.tech-card h4 { margin-bottom: 10px; font-size: 1rem; color: var(--ink); }
.tech-card p  { font-size: .88rem; color: var(--text-mid); line-height: 1.68; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-card__icon {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.service-card h4 { font-size: .95rem; margin-bottom: 8px; color: var(--ink); }
.service-card p  { font-size: .855rem; color: var(--text-mid); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.service-card__link {
  font-size: .82rem; font-weight: 600; color: var(--accent);
  display: flex; align-items: center; gap: 5px;
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 9px; }

/* ============================================================
   WHAT MAKES IT DIFFERENT
   ============================================================ */
.diff-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0;
}
.diff-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-lt);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.diff-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--border-lt); }
.diff-item:nth-child(even){ padding-left: 40px; }
.diff-item:nth-last-child(-n+2) { border-bottom: none; }
.diff-check {
  width: 26px; height: 26px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: .75rem; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}
.diff-item p { font-size: .95rem; color: var(--text-mid); line-height: 1.65; }
.diff-item strong { color: var(--ink); }

/* ============================================================
   GALLERY / PROJECT PROOF
   ============================================================ */
.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 7px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .8rem; font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3px;
}
.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-stone);
}
.gallery-item--tall  { aspect-ratio: 3/4; }
.gallery-item--wide  { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.80) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 18px;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__caption {
  color: var(--white); font-size: .82rem; font-weight: 500;
  line-height: 1.4;
}
.gallery-item__tag {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--accent-lt);
  margin-bottom: 4px;
}

/* ============================================================
   PROBLEMS LIST
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}
.problem-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.problem-icon {
  color: var(--accent-lt);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.problem-item p { font-size: .875rem; color: rgba(255,255,255,.75); font-weight: 500; }

/* ============================================================
   COMMUNICATION SECTION
   ============================================================ */
.comm-split {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}
.comm-points { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.comm-point {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-lt);
}
.comm-point:last-child { border-bottom: none; padding-bottom: 0; }
.comm-num {
  font-family: var(--font-head); font-size: 1.5rem;
  color: var(--accent); font-weight: 600;
  flex-shrink: 0; line-height: 1; margin-top: 3px;
}
.comm-point h4 { margin-bottom: 4px; font-size: .95rem; }
.comm-point p  { font-size: .875rem; color: var(--text-mid); }
.comm-image {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5;
}
.comm-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: start;
}
.about-image {
  border-radius: var(--radius-lg); overflow: hidden;
  position: sticky; top: 88px;
}
.about-image img { width: 100%; display: block; }
.about-content h2 { margin-bottom: 20px; }
.about-content p  { font-size: 1rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.78; }
.about-certs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--border-lt);
}
.about-cert {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: .78rem; font-weight: 600;
  color: var(--charcoal);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {}
.faq-item { border-bottom: 1px solid var(--border-lt); }
.faq-question {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 20px 0; cursor: pointer;
  font-weight: 600; font-size: .95rem;
  color: var(--ink); user-select: none;
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 300;
  color: var(--accent); flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-toggle { background: var(--accent); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  font-size: .9rem; color: var(--text-mid); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height .32s ease, padding .32s ease;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 20px; }

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote-section { background: var(--bg-warm); }
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.form-grid { display: flex; flex-direction: column; gap: 18px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--ink); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text); font-size: .9rem;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
}
textarea { min-height: 110px; resize: vertical; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236a6a6a' d='M2 4l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-hint { font-size: .76rem; color: var(--gray-lt); }

.quote-sidebar { position: sticky; top: 88px; }
.quote-why {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.quote-why h3 { color: var(--white); margin-bottom: 16px; font-size: 1.15rem; }
.quote-why p  { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.72; margin-bottom: 16px; }
.quote-why ul { display: flex; flex-direction: column; gap: 10px; }
.quote-why li {
  display: flex; gap: 10px; font-size: .875rem;
  color: rgba(255,255,255,.70); line-height: 1.5;
  align-items: flex-start;
}
.quote-why li::before { content: '→'; color: var(--accent-lt); flex-shrink: 0; font-weight: 700; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--ink); padding: 72px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,.60); font-size: 1.05rem; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: var(--ink);
  padding: 68px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,148,106,.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 7px; font-size: .76rem; color: rgba(255,255,255,.38);
  margin-bottom: 18px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.50); }
.page-hero__breadcrumb a:hover { color: var(--accent-lt); }
.page-hero__breadcrumb span { color: rgba(255,255,255,.22); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.page-hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.62); max-width: 600px; line-height: 1.72; }

/* ============================================================
   SERVICE PAGE LAYOUT
   ============================================================ */
.service-body { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
.service-content h2 { margin-bottom: 18px; font-size: clamp(1.5rem,2.5vw,2rem); }
.service-content h3 { margin: 32px 0 12px; font-size: 1.2rem; }
.service-content p  { font-size: .95rem; color: var(--text-mid); margin-bottom: 16px; }
.service-content ul { margin: 0 0 20px; }
.service-content ul li {
  padding: 6px 0 6px 22px;
  position: relative; font-size: .92rem; color: var(--text-mid);
}
.service-content ul li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
}
.service-content .callout {
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  margin: 24px 0;
  font-size: .9rem; color: var(--text-mid); line-height: 1.7;
}

.sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.sidebar-card h4 { margin-bottom: 12px; font-size: .95rem; }
.sidebar-card p  { font-size: .855rem; color: var(--text-mid); margin-bottom: 14px; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 8px; }
.sidebar-phone { font-size: 1.2rem; font-weight: 700; color: var(--ink); display: block; margin-bottom: 4px; }
.sidebar-areas { font-size: .76rem; color: var(--gray-lt); line-height: 1.6; }

/* ============================================================
   AREAS GRID
   ============================================================ */
.areas-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: .82rem; font-weight: 500;
  color: var(--text-mid); transition: all var(--transition);
}
.area-chip:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.55);
  padding: 60px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__logo-mark {
  width: 32px; height: 32px; background: var(--ink-3); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--accent-lt);
}
.footer__logo-name { font-family: var(--font-head); font-size: .95rem; font-weight: 600; color: var(--white); }
.footer__tagline { font-size: .82rem; line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer__certs { display: flex; flex-wrap: wrap; gap: 6px; }
.footer__cert {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px; padding: 4px 10px;
  font-size: .7rem; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,.60);
}
.footer__heading {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 14px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: .855rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer__links a:hover { color: var(--accent-lt); }
.footer__nap { font-size: .855rem; line-height: 1.85; }
.footer__nap a { color: rgba(255,255,255,.55); }
.footer__nap a:hover { color: var(--accent-lt); }
.footer__bottom {
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .75rem; gap: 12px; flex-wrap: wrap;
  color: rgba(255,255,255,.3);
}
.footer__bottom a { color: rgba(255,255,255,.35); }
.footer__bottom a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   404
   ============================================================ */
.page-404 {
  min-height: 78vh; display: flex; align-items: center;
  background: var(--bg);
}
.page-404__inner { text-align: center; max-width: 480px; margin: 0 auto; }
.page-404__num {
  font-family: var(--font-head); font-size: 7rem; font-weight: 700;
  color: var(--border); line-height: 1; margin-bottom: 16px;
}
.page-404 h2 { margin-bottom: 12px; }
.page-404 p  { color: var(--text-mid); margin-bottom: 32px; }

/* ============================================================
   UTILS
   ============================================================ */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.divider { border: none; border-top: 1px solid var(--border-lt); margin: 36px 0; }

/* ============================================================
   SCROLL REVEAL (added by JS)
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .tech-grid      { grid-template-columns: repeat(2,1fr); }
  .service-grid   { grid-template-columns: repeat(2,1fr); }
  .footer__grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .quote-inner    { grid-template-columns: 1fr; }
  .quote-sidebar  { position: static; }
  .comm-split     { grid-template-columns: 1fr; }
  .comm-image     { aspect-ratio: 16/9; }
}
@media (max-width: 860px) {
  .grid-2         { grid-template-columns: 1fr; gap: 36px; }
  .grid-3         { grid-template-columns: 1fr 1fr; }
  .gallery-grid   { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .trust-intro__inner { grid-template-columns: 1fr; }
  .trust-intro__image { aspect-ratio: 16/9; }
  .about-split    { grid-template-columns: 1fr; }
  .about-image    { position: static; aspect-ratio: 16/9; }
  .service-body   { grid-template-columns: 1fr; }
  .sidebar        { position: static; }
  .problem-grid   { grid-template-columns: 1fr 1fr; }
  .diff-list      { grid-template-columns: 1fr; }
  .diff-item      { padding-right: 0 !important; padding-left: 0 !important; border-right: none !important; }
  .diff-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-lt); }
  .diff-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: flex; }
  .section { padding: 56px 0; }
  .section--lg { padding: 72px 0; }
  .hero { min-height: 80vh; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .tech-grid   { grid-template-columns: 1fr; }
  .service-grid{ grid-template-columns: 1fr; }
  .problem-grid{ grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .trust-band__inner { justify-content: flex-start; }
  .trust-band__item  { padding: 10px 20px; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band { padding: 56px 0; }
}
@media (max-width: 480px) {
  .grid-3   { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ============================================================
   HOMEPAGE v2 — class aliases & additions
   ============================================================ */

/* trust-intro image column */
.trust-intro__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.trust-intro__img img { width: 100%; height: 100%; object-fit: cover; }

/* tech-card named classes */
.tech-card__title { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; font-family: var(--font-body); }
.tech-card__body  { font-size: .88rem; color: var(--text-mid); line-height: 1.68; }

/* service-card named classes */
.service-card__title { font-size: .95rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; font-family: var(--font-body); }
.service-card__desc  { font-size: .855rem; color: var(--text-mid); line-height: 1.65; flex: 1; margin-bottom: 16px; }

/* about section — split layout */
.about-split__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: start;
}
.about-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 88px;
}
.about-split__img img { width: 100%; display: block; }
.about-split__text h2 { margin-bottom: 20px; }
.about-split__text p  { font-size: 1rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.78; }

/* about-cert — badge with label + desc */
.about-cert strong { display: block; font-size: .82rem; color: var(--ink); }
.about-cert span   { display: block; font-size: .74rem; color: var(--charcoal); font-weight: 400; margin-top: 2px; }

/* comm-text — unstyled left column of comm-split */
.comm-text {}
.comm-text h2 { margin-bottom: 16px; }
.comm-text p  { font-size: 1rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 14px; }

/* quote form container */
.quote-form { display: flex; flex-direction: column; gap: 18px; }
.quote-form input[type="file"] { padding: 8px 0; border: none; background: transparent; }

/* diff-item bare text (no inner p) */
.diff-item { font-size: .95rem; color: rgba(255,255,255,.80); line-height: 1.65; }

/* problem-item bare text (no inner p) */
.problem-item { font-size: .875rem; color: rgba(255,255,255,.80); line-height: 1.55; font-weight: 500; }

@media (max-width: 960px) {
  .about-split__inner { grid-template-columns: 1fr; }
  .about-split__img   { position: static; aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
  .comm-text { margin-bottom: 8px; }
}
