:root {
  --blue: #0568cc;
  --blue-dark: #0455a3;
  --red: #e93134;
  --red-dark: #c41e21;
  --gold: #c4a052;
  --gold-light: #e8d5a8;
  --black: #111111;
  --gray-600: #5a5a5a;
  --gray-400: #8a8a8a;
  --gray-200: #e8e8e8;
  --gray-100: #f8f8f8;
  --white: #ffffff;
  --border: rgba(17, 17, 17, 0.07);
  --shadow-sm: 0 2px 12px rgba(17, 17, 17, 0.04);
  --shadow: 0 8px 32px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 20px 48px rgba(17, 17, 17, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: "Bebas Neue", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max-width: 1180px;
  --header-height: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  text-wrap: balance;
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
}
::selection {
  background: rgba(5, 104, 204, 0.15);
  color: var(--blue-dark);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(100% - 2.5rem, var(--max-width)); margin-inline: auto; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(196, 160, 82, 0.25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 1.5rem; }

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.88; }
.logo-mark {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  filter:
    drop-shadow(0 0 4px rgba(233, 49, 52, 0.45))
    drop-shadow(0 0 8px rgba(5, 104, 204, 0.4));
  transition: filter 0.25s ease;
}
.logo:hover .logo-mark {
  filter:
    drop-shadow(0 0 6px rgba(233, 49, 52, 0.65))
    drop-shadow(0 0 12px rgba(5, 104, 204, 0.55));
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
}
.logo-name-top {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--blue);
  letter-spacing: 0.06em;
}
.logo-name-bottom {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 0.05rem;
  letter-spacing: 0.1em;
}

.nav-desktop { display: flex; align-items: center; gap: 2.25rem; }
.nav-desktop a {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--blue); }

.header-cta {
  font-family: var(--font-display);
  padding: 0.75rem 1.5rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(233, 49, 52, 0.25);
}
.header-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(233, 49, 52, 0.3);
}

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.menu-toggle:focus-visible,
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible,
.btn:focus-visible,
.header-cta:focus-visible,
a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--black); transition: transform 0.3s, opacity 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; position: fixed; top: var(--header-height); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1.25rem; box-shadow: var(--shadow); }
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 0.75rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.nav-mobile .header-cta { margin-top: 1rem; display: flex; justify-content: center; width: 100%; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  padding: 0.95rem 2rem; font-size: 1rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--red); color: var(--white); border-color: var(--red);
  box-shadow: 0 4px 16px rgba(233, 49, 52, 0.28);
}
.btn-primary:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(233, 49, 52, 0.32);
}
.btn-secondary {
  background: rgba(255,255,255,0.08); color: var(--white);
  border-color: rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-blue {
  background: var(--blue); color: var(--white); border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(5, 104, 204, 0.25);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-full { width: 100%; }

/* Hero */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding-top: var(--header-height); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(5, 104, 204, 0.92) 0%, rgba(5, 104, 204, 0.72) 42%, rgba(17, 17, 17, 0.78) 100%);
}
.hero-content {
  position: relative; z-index: 1; max-width: 640px; padding: 5rem 0;
  animation: heroFade 0.9s ease-out both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tagline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.25rem;
}
.hero-tagline::before {
  content: ""; width: 32px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7vw, 5.25rem);
  font-weight: 400; color: var(--white);
  line-height: 0.95; margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.25rem;
  max-width: 52ch;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.25rem; }
.hero-phone { font-size: 1.05rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.hero-phone a { border-bottom: 2px solid var(--gold); transition: color 0.2s; }
.hero-phone a:hover { color: var(--white); }

/* Sections */
section { padding: 6rem 0; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 400; color: var(--black);
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}
.section-header p {
  color: var(--gray-600);
  font-size: 1.075rem;
  line-height: 1.75;
  max-width: 52ch;
  margin-inline: auto;
}
.bg-light { background: var(--gray-100); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 160, 82, 0.35);
}
.service-card-image { aspect-ratio: 4/3; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-image img { transform: scale(1.05); }
.service-card-body { padding: 1.75rem; }
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 400;
  margin-bottom: 0.55rem;
  color: var(--black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.service-card-body p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* About */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-split .section-header { margin-bottom: 1.75rem; }
.about-split .section-header p { margin-inline: 0; max-width: none; }
.about-block-image img,
.contact-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.about-split-image {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.about-split-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-list { margin: 1.75rem 0; display: flex; flex-direction: column; gap: 0.65rem; }
.about-list li {
  font-size: 0.95rem; color: var(--gray-600);
  padding-left: 1.35rem; position: relative;
}
.about-list li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
}

/* Projects */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.project-item {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.project-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.6s ease;
}
.project-item:hover img { transform: scale(1.05); }

/* CTA */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white); text-align: center; padding: 5rem 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 3px;
  background: var(--gold);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 400; margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 48ch;
  margin-inline: auto;
}
.cta-band .container { display: flex; flex-direction: column; align-items: center; }

/* Page hero */
.page-hero {
  padding: calc(var(--header-height) + 4.5rem) 0 4.5rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
}
.page-hero.has-image { position: relative; overflow: hidden; }
.page-hero.has-image .page-hero-bg { position: absolute; inset: 0; }
.page-hero.has-image .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.page-hero.has-image .page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5, 104, 204, 0.9) 0%, rgba(4, 85, 163, 0.92) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 400; margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
  line-height: 1.75;
}
.page-hero.has-image .page-hero-content { text-align: left; }

