/* ============================================================
   RM Workspace Solutions — Global Styles
   ============================================================ */

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Section Label / Eyebrow ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  max-width: 100%;        /* prevent overflow past container edge */
}
/* Decorative line before the eyebrow */
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
/* On dark sections the amber line still works. No change needed. */

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 44px;         /* WCAG 2.5.5 touch target minimum */
  touch-action: manipulation; /* removes 300ms tap delay on mobile */
}
.btn-primary {
  background: var(--amber);
  color: #fff;
}
.btn-primary:hover {
  background: var(--amber-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,129,26,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.btn-outline-amber {
  background: transparent;
  color: var(--amber-lt);
  border: 1.5px solid var(--border-amber);
}
.btn-outline-amber:hover {
  background: var(--amber-dim);
  border-color: var(--amber);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Section shared ── */
.section { position: relative; }
.section-dark  { background: var(--navy); color: var(--white); }
.section-mid   { background: var(--navy-mid); color: var(--white); }
.section-light { background: var(--surface); color: var(--ink); }

/* ── Blueprint / floor plan texture utility ── */
/* Used only on: hero, services (dark sections), CTA/contact, 3D tour */
.blueprint-overlay {
  position: relative;
}
.blueprint-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--blueprint-url);
  background-repeat: repeat;
  background-size: 800px auto;
  /* Force white linework regardless of SVG stroke colour */
  filter: brightness(0) invert(1);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.blueprint-overlay > * { position: relative; z-index: 1; }

/* Light-section blueprint overlay — dark linework on off-white/surface backgrounds */
.blueprint-overlay-light {
  position: relative;
}
.blueprint-overlay-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--blueprint-url);
  background-repeat: repeat;
  background-size: 900px auto;
  filter: brightness(0); /* renders SVG strokes as near-black */
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.blueprint-overlay-light > * { position: relative; z-index: 1; }

/* ── Divider ── */
.divider-amber {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin: 1.25rem 0;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  background: var(--navy-deep);
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--blueprint-url);
  background-repeat: repeat;
  background-size: 800px auto;
  filter: brightness(0) invert(1);
  opacity: 0.18;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--navy));
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__label { margin-bottom: 1rem; }
.page-hero__title {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-5xl));
  color: var(--white);
  max-width: 700px;
  line-height: 1.1;
}
.page-hero__sub {
  margin-top: 1.25rem;
  font-size: var(--text-lg);
  color: var(--gray-300);
  max-width: 560px;
  line-height: 1.65;
}

/* ── Closing CTA Section ── */
.cta-section {
  position: relative;
  background: var(--navy-deep);
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border-dark);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--blueprint-url);
  background-repeat: repeat;
  background-size: 800px auto;
  filter: brightness(0) invert(1);
  opacity: 0.18;
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section__sub {
  font-size: var(--text-lg);
  color: var(--gray-300);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .btn { font-size: 1rem; padding: 1rem 2.5rem; }

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
  padding: 0 2rem;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(13,27,42,0.09), 0 4px 20px rgba(13,27,42,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
/* When white navbar is active — flip all text/logo to dark */
.navbar.scrolled .navbar__logo img {
  /* Dark logo (rm-logo-dark.png) swapped in by main.js on scroll.
     White background of dark logo merges with white navbar — only dark mark shows. */
  filter: none;
  opacity: 1;
}
.navbar.scrolled .navbar__logo-name { color: var(--ink); }
.navbar.scrolled .navbar__logo-sub  { color: var(--gray-600); }
.navbar.scrolled .navbar__link      { color: var(--gray-700); }
.navbar.scrolled .navbar__link:hover,
.navbar.scrolled .navbar__link.active { color: var(--ink); }
.navbar.scrolled .navbar__hamburger span { background: var(--ink); }
.navbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.navbar__logo img {
  /* Daha büyük ve belirgin navbar logosu */
  width: clamp(140px, 14vw, 210px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: none;
  opacity: 1;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
/* Scrolled navbar: rm-logo-dark.png — koyu mark, beyaz bg ile birleşir */
.navbar.scrolled .navbar__logo img {
  opacity: 1;
  filter: none;
}
.navbar__logo:hover img { opacity: 0.85; }
.navbar__logo-text {
  display: none; /* Logo image IS the brand identity — text removed for clarity */
}
.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.navbar__logo-sub {
  font-size: 0.6875rem;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.navbar__link:hover,
.navbar__link.active {
  color: var(--white);
}
.navbar__cta {
  margin-left: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.375rem;
  background: var(--amber);
  color: #fff;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.navbar__cta:hover {
  background: var(--amber-lt);
  transform: translateY(-1px);
}

/* Mobile nav */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9,20,32,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile .navbar__link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  letter-spacing: -0.01em;
}
.navbar__mobile .navbar__cta {
  margin-top: 1rem;
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-dark);
  padding: 4rem 0 2rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand__logo {
  height: 32px;
  width: auto;
  margin-bottom: 0.75rem;
  /* rm-logo-white.png: dark bg + white elements — no filter needed on dark footer */
  filter: none;
  opacity: 0.85;
}
.footer-brand__sub {
  font-size: var(--text-xs);
  color: var(--amber);
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-brand__desc {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 280px;
}
.footer-col__title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}
.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-col__links a {
  font-size: var(--text-sm);
  color: var(--gray-300);
  transition: color var(--transition);
}
.footer-col__links a:hover { color: var(--amber-lt); }

.footer-contact__item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  align-items: flex-start;
}
.footer-contact__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--amber);
}
.footer-contact__text {
  font-size: var(--text-sm);
  color: var(--gray-300);
  line-height: 1.5;
}
.footer-contact__text a:hover { color: var(--amber-lt); }

.site-footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy {
  font-size: var(--text-xs);
  color: var(--gray-700);
}
.footer-copy a { color: var(--gray-500); }
.footer-copy a:hover { color: var(--amber-lt); }
.footer-legal {
  font-size: var(--text-xs);
  color: var(--gray-700);
  text-align: right;
  max-width: 520px;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════ */
.stats-section {
  background: var(--navy-mid);
  padding: 4.5rem 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--amber-lt);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--gray-300);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.stat-caveat {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--gray-700);
  margin-top: 2rem;
  font-style: italic;
}

