/* Car Essence - Eeklo */

:root {
  --bg: #0d0d0f;
  --surface: #151518;
  --surface-2: #1b1b1f;
  --line: #2a2a30;
  --text: #eceae5;
  --muted: #a09c93;
  --accent: #4f9fd4;
  --accent-dark: #2f6f9c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Archivo", -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: #79b9e2; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- topbar ---------- */

/* fixed, fully transparent top stack */
.site-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
}

/* ---------- header ---------- */

.site-header {
  position: relative;
  background: transparent;
}

.site-header .container {
  max-width: none;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 24px;
}

.wordmark { text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55); }
.main-nav a.nav-link { text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45); }

/* collapsible nav links */
#mainNav {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

/* standby CTA in the bar */
.header-cta {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.header-cta.cta-show {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

/* hide nav links on scroll down (desktop) */
@media (min-width: 761px) {
  body.nav-hidden #mainNav {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
  }
}

.wordmark {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark span { color: var(--accent); }
.wordmark:hover { color: var(--text); }

.main-nav { display: flex; align-items: center; gap: 30px; }

.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.main-nav a.nav-link {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 26px 0;
  display: inline-block;
}

.main-nav a.nav-link:hover, .main-nav a.nav-link.active { color: var(--accent); }

.has-sub { position: relative; }

.has-sub > a.nav-link::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.sub {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--surface);
  border: 1px solid var(--line);
  min-width: 260px;
  list-style: none;
  padding: 8px 0;
}

.has-sub:hover .sub { display: block; }

.sub a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 14.5px;
}

.sub a:hover { background: var(--surface-2); color: var(--accent); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  background: var(--accent);
  color: #121212;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s ease;
  font-family: inherit;
}

.btn:hover { background: #79b9e2; color: #121212; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid #4a4a52;
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.05); border-color: var(--text); color: var(--text); }

/* ---------- mobile nav ---------- */

.nav-toggle { display: none; }

.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--text);
  left: 0;
}

.nav-toggle-label span { top: 9px; }
.nav-toggle-label span::before { top: -8px; }
.nav-toggle-label span::after { top: 8px; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 12, 0.92) 30%, rgba(10, 10, 12, 0.45) 75%, rgba(10, 10, 12, 0.3));
}

.hero .container { position: relative; padding-top: 132px; padding-bottom: 90px; }

.hero-inner { max-width: 640px; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}

.hero p.lead {
  font-size: 18px;
  color: #c9c5bc;
  margin-bottom: 34px;
  max-width: 560px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-note {
  margin-top: 36px;
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-note::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* page hero (subpages) */

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 15, 1) 5%, rgba(13, 13, 15, 0.55) 60%, rgba(13, 13, 15, 0.35));
}

.page-hero .container { position: relative; padding-top: 128px; padding-bottom: 48px; }

.crumbs { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }

.page-hero h1 { margin-bottom: 10px; font-size: clamp(30px, 4vw, 46px); }

.page-hero p.sub { color: #c9c5bc; font-size: 17px; max-width: 620px; }

/* ---------- sections ---------- */

.section { padding: 88px 0; }
.section.tight { padding: 64px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 640px; margin-bottom: 48px; }

h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-head p { color: var(--muted); font-size: 16.5px; }

h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }

/* split layout */

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

.split .img-wrap { border: 1px solid var(--line); }
.split img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.split p { color: #c2beb5; margin-bottom: 16px; }
.split .kicker { margin-bottom: 14px; }
.split h2 { margin-bottom: 20px; }
.split .btn { margin-top: 10px; }

/* ---------- service cards ---------- */

.svc-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 248px;
  grid-auto-flow: dense;
  gap: 16px;
}

.svc-tile {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  color: var(--text);
  display: block;
  isolation: isolate;
}

.svc-tile--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.svc-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.svc-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.92) 0%, rgba(8, 8, 10, 0.45) 38%, rgba(8, 8, 10, 0.05) 70%);
  transition: background 0.3s ease;
}

.svc-tile:hover img { transform: scale(1.06); }
.svc-tile:hover::after { background: linear-gradient(to top, rgba(8, 8, 10, 0.95) 0%, rgba(8, 8, 10, 0.55) 45%, rgba(20, 40, 55, 0.18) 80%); }

.svc-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}

.svc-tile-overlay h3 {
  font-size: 19px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.svc-tile--feature .svc-tile-overlay h3 { font-size: 27px; }

.svc-tile-overlay p {
  color: #d3d0c8;
  font-size: 14px;
  line-height: 1.55;
  max-width: 90%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
}

.svc-tile--feature .svc-tile-overlay p { font-size: 15px; }

.svc-tile:hover .svc-tile-overlay p,
.svc-tile:focus-visible .svc-tile-overlay p {
  max-height: 140px;
  opacity: 1;
  margin-top: 4px;
}

.svc-tile-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
}

