/* =============================================================
   BEYOND3K LLC — Production CSS  v2.0
   ============================================================= */

:root {
  /* LIGHT THEME (DEFAULT) */
  --bg-primary: #f4f4f4;
  --bg-secondary: #ffffff;
  --bg-surface: #ebebeb;
  --bg-topbar: #e6e6e6;

  --text-primary: #0a0a0a;
  --text-secondary: #555555;
  --text-muted: #aaaaaa;

  --border-color: rgba(0, 0, 0, 0.08);
  --border-heavy: rgba(0, 0, 0, 0.22);

  --accent: #933393;
  --accent-soft: rgba(147, 51, 147, 0.14);

  /* SPACING */
  --space-unit: 8px;
  --space-3x: 24px;
  --space-6x: 48px;
  --space-10x: clamp(20px, 4vw, 52px);
  --space-20x: clamp(32px, 6vw, 80px);
  --space-30x: clamp(48px, 10vw, 112px);

  /* LAYOUT */
  --header-height: 68px;
  --container-max: 1400px;
  --container-pad: clamp(20px, 4vw, 48px);

  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* =============================================================
   RESET
   ============================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.headline-mega {
  font-size: clamp(2.5rem, 8.5vw, 9.5rem);
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--text-primary);
  overflow-wrap: break-word;
}

.headline-mega span {
  color: var(--accent);
}

.headline-xl {
  font-size: clamp(1.875rem, 4.5vw, 4.25rem);
}

.headline-lg {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.eyebrow {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-3x);
}

.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background-color: var(--accent);
  flex-shrink: 0;
}

.text-body-lg {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.72;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 560px;
}

/* =============================================================
   UTILITIES
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.relative {
  position: relative;
}

/* =============================================================
   HAIRLINE GRID
   ============================================================= */