/* ══════════════════════════════════════════════════
   SECTOR EXPERIENCE STRIP
══════════════════════════════════════════════════ */
.sector-section {
  background: var(--navy-card);
  padding: 4rem 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.sector-section__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.sector-section__text {
  font-size: var(--text-lg);
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.sector-section__caveat {
  font-size: var(--text-xs);
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   COVERAGE MAP SECTION
══════════════════════════════════════════════════ */
.coverage-section {
  background: var(--navy-deep);
  padding: var(--section-py) 0;
  overflow: hidden;
}
.coverage-section__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.coverage-section__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.coverage-section__map img {
  width: 100%;
  border-radius: var(--radius-lg);
  opacity: 0.92;
}
.coverage-section__content { }
.coverage-section__cities {
  margin-top: 1.5rem;
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════════════════ */
.video-section {
  position: relative;
  background: #000;
  overflow: hidden;
}
.video-section__video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  opacity: 0.85;
  display: block;
}
.video-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(9,20,32,0.7) 0%, rgba(9,20,32,0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
}
.video-section__content {
  padding: 4rem;
  max-width: 520px;
}
.video-section__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  color: var(--white);
  margin-bottom: 1rem;
}
.video-section__sub {
  font-size: var(--text-base);
  color: var(--gray-300);
  line-height: 1.65;
}

/* Standalone video container for projects page */
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-container__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9,20,32,0.4);
  cursor: pointer;
  transition: background var(--transition);
}
.video-container__play:hover { background: rgba(9,20,32,0.2); }
.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200,129,26,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.play-btn:hover { transform: scale(1.1); background: var(--amber); }
.play-btn svg { width: 24px; height: 24px; color: #fff; margin-left: 3px; }

/* ══════════════════════════════════════════════════
   PHOTO GALLERY
══════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-grid--4col { grid-template-columns: repeat(4, 1fr); }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--navy-card);
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0);
  transition: background var(--transition-slow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item__overlay {
  background: rgba(13,27,42,0.4);
}
.gallery-item__zoom {
  opacity: 0;
  color: white;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item__zoom { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5,12,20,0.96);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  z-index: 9001;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition);
  padding: 1rem;
  z-index: 9001;
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 1; }

/* ══════════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════════ */
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--amber-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--amber);
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.625rem;
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-700);
  line-height: 1.65;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--amber);
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 0.625rem; color: var(--amber-lt); }
.service-card__link svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════
   WHY RM SECTION
══════════════════════════════════════════════════ */
.why-section {
  background: var(--navy);
  padding: var(--section-py) 0;
}
.why-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-section__content { }
.why-section__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--amber-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--amber);
}
.why-item__icon svg { width: 18px; height: 18px; }
.why-item__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.why-item__desc {
  font-size: var(--text-sm);
  color: var(--gray-300);
  line-height: 1.65;
}
.why-section__photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.why-section__photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.why-section__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-dark);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════
   INTRO STRIP