.svc-tile-go::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.svc-tile:hover .svc-tile-go::after { transform: rotate(45deg) translate(2px, -2px); }

/* touch: always show description */
@media (hover: none) {
  .svc-tile-overlay p { max-height: 140px; opacity: 1; margin-top: 4px; }
}

/* wide service rows (diensten overview) */

.svc-row {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.svc-row:last-child { border-bottom: none; }
.svc-row .img-wrap { border: 1px solid var(--line); }
.svc-row img { aspect-ratio: 16 / 11; object-fit: cover; width: 100%; }
.svc-row h3 { font-size: 23px; margin-bottom: 12px; }
.svc-row p { color: #c2beb5; margin-bottom: 18px; }

/* ---------- feature list ---------- */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 56px;
}

.feat {
  border-top: 2px solid var(--accent);
  padding-top: 20px;
}

.feat p { color: var(--muted); font-size: 15px; }

/* ---------- steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step {
  position: relative;
  display: block;
  padding: 8px 8px 8px 0;
  color: var(--text);
  transition: transform 0.25s ease;
}

.step:hover {
  transform: translateY(-6px);
  color: var(--text);
}

.step-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--line);
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.step:hover .step-num { color: rgba(79, 159, 212, 0.35); }

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  margin-bottom: 20px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.step-icon svg { width: 26px; height: 26px; }

.step:hover .step-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #0d0d0f;
  transform: scale(1.06);
}

.step h3 { font-size: 17px; }
.step p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }

.step-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.step-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.step:hover .step-link { opacity: 1; transform: translateX(0); }

@media (hover: none) {
  .step-link { opacity: 1; transform: none; }
}

/* ---------- checklist ---------- */

ul.checklist { list-style: none; margin: 24px 0; }

ul.checklist li {
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: #c2beb5;
}

ul.checklist li:last-child { border-bottom: none; }

ul.checklist li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 21px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

ul.checklist li strong { color: var(--text); }

/* ---------- reviews ---------- */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}

.review .stars { color: var(--accent); letter-spacing: 3px; font-size: 14px; margin-bottom: 16px; }