/* Service detail */
.services-main { padding: 5rem 0 6rem; }
.service-detail-block:first-of-type { padding-top: 0; }
.service-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail-block:last-child { border-bottom: none; }
.service-detail-block.reverse { direction: rtl; }
.service-detail-block.reverse > * { direction: ltr; }
.service-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-detail-block:hover .service-detail-image img { transform: scale(1.03); }
.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--blue);
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}
.service-detail-content p {
  color: var(--gray-600);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 48ch;
}

/* About blocks */
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-bottom: 4.5rem; }
.about-block.reverse { direction: rtl; }
.about-block.reverse > * { direction: ltr; }
.about-block h2 {
  font-family: var(--font-display);
  font-size: 1.85rem; font-weight: 400;
  letter-spacing: 0.04em; text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.about-block p,
.mission-card p {
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 52ch;
}
.about-block p + p { margin-top: 1rem; }
.about-block-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.mission-card {
  background: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.mission-card h2 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mission-card p { margin-inline: auto; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.75rem; font-weight: 400;
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-info > p { color: var(--gray-600); margin-bottom: 2rem; line-height: 1.7; }
.contact-phone-row { margin-bottom: 1.5rem; }
.contact-phone-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gray-400); margin-bottom: 0.3rem;
}
.contact-phone-row a { font-size: 1.4rem; font-weight: 700; color: var(--blue); }
.contact-detail { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 0.75rem; }
.contact-image { margin-top: 2rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-form-card {
  background: var(--white); padding: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-form-card > p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
  color: var(--black);
}
.form-group input, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  font-family: var(--font-body); font-size: 1rem;
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--gray-100);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(5, 104, 204, 0.1);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-success,
.form-error {
  display: none; padding: 1rem;
  border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: 0.9rem;
}
.form-success {
  background: rgba(5,104,204,0.08); color: var(--blue-dark);
}
.form-error {
  background: rgba(233, 49, 52, 0.08); color: var(--red-dark);
}
.form-success.show,
.form-error.show { display: block; }
.form-error a { color: var(--blue); text-decoration: underline; }

/* Footer */
.site-footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 1.75rem;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand .logo-name-top { color: var(--white); }
.footer-brand .logo-name-bottom { color: var(--gold-light); }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; max-width: 280px; }
.footer-brand .logo-mark {
  filter:
    drop-shadow(0 0 6px rgba(233, 49, 52, 0.75))
    drop-shadow(0 0 12px rgba(5, 104, 204, 0.7));
}
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white); font-size: 0.95rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 1.1rem;
}
.footer-col a { display: block; font-size: 0.9rem; padding: 0.35rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 0, 0, 0.94);
  flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-stage {
  display: flex; align-items: center; justify-content: center;
  max-width: 92vw; max-height: 80vh;
}
.lightbox-stage img {
  max-width: 92vw; max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 48px; height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.lightbox-close {
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.16);
}
.lightbox-prev:hover,
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-counter {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.text-center { text-align: center; }
.section-cta { margin-top: 2.5rem; }

/* Reviews */
.reviews-section { background: var(--white); }
.reviews-summary {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.reviews-score {
  text-align: center;
  padding: 2rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-width: 260px;
}
.reviews-score-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--blue);
}
.reviews-score-stars,
.review-card-stars {
  display: flex;
  justify-content: center;
  gap: 0.15rem;
  margin: 0.65rem 0;
}
.review-star {
  font-size: 1.15rem;
  color: var(--gray-200);
}
.review-star.filled { color: var(--gold); }
.reviews-score-count {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 0.35rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.review-card-stars { margin: 0; justify-content: flex-start; }
.review-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(5, 104, 204, 0.08);
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.review-text {
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin: 0 0 1.25rem;
  font-style: normal;
}
.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-size: 0.82rem;
  color: var(--gray-400);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.review-meta strong {
  color: var(--black);
  font-weight: 600;
  width: 100%;
}
.review-service {
  color: var(--blue);
  font-weight: 500;
}
.review-price { color: var(--gray-600); }
.reviews-error {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray-600);
  padding: 2rem;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* Legal pages */
.legal-content { padding: 4rem 0 6rem; }
.legal-prose {
  max-width: 720px;
  margin-inline: auto;
}
.legal-prose > p:first-child {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
}
.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 2.25rem 0 0.85rem;
  line-height: 1.1;
}
.legal-prose p,
.legal-prose li {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--gray-600);
}
.legal-prose ul {
  margin: 0.75rem 0 1rem 1.25rem;
  list-style: disc;
}
.legal-prose li { margin-bottom: 0.4rem; }
.legal-prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-prose a:hover { color: var(--blue-dark); }

.footer-legal {
  display: flex;
  gap: 1.25rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white); }

@media (max-width: 900px) {
  .services-grid, .projects-grid, .about-split, .about-block, .contact-layout, .service-detail-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail-block.reverse { direction: ltr; }
  .about-block.reverse { direction: ltr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-desktop, .header-inner > .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  section { padding: 4rem 0; }
  .logo-wordmark { display: none; }
  .logo-mark { height: 46px; width: auto; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .service-detail-content p,
  .section-header p,
  .about-block p,
  .mission-card p,
  .cta-band p,
  .hero-lead,
  .page-hero p { max-width: none; }
  .logo-name-top { font-size: 1.2rem; }
  .logo-name-bottom { font-size: 1.05rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; }
}