══════════════════════════════════════════════════ */
.intro-strip {
  background: var(--navy-card);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 2.5rem 0;
}
.intro-strip__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.intro-strip__text {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.intro-strip__text span { color: var(--amber-lt); }

/* ══════════════════════════════════════════════════
   SERVICE DETAIL (Services page)
══════════════════════════════════════════════════ */
.service-detail {
  padding: var(--section-py) 0;
  border-bottom: 1px solid var(--border-dark);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail--light { background: var(--surface); }
.service-detail--dark  { background: var(--navy); }
.service-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.service-detail__layout--reversed { direction: rtl; }
.service-detail__layout--reversed > * { direction: ltr; }
.service-detail__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-detail__photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.service-detail__photo--placeholder {
  background: var(--navy-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: var(--text-sm);
}
.service-detail__heading {
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
  margin-bottom: 1.25rem;
}
.service-detail--dark .service-detail__heading { color: var(--white); }
.service-detail--light .service-detail__heading { color: var(--ink); }
.service-detail__desc {
  font-size: var(--text-base);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.service-detail--dark .service-detail__desc { color: var(--gray-300); }
.service-detail--light .service-detail__desc { color: var(--ink-mid); }
.capabilities-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.capabilities-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--text-sm);
  line-height: 1.5;
}
.service-detail--dark .capabilities-list li { color: var(--gray-300); }
.service-detail--light .capabilities-list li { color: var(--ink-mid); }
.capabilities-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ══════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════ */
.about-overview {
  background: var(--navy);
  padding: var(--section-py) 0;
}
.about-overview__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-overview__text h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  color: var(--white);
  margin-bottom: 1.5rem;
}
.about-overview__text p {
  font-size: var(--text-base);
  color: var(--gray-300);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.about-brand-box {
  background: var(--navy-card);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2.5rem;
}
.about-brand-box__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.875rem;
}
.about-brand-box p {
  font-size: var(--text-sm);
  color: var(--gray-300);
  line-height: 1.7;
}
.about-overview__photo img {
  width: 100%;
  border-radius: var(--radius-xl);
  height: 480px;
  object-fit: cover;
}

.commitments-section {
  background: var(--navy-mid);
  padding: var(--section-py-md) 0;
  border-top: 1px solid var(--border-dark);
}
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.commitment-card {
  background: var(--navy-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.commitment-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber-dim);
  line-height: 1;
  margin-bottom: 1rem;
  /* Using amber dim as a large faint number */
  color: rgba(200,129,26,0.2);
}
.commitment-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.commitment-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-300);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════ */
.contact-section {
  background: var(--navy);
  padding: var(--section-py) 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-form { }
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-size: var(--text-sm);
  color: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-700); }
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; padding: 1rem; }

.contact-details { }
.contact-details__title {
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: 2rem;
}
.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-dark);
}
.contact-detail-item:last-of-type { border-bottom: none; }
.contact-detail-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--amber-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-top: 2px;
}
.contact-detail-item__icon svg { width: 18px; height: 18px; }
.contact-detail-item__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}
.contact-detail-item__value {
  font-size: var(--text-base);
  color: var(--white);
  line-height: 1.5;
}
.contact-detail-item__value a:hover { color: var(--amber-lt); }
.contact-service-note {
  background: var(--navy-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
}
.contact-service-note p {
  font-size: var(--text-sm);
  color: var(--gray-300);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   PROJECTS PAGE
══════════════════════════════════════════════════ */
.projects-gallery-section {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.gallery-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
  margin-top: 3rem;
}
.gallery-full .gallery-item img { height: 200px; }

.video-projects-section {
  background: var(--navy);
  padding: var(--section-py) 0;
  position: relative;
}
/* video-projects-section: blueprint removed — real footage is primary */
.video-projects-section .container { position: relative; z-index: 1; }
.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.video-label {
  margin-top: 1rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-300);
}
.video-label span { color: var(--gray-500); font-weight: 400; }

.tour-section {
  background: var(--navy-mid);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border-dark);
  position: relative;
}
.tour-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--blueprint-url);
  background-repeat: repeat;
  background-size: 800px auto;
  filter: brightness(0) invert(1);
  opacity: 0.18;
  pointer-events: none;
}
.tour-section .container { position: relative; z-index: 1; }
.tour-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.tour-section__desc {
  font-size: var(--text-base);
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.tour-section__note {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.6;
}

/* Technology section — left/right columns */
.tour-section__left {}
.tour-section__body {
  font-size: var(--text-base);
  color: var(--gray-300);
  line-height: 1.75;
  margin-top: 1.25rem;
}

/* Six feature list */
.tour-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.tour-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.tour-feature__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(232,160,32,0.10);
  border: 1px solid rgba(232,160,32,0.22);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-top: 0.1rem;
}
.tour-feature__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.tour-feature__desc {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-py: 5rem;
    --section-py-md: 3.5rem;
  }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-grid { gap: 1.5rem; }
  .services-grid-home { grid-template-columns: repeat(2, 1fr); }
  .why-section__layout { gap: 3.5rem; }
  .coverage-section__layout { gap: 3rem; }
  .tour-section__layout { gap: 2.5rem; grid-template-columns: 1fr 1.2fr; }
}