.grid-lines {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: var(--container-max);
  padding: 0 var(--container-pad);
  pointer-events: none;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-line {
  border-right: 1px solid var(--border-color);
}

.grid-line:first-child {
  border-left: 1px solid var(--border-color);
}

/* =============================================================
   HEADER
   ============================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: saturate(110%) blur(12px);
  -webkit-backdrop-filter: saturate(110%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.01) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(255, 255, 255, 0.01) 100%
  );
  opacity: 1;
  z-index: -1;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}



.header {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header::before {
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
}


.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: -1;
  opacity: 0.3;
  transition: opacity 0.6s;
  animation: shineLiquid 12s infinite ease-in-out;
}


.header.scrolled::after {
  opacity: 0.6;
  animation: shineLiquid 6s infinite ease-in-out;
}


@keyframes shineLiquid {
  0% { transform: translateX(-150%) skewX(-20deg); }
  20% { transform: translateX(150%) skewX(-20deg); }
  100% { transform: translateX(150%) skewX(-20deg); }
}



.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: clamp(38px, 4vw, 52px);
  width: auto;
  transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.nav-link {
  font-size: 0.8125rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  transition: color 0.25s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}


.header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.03),
    0 10px 40px -10px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.header.scrolled .nav-link {
  color: #111111;
}

.header.scrolled .nav-link.active {
  color: var(--accent);
}

.header.scrolled .logo img {
  height: 34px;
}




/* =============================================================
   BUTTONS
   ============================================================= */
.btn-editorial {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 5px;
  color: var(--text-primary);
  transition: gap 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.btn-editorial::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-editorial:hover::after {
  transform: scaleX(1);
}

.btn-editorial:hover {
  gap: 18px;
}

/* =============================================================
   SECTIONS
   ============================================================= */
.section-editorial {
  position: relative;
  z-index: 10;
  padding: var(--space-20x) 0;
}

/* =============================================================
   HERO
   ============================================================= */
.hero-center-wrap {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  padding-top: clamp(100px, 10vw, 140px);
  padding-bottom: var(--space-20x);
  overflow: hidden;
}

.hero-3d-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-center-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Hero headline: capped at a reasonable max */
.hero-headline {
  font-size: clamp(3rem, 12vw, 10rem);
  line-height: 0.85;
  margin-bottom: var(--space-6x);
}

.hero-subtext {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.25rem 3rem;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(44px) saturate(210%);
  -webkit-backdrop-filter: blur(44px) saturate(210%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 40px;
  box-shadow: 
    0 20px 45px -15px rgba(147, 51, 147, 0.08),
    0 8px 20px -10px rgba(147, 51, 147, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  line-height: 1.75;
  font-weight: 500;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-subtext:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 35px 80px -15px rgba(147, 51, 147, 0.15),
    0 8px 25px -5px rgba(147, 51, 147, 0.1);
}

/* =============================================================
   TRUST MARQUEE
   ============================================================= */
.trust-marquee {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.1vw, 0.9375rem);
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.trust-marquee span {
  color: var(--accent);
}

/* =============================================================
   ABOUT SECTION
   ============================================================= */
.about-editorial {
  display: grid;
  grid-template-columns: clamp(280px, 33vw, 400px) 1fr;
  gap: clamp(40px, 7vw, 90px);
  padding-top: var(--space-20x);
  position: relative;
  align-items: center;
}

.about-text-block {
  padding-right: var(--space-6x);
  position: relative;
  z-index: 2;
}

/* Images column: clean, no overflow */
.about-images-wrap {
  position: relative;
  height: clamp(360px, 44vh, 500px);
  z-index: 1;
  overflow: hidden;
  /* prevent child bleed */
  border-radius: 4px;
}

.about-img-large {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  height: 90%;
  overflow: hidden;
}

.about-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38%;
  height: 40%;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  padding: 8px;
  z-index: 5;
}

.about-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================================
   STAGGERED SERVICE ITEMS
   ============================================================= */
.services-staggered {
  position: relative;
  padding: var(--space-20x) 0;
}

.service-item-offset {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-20x);
}

.service-item-offset.reversed {
  flex-direction: row-reverse;
}

.service-item-offset .service-img {
  flex: 0 0 36%;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 28px 56px -14px rgba(0, 0, 0, 0.5), 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(6deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s ease;
}

.service-item-offset.reversed .service-img {
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg);
}

.service-item-offset:hover .service-img {
  transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-6px);
  box-shadow: 0 40px 72px -14px rgba(0, 0, 0, 0.6), 0 12px 24px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .service-item-offset .service-img {
  box-shadow: 0 28px 56px -14px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .service-item-offset:hover .service-img {
  box-shadow: 0 40px 72px -14px rgba(0, 0, 0, 0.18), 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* margin logic: opposite sides so there's no gap inconsistency */
.service-item-offset:not(.reversed) .service-img {
  margin-left: 4%;
}

.service-item-offset.reversed .service-img {
  margin-right: 4%;
}

.service-item-offset .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-item-offset:hover .service-img img {
  transform: scale(1.07);
}

.service-item-offset .service-text {
  flex: 1;
  padding: 0 var(--space-10x);
}

/* Service number: decorative, contained */
.service-num {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--text-muted);
  opacity: 0.12;
  position: absolute;
  top: -10%;
  left: -4%;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer-editorial {
  border-top: 1px solid var(--border-color);
  padding: var(--space-20x) 0 var(--space-6x);
  background: var(--bg-secondary);
}

.footer-grid-ed {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-10x);
}

.footer-mega-text {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.footer-links-ed li {
  margin-bottom: 12px;
}

.footer-links-ed a {
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-links-ed a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: var(--space-10x);
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  color: var(--text-muted);
  font-size: 0.8125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 2px 4px;
  border-radius: 4px;
}

.footer-bottom a:hover {
  color: #ffffff;
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--accent-soft);
}

/* =============================================================
   FORMS
   ============================================================= */
.form-ed-group {
  margin-bottom: 32px;
  position: relative;
}

.form-ed-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border-heavy);
  padding: 14px 0 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: 0;
  transition: border-color 0.35s;
  font-family: var(--font-family);
}

.form-ed-input:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.form-ed-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-ed-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 4px;
}

/* Custom Select Dropdown */
.custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
  user-select: none;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 2px solid var(--border-heavy);
  padding: 14px 0 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  background: transparent;
  transition: border-color 0.35s;
}

.custom-select:hover .custom-select-trigger {
  border-bottom-color: var(--accent);
}

.custom-select.open .custom-select-trigger {
  border-bottom-color: var(--accent);
}

