/* Service Room — production stylesheet
 * Slate 900 + orange 600 design DNA preserved from the original.
 * Hand-written to keep page weight low and remove the Tailwind CDN runtime cost.
 */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
input, textarea, select { font: inherit; }

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --orange-50:  #fff7ed;
  --orange-100: #ffedd5;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;

  --green-500: #22c55e;
  --green-600: #16a34a;
  --blue-50:  #eff6ff;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --yellow-400: #facc15;

  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --text: var(--slate-800);
  --text-muted: var(--slate-600);
  --border: #e2e8f0;

  /* Type */
  --font-sans: "Manrope", "Noto Sans Georgian", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-georgian: "Noto Sans Georgian", "Manrope", system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: 1rem;
  --radius-sm: 0.5rem;
  --radius:    0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow:    0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

html[lang="ka"] :root { --font-sans: var(--font-georgian); }
html[lang="ka"] body { font-family: var(--font-georgian); }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg-soft);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern" 1;
}

::selection { background: var(--orange-100); color: var(--orange-700); }

/* ---------- Layout primitives ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
@media (min-width: 768px) { .container { padding-inline: 2rem; } }

.section { padding-block: 4rem; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }

.section--dark { background: var(--slate-900); color: white; }
.section--soft { background: var(--bg-soft); }
.section--white { background: var(--bg); }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--orange-600);
  background: var(--orange-50);
  border: 1px solid #fed7aa;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
}
.eyebrow--dark {
  background: rgb(249 115 22 / 0.15);
  border-color: rgb(249 115 22 / 0.3);
  color: var(--orange-400);
}

h1, .h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2, .h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.015em; }
h3, .h3 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 700; }

.lead { font-size: 1.125rem; line-height: 1.6; color: var(--text-muted); }
.muted { color: var(--text-muted); }
.text-orange { color: var(--orange-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--orange-600); color: white; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--orange-700); box-shadow: var(--shadow-lg); }

.btn--ghost-light { background: white; color: var(--slate-900); box-shadow: var(--shadow-md); }
.btn--ghost-light:hover { background: var(--slate-100); }

.btn--whatsapp { background: var(--green-500); color: white; }
.btn--whatsapp:hover { background: var(--green-600); }

.btn--dark { background: var(--slate-900); color: white; }
.btn--dark:hover { background: var(--slate-800); }

.btn--facebook { background: var(--blue-600); color: white; }
.btn--facebook:hover { background: var(--blue-700); }

.btn--sm { padding: 0.55rem 1rem; font-size: 0.875rem; border-radius: var(--radius-full); }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding-block: 1.25rem;
}
.nav--scrolled { background: white; box-shadow: var(--shadow); padding-block: 0.75rem; }
.nav--solid { background: white; box-shadow: var(--shadow); padding-block: 0.75rem; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__brand { display: flex; align-items: center; gap: 0.75rem; }
.nav__logo {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--orange-600);
  color: white;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.nav__name { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; color: var(--slate-900); }
.nav--transparent .nav__name { color: white; }
.nav--scrolled .nav__name, .nav--solid .nav__name { color: var(--slate-900); }

.nav__links { display: none; gap: 1.5rem; align-items: center; }
.nav__link { font-weight: 500; transition: color .15s; }
.nav__link:hover { color: var(--orange-500); }
.nav--transparent .nav__link { color: white; }
.nav--scrolled .nav__link, .nav--solid .nav__link { color: var(--slate-900); }

.nav__lang {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding-left: 1.25rem;
  border-left: 1px solid;
  font-size: 0.85rem; font-weight: 700;
}
.nav--transparent .nav__lang { border-color: rgb(255 255 255 / 0.3); color: white; }
.nav--scrolled .nav__lang, .nav--solid .nav__lang { border-color: var(--slate-200); color: var(--slate-900); }
.nav__lang a { transition: color .15s; }
.nav__lang a:hover { color: var(--orange-500); }
.nav__lang .active { color: var(--orange-500); }

.nav__cta { display: none; }
.nav__menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; color: var(--slate-900);
}
.nav--transparent .nav__menu-btn { color: white; }

@media (max-width: 768px) {
  .nav--transparent .nav__menu-btn { color: var(--slate-900); }
  .nav--transparent { background: white; box-shadow: var(--shadow); padding-block: 0.75rem; }
  .nav--transparent .nav__name { color: var(--slate-900); }
}

@media (min-width: 768px) {
  .nav__links { display: inline-flex; }
  .nav__cta { display: inline-flex; }
  .nav__menu-btn { display: none; }
}

/* Mobile menu */
.menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: white; box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--border);
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.menu--open { max-height: 500px; }
.menu__inner { display: flex; flex-direction: column; padding: 1rem; gap: 0.5rem; }
.menu__link {
  text-align: left; font-weight: 500; font-size: 1.05rem;
  padding: 0.65rem 0.5rem; border-bottom: 1px solid var(--border);
  color: var(--slate-700);
}
.menu__lang { display: flex; justify-content: center; gap: 1.5rem; padding: 0.5rem; font-weight: 700; font-size: 0.95rem; }
.menu__lang .active { color: var(--orange-500); }