@media (max-width: 768px) {
  .container, .container--narrow { padding: 0 1.25rem; }

  /* Section-label: switch to block-level flex so long text wraps instead of overflowing */
  .section-label {
    display: flex;
    align-items: flex-start;
    white-space: normal;
    max-width: 100%;
    letter-spacing: 0.08em;   /* reduce from 0.18em — still readable, far less wide */
  }
  .section-label::before {
    margin-top: 5px;          /* align decorative line with first text line when text wraps */
    flex-shrink: 0;
  }

  .navbar__nav,
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__inner { height: 64px; } /* compact navbar on mobile */

  .page-hero { padding: 6rem 0 3.5rem; }
  .page-hero .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .services-grid-home { grid-template-columns: 1fr; }
  .why-section__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-section__photo { order: -1; }
  .why-section__photo img { height: 320px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  /* Fix left-border: on 2-col layout, odd items start a row — remove their border */
  .stat-item:nth-child(odd)  { border-left: none; }
  .stat-item:nth-child(even) { border-left: 1px solid var(--border-dark); }

  .coverage-section__layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .service-detail__layout,
  .service-detail__layout--reversed { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .service-detail__photo img { height: 280px; }
  .service-detail__photo { order: -1 !important; }

  .about-overview__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-overview__photo { order: -1; }
  .about-overview__photo img { height: 280px; }
  .commitments-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Prevent iOS Safari from zooming in on form inputs (requires ≥16px) */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: max(16px, var(--text-sm));
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: 1fr; }
  .tour-section__layout { grid-template-columns: 1fr; }
  .tour-section .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .video-section__overlay { background: rgba(9,20,32,0.65); align-items: flex-end; }
  .video-section__content { max-width: 100%; padding: 2rem; }

  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .footer-legal { text-align: center; }

  .intro-strip__text { font-size: var(--text-xl); }
  .cta-section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  :root {
    --section-py:    3rem;     /* 48px — tighter spacing on small phones */
    --section-py-md: 2.25rem;
    --section-py-sm: 1.75rem;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item img { height: 160px; }
  .gallery-full .gallery-item img { height: 140px; }

  /* Inline-grid layouts: ensure single-column on very small screens */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Reduce hero padding on small phones */
  .page-hero { padding: 6rem 0 3rem; }
}

/* ══════════════════════════════════════════════════
   HERO SECTION (Homepage)
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  opacity: 0.72;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  /* Multi-layer cinematic overlay:
     1. Left-anchored gradient keeps text readable
     2. Bottom vignette anchors to page content
     3. Top fade keeps navbar area dark */
  background:
    linear-gradient(to right,
      rgba(7,15,24,0.95) 0%,
      rgba(7,15,24,0.82) 35%,
      rgba(7,15,24,0.55) 62%,
      rgba(7,15,24,0.38) 100%),
    linear-gradient(to top,
      rgba(7,15,24,0.92) 0%,
      rgba(7,15,24,0.30) 30%,
      transparent 55%),
    linear-gradient(to bottom,
      rgba(7,15,24,0.60) 0%,
      transparent 18%);
  z-index: 1;
}
/* Blueprint overlay: large single floor plan graphic positioned RIGHT.
   Gradient makes it almost invisible where the heading text is (left),
   but architecturally visible on the right side of the hero. */
.hero.blueprint-overlay::before {
  background-image: var(--blueprint-url);
  background-repeat: no-repeat;
  background-size: 68vh auto;
  background-position: right 5% center;
  filter: brightness(0) invert(1);
  opacity: 0.20;
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  padding: 11rem 0 6rem;
  max-width: 680px;
}

/* ── Split hero: logo left / text right ── */
.hero__split {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.hero__split-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__split-logo img {
  /* Large brand mark — the dark rectangle bg blends into dark hero overlay */
  width: clamp(220px, 28vw, 420px);
  height: auto;
  filter: none;
  opacity: 0.95;
  display: block;
}
.hero__split-text {
  /* All text content on the right */
}
.hero__split-text .hero__headline,
.hero__split-text .hero__sub,
.hero__split-text .section-label,
.hero__split-text .hero__actions {
  /* Ensure text is left-aligned within the right column */
  text-align: left;
}

/* "without" — amber + italic treatment */
.hero__headline-without {
  color: var(--amber-lt);
  font-style: italic;
  font-weight: inherit;
}

/* Responsive: stack on tablet */
@media (max-width: 1024px) {
  .hero__split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero__split-logo {
    justify-content: flex-start;
  }
  .hero__split-logo img {
    width: clamp(160px, 22vw, 260px);
  }
}
@media (max-width: 768px) {
  .hero__split-logo { display: none; } /* hide on mobile — navbar logo handles branding */
}
.hero__headline {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 32px rgba(7,15,24,0.4);
}
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: rgba(245,243,239,0.82);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.75rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero__actions .btn { font-size: 1rem; padding: 0.9375rem 2.125rem; }
.hero__actions .btn-primary {
  box-shadow: 0 4px 24px rgba(200,129,26,0.38);
}
.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.35);
  animation: scrollBounce 2.4s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.35; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 0.7;  }
}

@media (max-width: 1024px) {
  .hero__content { max-width: 600px; }
}
@media (max-width: 768px) {
  .hero { height: 100svh; } /* svh avoids mobile browser bar issue */
  .hero__video { object-position: center center; }
  .hero__overlay {
    background:
      linear-gradient(to bottom, rgba(7,15,24,0.60) 0%, rgba(7,15,24,0.65) 50%, rgba(7,15,24,0.88) 100%);
  }
  .hero__content { padding: 8rem 0 5rem; max-width: 100%; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; max-width: 320px; }
}

/* ══════════════════════════════════════════════════
   HERO — LIGHT VARIANT  (homepage, no video)
══════════════════════════════════════════════════ */
.hero--light {
  background-color: var(--surface);  /* #F7F5F2 warm off-white */
  height: auto;
  min-height: 100vh;   /* fallback for older browsers */
  min-height: 100svh;  /* avoids mobile browser bar eating space */
}

/* Blueprint texture — dark linework on light bg */
.hero--light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--blueprint-url);
  background-repeat: repeat;
  background-size: 420px;
  /* SVG is white linework → invert to dark lines */
  filter: brightness(0);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

