/* ==========================================================================
   Global Standard — Premium Theme Styles
   ========================================================================== */

:root {
  --gs-navy: #0f172a;
  --gs-navy-soft: #1e293b;
  --gs-bg: #fafafa;
  --gs-surface: #ffffff;
  --gs-elevated: #f4f4f5;
  --gs-text: #0a0a0f;
  --gs-muted: #52525b;
  --gs-accent: #2563eb;
  --gs-accent-hover: #1d4ed8;
  --gs-border: #e4e4e7;
  --gs-radius: 12px;
  --gs-radius-lg: 20px;
  --gs-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --gs-shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --gs-font-body: 'Inter', system-ui, sans-serif;
  --gs-font-heading: 'DM Sans', system-ui, sans-serif;
  --gs-container: 1200px;
  --gs-section: clamp(4rem, 8vw, 7rem);
  --gs-header-h: 80px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--gs-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gs-text);
  background: var(--gs-bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gs-accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gs-accent-hover); }

.container {
  width: min(var(--gs-container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.section { padding-block: var(--gs-section); }
.section-alt { background: var(--gs-surface); }

.section-header {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gs-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--gs-font-heading);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gs-navy);
}

.section-desc {
  margin-top: 1rem;
  color: var(--gs-muted);
  font-size: 1.0625rem;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--gs-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gs-accent);
  color: #fff;
  border-color: var(--gs-accent);
}

.btn-primary:hover {
  background: var(--gs-accent-hover);
  border-color: var(--gs-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--gs-shadow);
}

.btn-secondary {
  background: var(--gs-surface);
  color: var(--gs-navy);
  border-color: var(--gs-border);
}

.btn-secondary:hover {
  border-color: var(--gs-navy);
  color: var(--gs-navy);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--gs-header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  border-color: var(--gs-border);
  box-shadow: var(--gs-shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--gs-header-h);
  gap: 1.5rem;
}

.site-logo,
.footer-logo {
  display: flex;
  align-items: center;
  color: var(--gs-navy);
  text-decoration: none;
}

.site-logo img,
.footer-logo img {
  max-height: 48px;
  width: auto;
}

.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text-link {
  text-decoration: none;
  color: inherit;
}

.logo-text {
  font-family: var(--gs-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gs-navy);
  transition: 0.3s;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: var(--gs-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.nav-list a:hover,
.nav-list .current-menu-item > a {
  color: var(--gs-accent);
  background: rgba(37, 99, 235, 0.06);
}

.header-cta { margin-left: 0.5rem; }

.site-main { padding-top: var(--gs-header-h); }

/* Hero Slider */
.hero-slider { position: relative; }

.hero-swiper { width: 100%; }

.hero-slide {
  position: relative;
  min-height: calc(100vh - var(--gs-header-h));
  min-height: calc(100dvh - var(--gs-header-h));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gs-navy) 0%, var(--gs-navy-soft) 100%);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
/*   background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.65) 100%); */
	background: linear-gradient(135deg, rgb(15 23 42 / 22%) 0%, rgba(15, 23, 42, 0.65) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 1;
  padding-block: 4rem;
  max-width: 820px;
  color: #fff;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--gs-font-heading);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

.hero-prev,
.hero-next {
  color: #fff;
}

.hero-prev::after,
.hero-next::after {
  font-size: 1.25rem;
}

/* Hero Intro Strip */
.hero-intro {
  background: var(--gs-surface);
  border-bottom: 1px solid var(--gs-border);
  padding-block: 1.5rem;
}

.hero-intro-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-intro-text {
  font-family: var(--gs-font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gs-navy);
  letter-spacing: -0.01em;
}

.hero-intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.location-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gs-muted);
  background: var(--gs-elevated);
  border-radius: 999px;
  border: 1px solid var(--gs-border);
}