@media (min-width: 768px) { .menu { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-block: 8rem 5rem;
  color: white;
}
@media (min-width: 768px) { .hero { padding-block: 12rem 8rem; } }

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgb(15 23 42 / 0.92), rgb(15 23 42 / 0.7));
}
.hero__content { position: relative; z-index: 1; max-width: 720px; }
.hero__content--center { margin-inline: auto; text-align: center; }
.hero__title { color: white; margin-block: 1.25rem; }
.hero__subtitle { font-size: 1.125rem; color: var(--slate-300); margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Trust strip ---------- */
.trust-strip {
  position: relative; z-index: 5;
  margin: -3rem auto 0; max-width: 1100px;
  background: white; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) {
  .trust-strip { grid-template-columns: repeat(3, 1fr); padding: 2.5rem; }
}
.trust-strip__item { display: flex; align-items: flex-start; gap: 1rem; }
.trust-strip__icon {
  flex: none;
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--blue-50); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
}
.trust-strip__title { font-weight: 700; color: var(--slate-900); margin-bottom: 0.25rem; }
.trust-strip__text { color: var(--slate-600); font-size: 0.92rem; }

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head__title { color: var(--slate-900); margin-bottom: 1rem; }
.section--dark .section-head__title { color: white; }

/* ---------- Cards / services grid ---------- */
.cards { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  display: flex; flex-direction: column;
  height: 100%;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: #fed7aa; }
.card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--orange-50); color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform .2s;
}
.card:hover .card__icon { transform: scale(1.08); }
.card__title { color: var(--slate-900); margin-bottom: 0.5rem; }
.card__text { color: var(--slate-600); flex: 1; }
.card__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.25rem; font-weight: 700; color: var(--orange-600);
  transition: gap .2s;
}
.card__link:hover { gap: 0.7rem; color: var(--orange-700); }

/* ---------- Service detail page styles ---------- */
.page-hero {
  background: var(--slate-900); color: white;
  padding-block: 6rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, rgb(249 115 22 / 0.1), transparent);
  transform: skewX(-12deg) translateX(15%);
}
.page-hero__content { position: relative; z-index: 1; max-width: 760px; }
.page-hero__title { color: white; margin-block: 1.25rem; }
.page-hero__sub { font-size: 1.15rem; color: var(--slate-300); margin-bottom: 1.5rem; }

/* Breadcrumb */
.crumbs { font-size: 0.85rem; color: var(--slate-400); }
.crumbs a { color: var(--slate-300); transition: color .15s; }
.crumbs a:hover { color: var(--orange-400); }
.crumbs span { color: var(--slate-500); margin-inline: 0.4rem; }

/* Two-col content layout */
.content-wrap {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .content-wrap { grid-template-columns: 2fr 1fr; gap: 4rem; }
}

.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--slate-900);
  font-size: 1.75rem;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.25rem; color: var(--slate-700); font-size: 1.05rem; }
.prose ul.checklist { display: grid; gap: 1rem; margin-bottom: 1.25rem; }
.prose ul.checklist li {
  display: flex; gap: 0.75rem; padding: 1.25rem;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.prose ul.checklist li::before {
  content: "";
  flex: none;
  width: 24px; height: 24px;
  border-radius: var(--radius-full);
  background: var(--orange-100) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ea580c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 16px no-repeat;
  margin-top: 2px;
}
.prose ul.checklist li > div { flex: 1; }
.prose ul.checklist .item-title { font-weight: 700; color: var(--slate-900); margin-bottom: 0.25rem; }
.prose ul.checklist .item-text { color: var(--slate-600); font-size: 0.95rem; }

/* Sidebar contact card */
.sidebar { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 6rem; align-self: start; }
.sidecard {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.sidecard__title { color: var(--slate-900); margin-bottom: 0.5rem; }
.sidecard__text { color: var(--slate-600); margin-bottom: 1.25rem; font-size: 0.95rem; }
.sidecard__list { display: grid; gap: 0.75rem; }
.sidecard__item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.75rem; border-radius: var(--radius);
  background: var(--slate-50);
  font-size: 0.92rem;
}
.sidecard__item strong { display: block; color: var(--slate-900); margin-bottom: 0.15rem; }
.sidecard__item .ic {
  flex: none; width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--orange-100); color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
}
.sidecard__buttons { margin-top: 1.25rem; display: grid; gap: 0.6rem; }