/* Text colour overrides for light surface */
.hero--light .section-label {
  color: var(--amber);
}
.hero--light .hero__headline {
  color: var(--navy);
  text-shadow: none;
}
.hero--light .hero__sub {
  color: var(--ink-mid);
}
.hero--light .hero__scroll {
  color: rgba(13,27,42,0.28);
}
.hero--light .btn-secondary {
  border-color: var(--navy);
  color: var(--navy);
}
.hero--light .btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Brand stamp above headline ── */
.hero__brand-stamp {
  margin-bottom: 1.5rem;
}
.hero__brand-stamp img {
  width: 88px;
  height: auto;
  display: block;
}

/* ── Two-column split for light hero (legacy) ── */
.hero--light .hero__split {
  grid-template-columns: 55fr 45fr;
  align-items: center;
  gap: 5rem;
  padding: 10rem 0 6rem;
  max-width: var(--max-width);
}
.hero--light .hero__split-text {
  position: relative;
  z-index: 2;
}

/* ── İki sütunlu hero layout: sol metin, sağ logo ── */
.hero__split-lg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 9rem 0 5.5rem;
  max-width: var(--max-width);
  position: relative;
  z-index: 2;
}

.hero__split-left {
  /* Sol sütun: tüm metin içeriği */
}

/* Sağdaki büyük transparan logo */
.hero__logo-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-right-img {
  width: clamp(300px, 38vw, 560px);
  height: auto;
  display: block;
  /* Logo zaten transparan PNG — ek efekte gerek yok */
  opacity: 0.88;
}

@media (max-width: 1024px) {
  .hero__split-lg {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 8rem 0 4.5rem;
  }
  .hero__logo-right {
    justify-content: flex-start;
  }
  .hero__logo-right-img {
    width: clamp(220px, 55vw, 380px);
  }
}
@media (max-width: 768px) {
  .hero__split-lg {
    padding: 7rem 0 4rem;
  }
  .hero__logo-right-img {
    width: clamp(200px, 70vw, 300px);
  }
}

/* ── Editorial photo frame ── */
.hero__photo-frame {
  position: relative;
  z-index: 2;
  border: 2px solid var(--navy);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    8px 8px 0 rgba(13,27,42,0.08),
    0 24px 64px rgba(13,27,42,0.12);
  background: var(--navy);
}
.hero__photo-frame__accent {
  height: 4px;
  background: var(--amber);
}
.hero__photo-frame img {
  display: block;
  width: 100%;
  height: 490px;
  object-fit: cover;
  object-position: center 40%;
}
.hero__photo-frame__caption {
  background: var(--navy);
  color: var(--gray-500);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

/* ── Credential pills ── */
.hero__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.hero__credential {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(13,27,42,0.18);
  border-radius: 3px;
  background: rgba(255,255,255,0.65);
}

/* Responsive overrides */
@media (max-width: 1024px) {
  .hero--light .hero__split {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 9rem 0 5rem;
  }
  .hero__photo-frame img { height: 380px; }
}
@media (max-width: 768px) {
  .hero--light {
    min-height: 100svh;
    height: auto;
  }
  .hero--light .hero__split {
    padding: 7.5rem 0 4rem;
    gap: 2.5rem;
  }
  .hero__photo-frame img { height: 260px; }
  .hero__brand-stamp img { width: 72px; }
}

/* ══════════════════════════════════════════════════
   FADE-IN SCROLL ANIMATION
══════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════
   COVERAGE LIST (homepage & about)
══════════════════════════════════════════════════ */
.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
}
.coverage-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-base);
  color: var(--gray-200);
  font-weight: 500;
}
.coverage-list__dot {
  flex-shrink: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

/* ══════════════════════════════════════════════════
   SERVICES NAV (services page anchor links)
══════════════════════════════════════════════════ */
.services-nav {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border-dark);
  position: sticky;
  top: 78px;
  z-index: 100;
}
.services-nav__list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.services-nav__list::-webkit-scrollbar { display: none; }
.services-nav__link {
  display: block;
  white-space: nowrap;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-400);
  padding: 1rem 1.375rem;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.services-nav__link:hover {
  color: var(--white);
  border-bottom-color: var(--amber);
}

@media (max-width: 768px) {
  .services-nav { top: 64px; }
  .services-nav__link { padding: 0.875rem 1rem; font-size: 0.8125rem; }
}

/* ══════════════════════════════════════════════════
   SERVICE DETAIL — additional class aliases
══════════════════════════════════════════════════ */
/* .service-detail__media is an alias for .service-detail__photo */
.service-detail__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-detail__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* layout reverse (used in HTML as --reverse, CSS had --reversed) */
.service-detail__layout--reverse {
  direction: rtl;
}
.service-detail__layout--reverse > * { direction: ltr; }

/* text elements */
.service-detail__title {
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.service-detail__lead {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--ink-mid);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.service-detail__body {
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.service-detail__caps-title {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 1rem;
}
.service-detail__caps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-detail__caps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--ink-mid);
  line-height: 1.5;
}
.service-detail__caps li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 6px;
}
.service-detail__caps--dark li { color: var(--gray-300); }
.service-detail__caps--dark ~ .service-detail__caps-title,
.service-detail__caps--dark + .service-detail__caps-title { color: var(--gray-400); }