/* Stats */
.stats-section {
  background: var(--gs-navy);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-value {
  font-family: var(--gs-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Logo Marquee */
.logos-section {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}

.logos-section .section-eyebrow {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: gs-marquee 40s linear infinite;
}

.logo-marquee-group {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-inline: 2rem;
}

.logo-item {
  flex-shrink: 0;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.logo-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

@keyframes gs-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-content .btn { margin-top: 1.5rem; }

.about-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-bullets li {
  padding-left: 1.25rem;
  border-left: 3px solid var(--gs-accent);
}

.about-bullets h3 {
  font-family: var(--gs-font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gs-navy);
  margin-bottom: 0.375rem;
}

.about-bullets p {
  font-size: 0.9375rem;
  color: var(--gs-muted);
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.services-grid-archive {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--gs-surface);
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gs-shadow-lg);
}

.service-card-image {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gs-elevated);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-body h3 {
  font-family: var(--gs-font-heading);
  font-size: 1.1875rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.service-card-body h3 a {
  color: var(--gs-navy);
  text-decoration: none;
}

.service-card-body h3 a:hover { color: var(--gs-accent); }

.service-card-body p {
  font-size: 0.9375rem;
  color: var(--gs-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.service-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  background: var(--gs-elevated);
  color: var(--gs-muted);
  border-radius: 999px;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gs-accent);
  text-decoration: none;
}

.service-link:hover { color: var(--gs-accent-hover); }

/* CTA */
.cta-section {
  background: var(--gs-navy);
  color: #fff;
  padding-block: clamp(4rem, 8vw, 6rem);
  text-align: center;
}

.cta-inner {
  max-width: 680px;
}

.cta-inner h2 {
  font-family: var(--gs-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-inner p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

/* Page Hero */
.page-hero {
  position: relative;
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--gs-navy);
  color: #fff;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 40%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.breadcrumbs a:hover { color: #fff; }

.breadcrumbs .sep { margin-inline: 0.5rem; opacity: 0.5; }

.breadcrumbs .current { color: rgba(255, 255, 255, 0.9); }

.page-hero-title {
  font-family: var(--gs-font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-hero-subtitle {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
}

/* Page Layout */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.content-narrow { max-width: 720px; margin-inline: auto; }

.prose {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gs-muted);
}

.prose h2,
.prose h3,
.prose h4 {
  font-family: var(--gs-font-heading);
  color: var(--gs-navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.prose h2 { font-size: 1.75rem; }
.prose h3 { font-size: 1.375rem; }
.prose p { margin-bottom: 1.25rem; }

.prose ul,
.prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose li { margin-bottom: 0.5rem; }

.prose a { text-decoration: underline; text-underline-offset: 2px; }

.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--gs-header-h) + 1.5rem);
}

.sidebar-card {
  background: var(--gs-surface);
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius);
  padding: 1.5rem;
}

.sidebar-card h3,
.sidebar-card h4 {
  font-family: var(--gs-font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gs-navy);
  margin-bottom: 0.75rem;
}

.sidebar-card p {
  font-size: 0.9375rem;
  color: var(--gs-muted);
  margin-bottom: 1rem;
}

.sidebar-card-alt { background: var(--gs-elevated); }

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  border-bottom: 1px solid var(--gs-border);
}

.sidebar-links li:last-child { border-bottom: none; }

.sidebar-links a {
  display: block;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  color: var(--gs-muted);
  text-decoration: none;
}

.sidebar-links a:hover { color: var(--gs-accent); }

/* Service Hero */
.service-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  background: var(--gs-navy);
  color: #fff;
  overflow: hidden;
}

.service-hero-image {
  position: absolute;
  inset: 0;
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 3rem;
}

.service-hero-title {
  font-family: var(--gs-font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.service-hero-subtitle {
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
}

.service-tags-hero { margin-top: 1.25rem; }

.service-tags-hero span {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  background: var(--gs-surface);
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius);
  padding: 1.5rem;
}

.contact-card h3 {
  font-family: var(--gs-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gs-navy);
  margin-bottom: 0.625rem;
}

.contact-card p {
  font-size: 0.9375rem;
  color: var(--gs-muted);
  margin-bottom: 0.375rem;
}

.contact-card a { color: var(--gs-accent); }

.contact-map {
  border-radius: var(--gs-radius);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-wrap {
  background: var(--gs-surface);
  border: 1px solid var(--gs-border);
  border-radius: var(--gs-radius-lg);
  padding: 2rem;
}

.contact-form-wrap h2 {
  font-family: var(--gs-font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gs-navy);
  margin-bottom: 1.5rem;
}

.form-notice {
  padding: 1rem;
  background: var(--gs-elevated);
  border-radius: var(--gs-radius);
  font-size: 0.875rem;
  color: var(--gs-muted);
  margin-bottom: 1rem;
}

/* Contact Form 7 styling */
.wpcf7 form p { margin-bottom: 1rem; }

.wpcf7 label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gs-navy);
  margin-bottom: 0.375rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--gs-border);
  border-radius: 8px;
  background: var(--gs-bg);
  transition: border-color 0.2s;
}

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

.wpcf7 input[type="submit"] {
  display: inline-flex;
  padding: 0.875rem 1.75rem;
  font-family: var(--gs-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  background: var(--gs-accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
}

.wpcf7 input[type="submit"]:hover {
  background: var(--gs-accent-hover);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--gs-radius);
  overflow: hidden;
  background: var(--gs-surface);
  border: 1px solid var(--gs-border);
}

.gallery-link {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-link:hover img { transform: scale(1.05); }

.gallery-item figcaption {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gs-navy);
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gs-muted);
  padding: 3rem;
}

/* Footer */
.site-footer {
  background: var(--gs-navy);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo-text { color: #fff; }

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links h3,
.footer-contact h3 {
  font-family: var(--gs-font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-menu {
  list-style: none;
}

.footer-menu a {
  display: block;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.footer-menu a:hover { color: #fff; }

.footer-contact p {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.footer-contact a { color: rgba(255, 255, 255, 0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.5rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-whatsapp {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid-archive { grid-template-columns: repeat(2, 1fr); }
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: fixed;
    top: var(--gs-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gs-surface);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .primary-nav.is-open { transform: translateX(0); }

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-list a {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .header-cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid,
  .services-grid-archive { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-intro-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