/* ---------- Process / steps ---------- */
.steps { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
}
.step__num {
  width: 36px; height: 36px; border-radius: var(--radius-full);
  background: var(--orange-600); color: white;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.step__title { color: var(--slate-900); font-weight: 700; margin-bottom: 0.4rem; }
.step__text { color: var(--slate-600); font-size: 0.92rem; }

/* ---------- Foldable expertise ---------- */
.expertise {
  display: grid; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .expertise { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.expertise__list { display: grid; gap: 0.85rem; margin: 1.5rem 0 2rem; }
.expertise__list li { display: flex; gap: 0.75rem; align-items: center; }
.expertise__check {
  flex: none; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-500);
}
.expertise__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px; margin-inline: auto;
  background: var(--slate-800);
  border: 1px solid var(--slate-700);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.expertise__visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgb(249 115 22 / 0.18), transparent 60%);
}
.expertise__visual-inner {
  position: relative; z-index: 1; text-align: center;
}
.expertise__visual-inner .big-z { font-size: 6rem; font-weight: 800; line-height: 1; color: white; }
.expertise__visual-inner .label { color: var(--orange-400); font-weight: 600; margin-top: 0.5rem; }
.cta-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--orange-400); font-weight: 700;
  transition: color .15s, gap .2s;
}
.cta-link:hover { color: var(--orange-300); gap: 0.75rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq details {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  transition: box-shadow .15s, border-color .15s;
}
.faq details[open] { border-color: var(--orange-300); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer;
  font-weight: 700; color: var(--slate-900);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none; width: 28px; height: 28px;
  border-radius: var(--radius-full);
  background: var(--orange-50); color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; transition: transform .2s, background .15s;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--orange-100); }
.faq__answer {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--slate-600); font-size: 0.98rem;
}

/* ---------- Contact / map ---------- */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.contact-info { display: grid; gap: 1.5rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-row .ic {
  flex: none; width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: var(--orange-100); color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
}
.info-row strong { display: block; color: var(--slate-900); margin-bottom: 0.2rem; font-weight: 700; }

.map-wrap {
  position: relative;
  min-height: 400px;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--slate-100);
  box-shadow: inset 0 1px 3px 0 rgb(0 0 0 / 0.05);
}
.map-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.5);
  transition: filter .4s;
}
.map-wrap:hover iframe { filter: grayscale(0); }
.map-pin {
  position: absolute; bottom: 1rem; left: 1rem;
  background: white; padding: 0.75rem 1rem;
  border-radius: var(--radius); box-shadow: var(--shadow);
  font-size: 0.85rem; pointer-events: none;
}
.map-pin strong { display: block; color: var(--slate-900); }
.map-pin span { color: var(--slate-600); }

.contact-actions { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
@media (min-width: 480px) { .contact-actions { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Trust badges ---------- */
.review-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem; font-weight: 600; color: var(--slate-700);
  box-shadow: var(--shadow-sm);
}
.review-badge .stars { color: var(--yellow-400); letter-spacing: -0.05em; }

.review-badge--dark {
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(255 255 255 / 0.15);
  color: white;
}

/* ---------- CTA bar ---------- */
.cta-bar {
  background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
  color: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid; gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) { .cta-bar { grid-template-columns: 1.5fr 1fr; padding: 3rem; } }
.cta-bar h2 { color: white; }
.cta-bar p { color: rgb(255 255 255 / 0.9); font-size: 1.05rem; margin-top: 0.5rem; }
.cta-bar__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: flex-start; }
@media (min-width: 768px) { .cta-bar__actions { justify-content: flex-end; } }
.cta-bar .btn--primary { background: white; color: var(--orange-700); }
.cta-bar .btn--primary:hover { background: var(--slate-100); }
.cta-bar .btn--ghost-light { background: rgb(255 255 255 / 0.1); color: white; box-shadow: none; border: 1px solid rgb(255 255 255 / 0.2); }
.cta-bar .btn--ghost-light:hover { background: rgb(255 255 255 / 0.2); }

/* ---------- Related services ---------- */
.related { display: grid; gap: 1rem; }
@media (min-width: 640px) { .related { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.related-card:hover { border-color: var(--orange-300); box-shadow: var(--shadow); transform: translateY(-2px); }
.related-card .ic {
  flex: none; width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--orange-50); color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
}
.related-card span { font-weight: 600; color: var(--slate-900); }

/* ---------- Footer ---------- */
.footer {
  background: var(--slate-900); color: var(--slate-400);
  padding-block: 3rem 2rem;
  border-top: 1px solid var(--slate-800);
}
.footer-grid {
  display: grid; gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer h4 { color: white; margin-bottom: 1rem; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-brand .nav__name { color: white; }
.footer ul { display: grid; gap: 0.6rem; }
.footer a { transition: color .15s; }
.footer a:hover { color: white; }
.footer__bar {
  border-top: 1px solid var(--slate-800);
  padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: 0.85rem;
}
@media (min-width: 768px) { .footer__bar { flex-direction: row; justify-content: space-between; } }

/* ---------- Utilities ---------- */
.flex { display: flex; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* ---------- Visually hidden (for SR-only labels) ---------- */
.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;
}

/* ---------- Print ---------- */
@media print {
  .nav, .menu, .cta-bar, .footer { display: none; }
  body { background: white; color: black; }
}