@media (max-width: 768px) {
  .service-detail__media img { height: 280px; }
  .service-detail__media { order: -1; }
}

/* ══════════════════════════════════════════════════
   ABOUT PAGE — additional classes
══════════════════════════════════════════════════ */
/* About overview: when used with section-light, let that class win */
.about-overview.section-light {
  background: var(--surface);
}
.about-overview.section-dark {
  background: var(--navy);
}
/* about-overview__content is an alias for about-overview__text */
.about-overview__content { }
.about-overview__photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-overview__photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.about-overview__photo-cap {
  margin-top: 0.875rem;
  font-size: var(--text-xs);
  color: var(--gray-700);
  font-style: italic;
  text-align: center;
}

/* about-brand-box as a full page section (overrides the small card variant) */
section.about-brand-box {
  border: none;
  border-radius: 0;
  margin-top: 0;
  padding: var(--section-py) 0;
  background: transparent; /* let section-dark / section-mid handle it */
}
.about-brand-box.section {
  padding: var(--section-py) 0;
}
.about-brand-box__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-brand-box__content { }
.about-brand-box__logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
  background: var(--navy-card);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-xl);
}

/* commitment-card icon variant */
.commitment-card__icon {
  width: 52px;
  height: 52px;
  background: var(--amber-dim);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--amber);
}
.commitment-card__icon svg { width: 28px; height: 28px; }

/* why-item__dot variant */
.why-item__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 6px;
}

/* ══════════════════════════════════════════════════
   VIDEO — full-width variant & oversized play button
══════════════════════════════════════════════════ */
.video-container--full {
  border-radius: 0;
  aspect-ratio: 16/9;
  max-height: 72vh;
}
.play-btn--lg {
  width: 88px;
  height: 88px;
}
.play-btn--lg svg { width: 40px; height: 40px; }
.play-label {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .about-brand-box__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-brand-box__logo-block { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2.25rem; }
  .service-detail__media img { height: 220px; }
}

/* ══════════════════════════════════════════════════
   TYPOGRAPHY — ACCENT WORD (amber highlights in headings)
══════════════════════════════════════════════════ */
.accent-word {
  font-style: italic;
  color: var(--amber);
}
/* On light backgrounds, use slightly deeper amber for contrast */
.section-light .accent-word,
.blueprint-overlay-light .accent-word {
  color: var(--amber);
}

/* ══════════════════════════════════════════════════
   WHY SECTION — LIGHT VARIANT
   When used with .section-light instead of .section-dark
══════════════════════════════════════════════════ */
.why-section.section-light {
  background: var(--off-white);
}
.why-section.section-light .why-item__title {
  color: var(--ink);
}
.why-section.section-light .why-item__desc {
  color: var(--ink-mid);
}
.why-section.section-light .why-section__photo::after {
  border-color: var(--border-light);
}
/* Refined photo treatment on light bg */
.why-section.section-light .why-section__photo img {
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(13,27,42,0.12);
}

/* ══════════════════════════════════════════════════
   COVERAGE SECTION — LIGHT VARIANT
══════════════════════════════════════════════════ */
.coverage-section.section-light {
  background: var(--off-white);
}
.coverage-section.section-light .coverage-section__map img {
  box-shadow: 0 12px 40px rgba(13,27,42,0.10);
  border-radius: var(--radius-lg);
}

/* Coverage list text on light background */
.section-light .coverage-list li,
.blueprint-overlay-light .coverage-list li {
  color: var(--ink-mid);
}

/* ══════════════════════════════════════════════════
   IMAGE HOVER EFFECTS — subtle scale on all photo blocks
══════════════════════════════════════════════════ */
.why-section__photo,
.coverage-section__map,
.about-overview__photo {
  overflow: hidden;
}
.why-section__photo img,
.coverage-section__map img,
.about-overview__photo img {
  transition: transform 0.55s ease;
}
.why-section__photo:hover img,
.coverage-section__map:hover img,
.about-overview__photo:hover img {
  transform: scale(1.025);
}

/* Gallery items — refined hover */
.gallery-item img {
  transition: transform 0.45s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ══════════════════════════════════════════════════
   ANIMATED UNDERLINE CTAs
   Applies to text links and outline buttons
══════════════════════════════════════════════════ */
.link-underline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}
.link-underline:hover::after { width: 100%; }

/* ══════════════════════════════════════════════════
   SERVICE CARDS — improved light-section appearance
══════════════════════════════════════════════════ */
.section-light .service-card {
  background: #fff;
  box-shadow: 0 1px 3px rgba(13,27,42,0.06), 0 4px 12px rgba(13,27,42,0.04);
}
.section-light .service-card:hover {
  box-shadow: 0 4px 20px rgba(13,27,42,0.10);
}