.custom-select-trigger svg {
  width: 14px;
  height: 14px;
  opacity: 0.4;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-select.open .custom-select-trigger svg {
  transform: rotate(180deg);
  opacity: 0.8;
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  margin-top: 8px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 8px;
  overflow: hidden;
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.custom-option {
  padding: 14px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: all 0.25s;
}

.custom-option:hover {
  background: var(--accent-soft);
  color: var(--accent);
  padding-left: 24px;
}

.custom-option.selected {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
}

/* =============================================================
   SCROLL ANIMATIONS
   ============================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   MOBILE MENU
   ============================================================= */
.mobile-toggle {
  display: none;
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  padding: 0;
  cursor: pointer;
  box-shadow: 
    0 4px 20px -5px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}


.mobile-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}

.mobile-toggle svg line {
  stroke: var(--text-primary);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-6x) var(--space-6x) var(--space-6x) calc(var(--space-6x) + 4px);
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: clamp(1.5rem, 5.5vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  transition: color 0.25s, padding-left 0.25s;
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  display: block;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--accent);
  padding-left: 8px;
}

/* =============================================================
   SERVICE DETAIL PAGES
   ============================================================= */
.service-detail-hero {
  padding: clamp(130px, 14vw, 200px) 0 clamp(48px, 6vw, 80px);
}

.grid-offset-desc {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 72px);
  margin-top: clamp(40px, 5vw, 72px);
  align-items: start;
}

.huge-image-bleed {
  width: calc(100% + var(--container-pad) * 2);
  margin-left: calc(var(--container-pad) * -1);
  height: clamp(260px, 50vh, 620px);
  margin-top: var(--space-20x);
  margin-bottom: var(--space-20x);
  overflow: hidden;
}

.huge-image-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.12);
}

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 2px solid var(--border-heavy);
  padding-left: 28px;
}

.service-detail-list li {
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  font-weight: 600;
  color: var(--text-primary);
}

.service-detail-list li span {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 3px;
}

/* =============================================================
   CONTACT PAGE
   ============================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: clamp(110px, 12vw, 160px);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  padding-bottom: var(--space-20x);
}

.contact-info-col {
  padding-right: clamp(16px, 3vw, 40px);
  padding-bottom: var(--space-20x);
}

.contact-form-col {
  border-left: 1px solid var(--border-color);
  padding-left: clamp(24px, 4vw, 56px);
  padding-bottom: var(--space-20x);
}

/* Contact detail text — responsive sizes */
.contact-address-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
}

.contact-phone-text {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.contact-email-text {
  font-size: clamp(1rem, 1.8vw, 1.375rem);
  color: var(--text-primary);
}

.map-full {
  width: calc(100% + var(--container-pad) * 2);
  margin-left: calc(var(--container-pad) * -1);
  height: clamp(280px, 45vh, 520px);
  filter: grayscale(1) contrast(1.1);
  overflow: hidden;
}

.map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =============================================================
   SERVICES PAGE
   ============================================================= */
.advantage-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border-color);
}

.advantage-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: var(--space-6x) 0;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
}

.advantage-col h3 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  margin: 0;
}

/* =============================================================
   ABOUT PAGE SPECIFICS
   ============================================================= */
.about-hero-text {
  margin-top: var(--space-10x);
  max-width: 760px;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  border-left: 2px solid var(--accent);
  padding-left: var(--space-6x);
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-values-list {
  margin-bottom: var(--space-10x);
  display: flex;
  flex-direction: column;
  gap: var(--space-10x);
}

/* Form helpers */
.form-split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6x);
}

/* =============================================================
   RESPONSIVE — Breakpoints
   ============================================================= */

/* ---- 1200px ---- */
@media (max-width: 1200px) {
  .nav-links {
    gap: clamp(12px, 1.5vw, 20px);
  }

  .nav-link {
    font-size: 0.75rem;
  }
}