.review blockquote { color: #c9c5bc; font-size: 15px; flex: 1; }

.review .who { margin-top: 20px; font-size: 14px; font-weight: 600; }
.review .who small { display: block; font-weight: 400; color: var(--muted); margin-top: 2px; }

/* ---------- FAQ ---------- */

.faq details {
  border: 1px solid var(--line);
  background: var(--surface);
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  list-style: none;
  position: relative;
  padding-right: 48px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
}

.faq details[open] summary::after { content: "\2212"; }

.faq .answer { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
  text-align: center;
}

.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 30px; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .phone-line { margin-top: 24px; font-size: 14.5px; color: var(--muted); }

/* ---------- content blocks (service pages) ---------- */

.content-cols {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.content-main p { color: #c2beb5; margin-bottom: 18px; }
.content-main h2 { margin-top: 40px; margin-bottom: 16px; font-size: 27px; }
.content-main h2:first-child { margin-top: 0; }

.side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
  position: sticky;
  top: 96px;
}

.side-card h3 { margin-bottom: 6px; }
.side-card > p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.side-card .btn { width: 100%; text-align: center; margin-bottom: 12px; }
.side-card .alt-contact { font-size: 14px; color: var(--muted); text-align: center; }

.side-card ul { list-style: none; margin-top: 20px; border-top: 1px solid var(--line); padding-top: 16px; }
.side-card ul li { padding: 7px 0; font-size: 14.5px; }
.side-card ul a { color: var(--text); }
.side-card ul a:hover { color: var(--accent); }
.side-card ul .label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }

/* ---------- forms ---------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }

label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: #c9c5bc; }

input, select, textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  border-radius: 2px;
}

input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }

textarea { min-height: 130px; resize: vertical; }

.form-ok {
  display: none;
  background: rgba(79, 159, 212, 0.1);
  border: 1px solid var(--accent);
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 15px;
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.info-block { margin-bottom: 28px; }
.info-block h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 10px; }
.info-block p { color: #c2beb5; font-size: 15.5px; }

.hours { width: 100%; border-collapse: collapse; font-size: 15px; }
.hours td { padding: 8px 0; border-bottom: 1px solid var(--line); color: #c2beb5; }
.hours td:last-child { text-align: right; color: var(--muted); }
.hours tr:last-child td { border-bottom: none; }

.booking-frame {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.booking-frame iframe { display: block; width: 100%; }

.map-wrap { border: 1px solid var(--line); margin-top: 56px; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(0.4); }

/* ---------- team ---------- */

.founder {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.founder-photo { position: relative; }

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.founder-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-role {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.founder-body h2 {
  font-size: 29px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.founder-body p {
  color: #b4b0a7;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 13px;
}

.cert-awards {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.award {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(160deg, rgba(79, 159, 212, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.award:hover { border-color: var(--accent-dark); transform: translateY(-3px); }

.award-medal { width: 40px; height: 40px; color: var(--accent); flex-shrink: 0; }

.award-text { display: flex; flex-direction: column; line-height: 1.25; }
.award-text strong { font-size: 13.5px; font-weight: 600; color: var(--text); }
.award-text span {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.cert-list {
  list-style: none;
  margin: 20px 0 2px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.cert-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: #b4b0a7;
}

.cert-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.founder-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.founder-badge {
  font-size: 13.5px;
  color: var(--muted);
}

.founder-social { display: flex; gap: 12px; }

.founder-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.founder-social a svg { width: 19px; height: 19px; }

.founder-social a:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(79, 159, 212, 0.1);
}

/* ---------- values ---------- */

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 52px;
  row-gap: 44px;
}

.value {
  position: relative;
  transition: transform 0.25s ease;
}

.value:hover { transform: translateY(-5px); }

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--accent);
  margin-bottom: 20px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.value-icon svg { width: 25px; height: 25px; }

.value:hover .value-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #0d0d0f;
  transform: scale(1.06) rotate(-3deg);
}

.value h3 { font-size: 18px; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 14.5px; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: #08080a;
  padding: 64px 0 0;
  font-size: 14.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.site-footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  margin-bottom: 16px;
}

.site-footer p { color: var(--muted); margin-bottom: 14px; }

.site-footer ul { list-style: none; }
.site-footer ul li { padding: 5px 0; }
.site-footer ul a { color: var(--muted); }
.site-footer ul a:hover { color: var(--accent); }

.footer-social { display: flex; gap: 18px; margin-top: 6px; }
.footer-social a { color: var(--muted); font-weight: 600; font-size: 13.5px; letter-spacing: 0.06em; }
.footer-social a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13.5px;
}

.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 230px; }
  .svc-tile--feature { grid-column: span 2; grid-row: span 1; }
  .svc-tile--feature .svc-tile-overlay h3 { font-size: 23px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .split, .content-cols, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-row { grid-template-columns: 1fr; gap: 24px; }
  .founder { grid-template-columns: 1fr; }
  .founder-photo img { min-height: 360px; }
  .founder-body { padding: 36px 28px 32px; }
  .founder-body h2 { font-size: 28px; }
  .values { grid-template-columns: 1fr 1fr; column-gap: 40px; }
  .cert-awards { flex-direction: column; }
  .cert-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .side-card { position: static; }
}

@media (max-width: 760px) {
  .site-header .container { padding: 0 20px; }
  .nav-toggle-label { display: block; order: 4; margin-left: 14px; }
  .header-cta { order: 3; margin-left: auto; padding: 9px 16px; font-size: 13.5px; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(21, 21, 24, 0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
  }

  .nav-toggle:checked ~ .main-nav { display: block; }

  .main-nav > ul { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .main-nav a.nav-link { padding: 12px 0; width: 100%; text-shadow: none; }

  .sub {
    display: block;
    position: static;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    min-width: 0;
  }

  .sub a { padding: 8px 0; color: var(--muted); }
  .has-sub > a.nav-link::after { display: none; }

  .main-nav .btn { margin-top: 16px; }

  .hero { min-height: 70vh; }
  .section { padding: 64px 0; }
  .review-grid, .values { grid-template-columns: 1fr; }
  .svc-bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .svc-tile--feature { grid-column: span 1; grid-row: span 1; }
  .svc-tile--feature .svc-tile-overlay h3 { font-size: 21px; }
  .steps { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- loader ---------- */

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  animation: loaderFallback 0s linear 3.5s forwards;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  animation: none;
}

@keyframes loaderFallback {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

.loader-mark {
  display: block;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
  text-align: center;
  opacity: 0;
  animation: loaderMark 0.6s ease forwards;
}

.loader-mark span { color: var(--accent); }

@keyframes loaderMark {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.loader-bar {
  display: block;
  width: 150px;
  height: 2px;
  margin: 0 auto;
  background: var(--line);
  overflow: hidden;
  position: relative;
}

.loader-bar i {
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: var(--accent);
  animation: loaderBar 1.1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes loaderBar {
  0% { left: -40%; }
  100% { left: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .loader-bar i { animation-duration: 0.01s; }
  .loader-mark { animation: none; opacity: 1; }
}

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