/* ══════════════════════════════════════════════════
   STATS SECTION — border accent on light neighbors
══════════════════════════════════════════════════ */
.stats-section {
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

/* ══════════════════════════════════════════════════
   PROCESS STEPS — connector line color refinement
   (connects left/right step numbers)
══════════════════════════════════════════════════ */
.process-step__num {
  /* Add subtle glow to number circles */
  box-shadow: 0 0 0 4px rgba(200,129,26,0.08);
}

/* ══════════════════════════════════════════════════
   FOOTER BRAND LOGO — white on dark footer
   rm-logo-white.png has dark bg + white elements;
   show as-is — dark bg merges with dark footer.
══════════════════════════════════════════════════ */
.footer-brand__logo {
  height: 38px;
  width: auto;
  filter: none;
  opacity: 0.9;
}

/* ══════════════════════════════════════════════════
   NAV — services-nav sticky top adjustment for taller nav
══════════════════════════════════════════════════ */
.services-nav {
  top: 78px;
}
@media (max-width: 768px) {
  .services-nav { top: 64px; }
}

/* ══════════════════════════════════════════════════
   SERVICE STRIP (immediately after hero)
   4-cell dark bar — establishes scope at a glance
══════════════════════════════════════════════════ */
.service-strip {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.service-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 2rem;
}
.service-strip__cell {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition);
  text-decoration: none;
}
.service-strip__cell:last-child { border-right: none; }
.service-strip__cell:hover { background: rgba(255,255,255,0.03); }
.service-strip__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}
.service-strip__icon svg { width: 22px; height: 22px; }
.service-strip__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.service-strip__sub {
  display: block;
  font-size: var(--text-xs);
  color: var(--gray-500);
  margin-top: 0.2rem;
  letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
  .service-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .service-strip__cell:nth-child(2) { border-right: none; }
  .service-strip__cell:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
  .service-strip__cell:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); border-right: none; }
}
@media (max-width: 520px) {
  .service-strip__grid { grid-template-columns: 1fr; }
  .service-strip__cell {
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.25rem 1.25rem;
  }
  .service-strip__cell:first-child { border-top: none; }
}

/* ══════════════════════════════════════════════════
   PROCESS SECTION (how it works — 5 numbered steps)
══════════════════════════════════════════════════ */
.process-section {
  background: var(--navy);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
/* SVG floor plan texture overlay — same file used in hero/CTA */
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--blueprint-url);
  background-repeat: repeat;
  background-size: 900px auto;
  filter: brightness(0) invert(1);
  opacity: 0.18;
  pointer-events: none;
}
.process-section .container { position: relative; z-index: 1; }
.process-section__header {
  max-width: 560px;
  margin-bottom: 4rem;
}
.process-section__title {
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
  color: var(--white);
  margin-top: 0.75rem;
  line-height: 1.1;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
/* Horizontal connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(10% + 12px);
  right: calc(10% + 12px);
  height: 1px;
  background: linear-gradient(to right, var(--amber), rgba(200,129,26,0.3), var(--amber));
  opacity: 0.35;
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  text-align: center;
}
.process-step:first-child { padding-left: 0; text-align: left; }
.process-step:last-child  { padding-right: 0; text-align: right; }
.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--amber);
  background: var(--navy);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.process-step:first-child .process-step__num { margin-left: 0; }
.process-step:last-child  .process-step__num { margin-right: 0; }
.process-step__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.process-step__desc {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .process-steps::before { display: none; }
  .process-step { text-align: left; padding: 0; }
  .process-step:last-child { text-align: left; padding-right: 0; }
}
@media (max-width: 640px) {
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
}

/* ══════════════════════════════════════════════════
   REDESIGNED CTA SECTION
   Solid amber band — high contrast, editorial
══════════════════════════════════════════════════ */
.cta-section--amber {
  background: var(--amber);
  padding: 5rem 0;
  border-top: none;
  overflow: hidden;
  position: relative;
  text-align: left; /* override base cta-section centering */
}
.cta-section--amber::before { display: none; } /* disable blueprint on amber bg */
.cta-section--amber .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-section--amber .cta-section__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-section--amber .cta-section__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 480px;
}
.cta-section--amber .btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  background: var(--navy-deep);
  color: var(--white);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.cta-section--amber .btn-cta-white:hover {
  background: #000;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-section--amber .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cta-section--amber .btn-cta-white {
    align-self: flex-start;
  }
}

/* ══════════════════════════════════════════════════
   UPDATED SERVICE CARDS — sharper, finer borders
══════════════════════════════════════════════════ */
.service-card {
  border-radius: var(--radius) !important;
  border-color: var(--border-light) !important;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.3s ease;
}
.service-card:hover::after { width: 100%; }
.service-card:hover { transform: translateY(-3px) !important; }

/* ══════════════════════════════════════════════════
   STATS — updated accent style
══════════════════════════════════════════════════ */
.stat-item {
  padding: 1.5rem;
  border-left: 1px solid var(--border-dark);
}
.stat-item:first-child { border-left: none; }

/* ══════════════════════════════════════════════════
   SECTION HEADING — utility
══════════════════════════════════════════════════ */
.section-heading {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
}
.section-heading--light { color: var(--white); }
.section-heading--dark  { color: var(--ink); }
.section-subhead {
  font-size: var(--text-base);
  line-height: 1.75;
  margin-top: 1.25rem;
  font-weight: 400;
}
.section-subhead--light { color: rgba(200,210,220,0.82); }
.section-subhead--dark  { color: var(--gray-700); }