/* ---- 1080px ---- */
@media (max-width: 1080px) {

  /* Show hamburger, hide desktop nav */
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .header .btn-editorial {
    display: none;
  }

  /* Hero */
  .hero-center-wrap {
    min-height: 90svh;
    padding-top: clamp(100px, 12vw, 140px);
  }

  /* About layout */
  .about-editorial {
    grid-template-columns: 1fr;
    padding-top: var(--space-10x);
    gap: var(--space-10x);
  }

  .about-text-block {
    padding-right: 0;
  }

  .about-images-wrap {
    height: clamp(300px, 50vw, 460px);
    width: 100%;
    overflow: hidden;
  }

  .about-img-large {
    width: 100%;
    height: 88%;
  }

  .about-img-small {
    width: 44%;
    height: 38%;
  }

  /* Services stagger → vertical */
  .service-item-offset,
  .service-item-offset.reversed {
    flex-direction: column;
  }

  .service-item-offset .service-img,
  .service-item-offset.reversed .service-img {
    flex: none;
    width: min(90%, 480px);
    margin: 0 auto !important;
    aspect-ratio: 16 / 9;
    transform: perspective(1000px) rotateX(3deg);
  }

  .service-item-offset .service-text,
  .service-item-offset.reversed .service-text {
    padding: var(--space-6x) 0 0;
    width: 100%;
    text-align: left;
  }

  .service-num {
    left: 0;
    top: -8%;
  }

  /* Grid breakdown */
  .grid-offset-desc {
    grid-template-columns: 1fr;
  }

  .footer-grid-ed {
    grid-template-columns: 1fr;
    gap: var(--space-6x);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    padding-top: clamp(100px, 12vw, 140px);
  }

  .contact-info-col {
    padding-right: 0;
    padding-bottom: var(--space-10x);
  }

  .contact-form-col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-color);
    padding-top: var(--space-10x);
  }

  /* Advantages */
  .advantage-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: var(--space-3x) 0;
  }

  /* Services staggered section */
  .services-staggered {
    padding: var(--space-10x) 0;
  }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .grid-lines {
    padding: 0 20px;
  }

  .huge-image-bleed {
    width: calc(100% + 40px);
    margin-left: -20px;
    height: clamp(220px, 40vw, 340px);
    margin-top: var(--space-10x);
    margin-bottom: var(--space-10x);
  }

  .map-full {
    width: calc(100% + 40px);
    margin-left: -20px;
    height: clamp(260px, 45vw, 400px);
  }

  .trust-marquee {
    flex-direction: column;
    gap: 10px;
    font-size: 0.8125rem;
    text-align: center;
    padding: 28px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
  }

  .headline-mega {
    font-size: clamp(2.25rem, 9vw, 5rem);
    line-height: 0.9;
  }

  .headline-xl {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .headline-lg {
    font-size: clamp(1.375rem, 4vw, 1.875rem);
  }

  .section-editorial {
    padding: var(--space-10x) 0;
  }

  .form-split-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mobile-menu a {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    padding: 14px 0;
  }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  .about-img-small {
    display: none;
  }

  .service-item-offset .service-img {
    aspect-ratio: 4/3;
    width: 100%;
  }

  .hero-headline {
    font-size: clamp(2.75rem, 12vw, 5rem);
  }

  .contact-phone-text {
    font-size: clamp(1.375rem, 5vw, 1.875rem);
  }

  .contact-address-text {
    font-size: 1rem;
  }
}

/* =============================================================
   UTILITY OVERRIDES
   ============================================================= */
.section-no-pb {
  padding-bottom: 0 !important;
}

.section-no-pt {
  padding-top: 0 !important;
}

/* =============================================================
   MAINTENANCE MODE
   ============================================================= */
body.maintenance-active .header .nav-links,
body.maintenance-active .header .theme-toggle-wrap,
body.maintenance-active .mobile-menu,
body.maintenance-active .trust-marquee,
body.maintenance-active .section-editorial,
body.maintenance-active .services-staggered,
body.maintenance-active .footer-editorial:not(.maint-footer),
body.maintenance-active .grid-lines,
body.maintenance-active .hero-center-content > div:not(.maintenance-msg) {
  display: none !important;
}

body.maintenance-active .hero-center-wrap {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
}

body.maintenance-active .header {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: none;
}

body.maintenance-active .logo {
  margin: 0 auto;
  transform: scale(1.2);
  transition: transform 0.5s ease;
}

body.maintenance-active .hero-center-content {
  opacity: 0;
  animation: fadeIn 1s forwards 0.5s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

body.maintenance-active .maint-footer {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  text-align: center;
  color: var(--text-muted);
}