/* ══════════════════════════════════════════════════
   BORDERED SERVICE GRID — architectural, no rounded cards
══════════════════════════════════════════════════ */
.svc-grid-bordered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-light);
  margin-top: 3.5rem;
}
.svc-cell-item {
  display: block;
  padding: 2.25rem 1.75rem;
  position: relative;
  text-decoration: none;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: #fff;
  transition: background 0.22s ease;
}
/* Remove right border on every 3rd item */
.svc-cell-item:nth-child(3n) { border-right: none; }
/* Remove bottom border on last row (items 4-6) */
.svc-cell-item:nth-child(n+4) { border-bottom: none; }
/* Amber accent bar on hover */
.svc-cell-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.3s ease;
}
.svc-cell-item:hover::after { width: 100%; }
.svc-cell-item:hover { background: #faf9f7; }

.svc-cell-item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.svc-cell-item__icon svg { width: 24px; height: 24px; }

.svc-cell-item__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.svc-cell-item__desc {
  font-size: var(--text-sm);
  color: var(--gray-700);
  line-height: 1.68;
  margin-bottom: 1.25rem;
}
.svc-cell-item__link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease, color 0.2s ease;
}
.svc-cell-item:hover .svc-cell-item__link { gap: 0.7rem; color: var(--amber-lt); }

/* Responsive */
@media (max-width: 1024px) {
  .svc-grid-bordered { grid-template-columns: repeat(2, 1fr); }
  .svc-cell-item:nth-child(3n)   { border-right: 1px solid var(--border-light); }
  .svc-cell-item:nth-child(2n)   { border-right: none; }
  .svc-cell-item:nth-child(n+4)  { border-bottom: 1px solid var(--border-light); }
  .svc-cell-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 640px) {
  .svc-grid-bordered { grid-template-columns: 1fr; }
  .svc-cell-item { border-right: none !important; border-bottom: 1px solid var(--border-light) !important; }
  .svc-cell-item:last-child { border-bottom: none !important; }
}

/* ══════════════════════════════════════════════════
   EDITORIAL GALLERY — two-row with taller first row
   6-item layout: 3 cols × 2 rows, row 1 taller
══════════════════════════════════════════════════ */
.gallery-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 215px;
  gap: 0.875rem;
}
.gallery-editorial .gallery-item {
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  background: var(--navy-mid);
}
.gallery-editorial .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-editorial .gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 1024px) {
  .gallery-editorial { grid-template-rows: 240px 175px; }
}
@media (max-width: 768px) {
  .gallery-editorial {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 180px 180px 180px;
  }
}
@media (max-width: 520px) {
  .gallery-editorial {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 220px);
  }
}

/* ══════════════════════════════════════════════════
   CTA SECTION — amber variant with subtle grid-line texture
══════════════════════════════════════════════════ */
.cta-section--amber {
  background: var(--amber);
  border-top: none;
}
.cta-section--amber::before {
  /* Fine white grid-line texture */
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0;
  opacity: 1;
}
.cta-section--amber .cta-section__title { color: #fff; }
.cta-section--amber .cta-section__sub   { color: rgba(255,255,255,0.8); }
.cta-section--amber .btn-primary {
  background: #fff;
  color: var(--amber);
}
.cta-section--amber .btn-primary:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}
.cta-section--amber .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.cta-section--amber .btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.12);
}

/* ══════════════════════════════════════════════════
   EXPERIENCE BADGES — text-only org name tags
══════════════════════════════════════════════════ */
.experience-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.625rem;
  margin: 2rem 0 1.75rem;
  justify-content: center;
}
.experience-badge {
  display: inline-block;
  padding: 0.45rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-mid);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.experience-badge:hover {
  border-color: var(--amber);
  color: var(--ink);
}
/* Dark-section variant */
.section-dark .experience-badge,
.section-mid .experience-badge {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: var(--gray-300);
}
.section-dark .experience-badge:hover,
.section-mid .experience-badge:hover {
  border-color: var(--amber);
  color: var(--white);
}

/* ══════════════════════════════════════════════════
   CREDIBILITY STRIP — 3-col grid of compliance items
══════════════════════════════════════════════════ */
.credibility-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
  margin-top: 3rem;
}
.credibility-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.credibility-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: 8px;
  color: var(--amber);
}
.credibility-item__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.credibility-item__desc {
  font-size: var(--text-xs);
  color: var(--gray-400);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .credibility-strip { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}
@media (max-width: 600px) {
  .credibility-strip { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ══════════════════════════════════════════════════
   CONTACT TRUST STRIP — inline compliance badges
   above / below the contact form
══════════════════════════════════════════════════ */
.contact-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
}
.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--gray-400);
  line-height: 1.4;
}
.contact-trust-item svg {
  color: var(--amber);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   SERVICES CREDIBILITY BAR — slim strip at page end
══════════════════════════════════════════════════ */
.services-credibility {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3.5rem 0;
  background: var(--navy-deep);
}
.services-credibility__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.services-credibility__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.services-credibility__icon {
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 1px;
}
.services-credibility__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-200);
  margin-bottom: 0.2rem;
}
.services-credibility__note {
  font-size: var(--text-xs);
  color: var(--gray-500);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .services-credibility__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .services-credibility__grid { grid-template-columns: 1fr; }
}
