/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS — Stargaze / ThemeRex aerospace reference
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c49a2a;
  --gold-hover: #a87e1a;
  --gold-light: #d4ae50;
  --navy: #0d1a2e;
  --navy-mid: #1a2d4a;
  --dark: #1a1a1a;
  --black: #0b0b0b;
  --white: #fff;
  --gray: #6b6b6b;
  --gray-light: #9a9a9a;
  --light-gray: #f5f2eb;
  --marquee-muted: #d4d0c8;
  --display-font: "Lora", Georgia, serif;
  --ui-font: "DM Sans", system-ui, sans-serif;
  --header-h: 88px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }
html.lenis { scroll-behavior: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto; }
body {
  font-family: var(--ui-font);
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ═══ CUSTOM CURSOR ═══ */
html.custom-cursor,
html.custom-cursor body,
html.custom-cursor a,
html.custom-cursor button,
html.custom-cursor .p-card,
html.custom-cursor .review-card {
  cursor: none !important;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cursor.is-active { opacity: 1; }
.cursor.is-hidden { opacity: 0 !important; }

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  transition:
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, background 0.35s ease, width 0.35s ease, height 0.35s ease;
}

.cursor-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ui-font);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

/* Dark sections */
.cursor[data-mode="dark"] .cursor-ring {
  border-color: rgba(255, 255, 255, 0.75);
}
.cursor[data-mode="dark"] .cursor-dot {
  background: var(--gold-light);
}

/* Links & buttons */
.cursor[data-mode="hover"] .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: var(--gold);
  background: rgba(196, 154, 42, 0.12);
}
.cursor[data-mode="hover"] .cursor-dot {
  width: 7px;
  height: 7px;
}

/* Cards — view */
.cursor[data-mode="view"] .cursor-ring {
  width: 68px;
  height: 68px;
  border-color: var(--gold);
  background: rgba(196, 154, 42, 0.08);
}
.cursor[data-mode="view"] .cursor-label {
  opacity: 1;
}

/* Sliders / marquees */
.cursor[data-mode="slider"] .cursor-ring {
  width: 76px;
  height: 44px;
  border-radius: 999px;
  border-color: var(--gold);
  background: rgba(196, 154, 42, 0.1);
}
.cursor[data-mode="slider"] .cursor-dot {
  opacity: 0;
}
.cursor[data-mode="slider"] .cursor-label {
  opacity: 1;
}

/* Hero — subtle large ring */
.cursor[data-mode="hero"] .cursor-ring {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.6);
}
.cursor[data-mode="hero"] .cursor-dot {
  background: var(--gold-light);
}

@media (max-width: 1024px), (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
  html.custom-cursor,
  html.custom-cursor body,
  html.custom-cursor a,
  html.custom-cursor button {
    cursor: auto !important;
  }
}
.reduce-motion .cursor { display: none !important; }
.reduce-motion.custom-cursor,
.reduce-motion.custom-cursor body {
  cursor: auto !important;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ═══ HEADER ═══ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0 48px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.45s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s, opacity 0.45s;
}
.header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.09);
  background: #ffffff;
}
/* Header hides when scrolling down (after hero section) */
.header--hidden {
  transform: translateY(-110%);
  opacity: 0;
}

/* Logo — true center column */
.logo {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}
.logo-img-wrap { display: flex; align-items: center; }
.logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.25s, transform 0.3s;
}
.logo-img:hover { opacity: 0.88; transform: scale(1.03); }

/* Main nav — left column */
.main-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: flex-start;
}
.nav-link {
  font-family: var(--ui-font);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dark);
  padding: 8px 14px;
  position: relative;
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { transform: scaleX(1); }

/* Right actions — right column */
.header-actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.header-cta {
  padding: 10px 24px;
  font-size: 0.78rem;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--dark);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,154,42,0.06);
}

/* Mobile toggle — hidden on desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
  transition: opacity 0.25s;
}
.menu-toggle:hover { opacity: 0.65; }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
}

/* ═══ SIDE NAV ═══ */
.side-nav { position: fixed; inset: 0; z-index: 200; pointer-events: none; }
.side-nav.open { pointer-events: auto; }
.side-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}
.side-nav.open .side-nav-overlay { opacity: 1; }
.side-nav-content {
  position: absolute;
  left: 0;
  top: 0;
  width: min(400px, 92vw);
  height: 100%;
  background: var(--white);
  padding: 72px 36px 40px;
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out);
  overflow-y: auto;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.08);
}
.side-nav.open .side-nav-content { transform: translateX(0); }
.side-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.75rem;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.side-nav-close:hover { opacity: 1; }
.side-nav-links { margin-top: 24px; }
.side-nav-links li { margin-bottom: 20px; }
.side-nav-links a {
  font-size: 1.15rem;
  font-weight: 500;
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
}
.side-nav-links a:hover { color: var(--gold); transform: translateX(4px); }

/* ═══ HERO ═══ */
.hero { padding-top: 0; }
.hero-pin-spacer {
  height: 220vh;
  position: relative;
}
.hero-image-wrapper {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  width: calc(100% - 80px);
  height: calc(100vh - var(--header-h) - 40px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  will-change: width, height, border-radius;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  transition: none;
}
.hero-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,26,46,0.75) 0%, rgba(13,26,46,0.15) 55%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══ HERO OVERLAY TEXT ═══ */
.hero-overlay-text {
  position: absolute;
  bottom: 52px;
  left: 52px;
  right: 52px;
  z-index: 4;
  color: var(--white);
}
.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  background: rgba(13, 26, 46, 0.6);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero-main-title {
  font-family: var(--display-font);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 0.3s, color 0.3s;
}
.hero-link:hover { gap: 12px; color: var(--gold-light); }

/* ═══ CAPTION ═══ */
.hero-caption {
  text-align: center;
  padding: 48px 24px 32px;
}
.hero-caption h6 {
  font-family: var(--ui-font);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ═══ MARQUEE (large bold serif — reference) ═══ */
.marquee-section {
  text-align: center;
  padding: 32px 20px 72px;
}
.marquee-heading {
  font-family: var(--display-font);
  font-size: clamp(2.75rem, 7.5vw, 6.25rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.marquee-line {
  display: block;
}
.marquee-line + .marquee-line { margin-top: 0.08em; }
.marquee-img {
  display: inline-block;
  width: clamp(72px, 12vw, 120px);
  height: clamp(44px, 7vw, 70px);
  object-fit: cover;
  border-radius: var(--radius-md);
  vertical-align: middle;
  margin: 0 0.15em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ═══ SHARED TYPO ═══ */
.label {
  display: block;
  font-family: var(--ui-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 14px;
}
.label.light { color: rgba(255, 255, 255, 0.45); }
.center-label { text-align: center; }

.section-title {
  font-family: var(--display-font);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--dark);
}
.section-title.light {
  color: var(--white);
  font-style: normal;
}
.section-title.center { text-align: center; }

/* ═══ ABOUT ═══ */
.about { padding: 64px 56px 100px; }
.about-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  max-width: 1480px;
  margin: 0 auto;
  align-items: center;
  width: 100%;
}
/* ─── About Images Grid ─── */
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.about-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  cursor: pointer;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.about-img:hover img { transform: scale(1.07); }

/* Hover overlay */
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,26,46,0.82) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.about-img-overlay span {
  color: var(--white);
  font-family: var(--ui-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 4px;
}
.about-img:hover .about-img-overlay { opacity: 1; }

/* Main tall image — left column, spans both rows */
.about-img--main {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 560px;
  min-height: 560px;
  transform: translateY(28px);
}

/* Right column stack */
.about-img-stack {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-img--top  { height: 258px; min-height: 258px; }
.about-img--bottom { height: 258px; min-height: 258px; transform: translateX(18px); }

/* Floating badge */
.about-badge {
  position: absolute;
  bottom: -6px;
  left: 38%;
  background: var(--gold);
  color: var(--black);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 8px 28px rgba(196,154,42,0.35);
  z-index: 3;
  min-width: 84px;
}
.about-badge-num {
  font-family: var(--display-font);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-label {
  font-family: var(--ui-font);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}
.about-desc { color: var(--gray); margin-bottom: 20px; font-size: 1.05rem; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.btn-gold {
  display: inline-block;
  padding: 15px 38px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
  margin-top: 5px;
  box-shadow: 0 8px 24px rgba(196, 154, 42, 0.3);
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196, 154, 42, 0.45);
}

/* ═══ STATS ═══ */
.stats {
  padding: 0 0 20px;
  background: var(--white);
  overflow: hidden;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.stat {
  position: relative;
  padding: 32px 16px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #e0ddd8;
}
.stat-num {
  display: block;
  font-family: var(--display-font);
  font-size: clamp(5.5rem, 11vw, 9.5rem);
  font-weight: 700;
  font-style: normal;
  color: #ebebea;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  will-change: transform;
}
.stat-text {
  font-size: 0.9rem;
  color: #1a1a1a;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══ SERVICES — horizontal rows, copy always visible (reference) ═══ */
/* ═══ SERVICES ═══ */
.services {
  background: var(--navy);
  color: var(--white);
  padding: 100px 48px 120px;
  overflow: hidden;
}
.services-inner { max-width: 1280px; margin: 0 auto; }

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.services-header .section-title.light {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-style: normal;
  margin-bottom: 0;
  max-width: 560px;
  line-height: 1.15;
}

/* ── Split layout ── */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
}

/* ── Service list (left) ── */
.service-list { position: relative; }

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr 52px;
  align-items: start;
  gap: 0 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  position: relative;
  transition: padding-left 0.4s var(--ease-out);
  overflow: hidden;
}

/* Gold left border indicator */
.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0%;
  background: var(--gold);
  transition: height 0.5s var(--ease-out);
}
.service-row.active::before,
.service-row:hover::before { height: 100%; }

.service-row:hover { padding-left: 10px; }
.service-row.active { padding-left: 10px; }

.service-num {
  font-family: var(--ui-font);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  padding-top: 6px;
  letter-spacing: 0.04em;
  transition: color 0.35s;
}
.service-row.active .service-num,
.service-row:hover .service-num { color: var(--gold); }

.service-main { min-width: 0; }

.service-title {
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  font-style: normal;
  color: rgba(255,255,255,0.55);
  margin: 0 0 0 0;
  line-height: 1.25;
  transition: color 0.35s;
}
.service-row.active .service-title,
.service-row:hover .service-title { color: var(--white); }

/* Desc + tags — hidden by default, reveal on active */
.service-desc {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s var(--ease-out), opacity 0.4s, margin 0.4s;
}
.service-row.active .service-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 14px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s 0.1s var(--ease-out), opacity 0.4s 0.1s, margin 0.4s;
}
.service-row.active .service-tags {
  max-height: 60px;
  opacity: 1;
  margin-top: 16px;
}
.service-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid rgba(196,154,42,0.4);
  border-radius: 999px;
  color: var(--gold-light);
}

.service-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  margin-top: 4px;
  transition: border-color 0.35s, background 0.35s, color 0.35s, transform 0.5s var(--ease-out);
}
.service-row.active .service-arrow,
.service-row:hover .service-arrow {
  border-color: var(--gold);
  background: rgba(196,154,42,0.12);
  color: var(--gold);
  transform: rotate(45deg);
}

/* ── Preview panel (right) ── */
.service-preview {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
}

.service-preview-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0s;
  transform: scale(1.06);
}
.service-preview-img.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.65s ease, transform 0.9s var(--ease-out);
}
.service-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-preview-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,26,46,0.2) 0%, rgba(13,26,46,0.7) 100%);
}

.service-preview-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  font-family: var(--display-font);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s 0.25s ease, transform 0.5s 0.25s ease;
}
.service-preview-img.active .service-preview-label {
  opacity: 1;
  transform: translateY(0);
}

/* Progress dots */
.service-dots {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.4s, transform 0.4s;
}
.service-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .service-preview { position: relative; top: 0; height: 340px; order: -1; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 768px) {
  .services { padding: 56px 20px 64px; }
  .services-header { margin-bottom: 36px; padding-bottom: 28px; }
  .services-header .section-title.light { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .service-preview { height: 240px; border-radius: 14px; }
  .service-row {
    grid-template-columns: 36px 1fr 40px;
    gap: 0 12px;
    padding: 22px 0;
  }
  .service-num { font-size: 0.72rem; }
  .service-title { font-size: clamp(1.1rem, 4vw, 1.4rem); }
  .service-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    align-self: center;
  }
  /* On mobile, keep desc/tags readable */
  .service-row.active .service-desc { font-size: 0.92rem; line-height: 1.7; }
  .service-tags span { font-size: 0.68rem; padding: 4px 10px; }
}
@media (max-width: 480px) {
  .service-preview { height: 200px; }
  .service-row { grid-template-columns: 30px 1fr 36px; gap: 0 10px; padding: 18px 0; }
  /* Hide preview on very small screens — content speaks for itself */
  .service-preview { display: none; }
  .services-layout { gap: 0; }
}

/* ═══ REVIEWS / TESTIMONIALS ═══ */
.reviews {
  background: #f5f3ef;
  padding: 108px 0 120px;
  overflow: hidden;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 72px;
  padding: 0 56px;
}
.reviews-header-left .label { margin-bottom: 12px; }
.reviews-header-left .section-title {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--dark);
  line-height: 1.15;
}
.reviews-sub {
  max-width: 320px;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  padding-bottom: 8px;
}

/* ── Marquee rows ── */
.reviews-row {
  position: relative;
  display: flex;
  overflow: hidden;
  margin-bottom: 16px;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.reviews-row:last-child { margin-bottom: 0; }

.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  align-items: stretch;
}

/* ── Review card ── */
.review-card {
  flex-shrink: 0;
  width: 380px;
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  cursor: default;
  position: relative;
}
.review-card:hover {
  box-shadow: 0 14px 48px rgba(0,0,0,0.12), 0 0 0 1.5px rgba(196,154,42,0.3);
  transform: translateY(-5px);
}

/* Gold top accent bar */
.review-card::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  flex-shrink: 0;
}

/* Alt — dark card */
.review-card--alt {
  background: var(--navy);
  border-color: rgba(255,255,255,0.07);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.review-card--alt:hover {
  box-shadow: 0 14px 48px rgba(0,0,0,0.28), 0 0 0 1.5px rgba(196,154,42,0.3);
}
.review-card--alt::before {
  background: linear-gradient(90deg, var(--gold) 0%, rgba(196,154,42,0.35) 100%);
}

/* Card inner padding wrapper */
.review-card-body {
  padding: 28px 30px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Large watermark quote behind the text */
.review-card-body::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--display-font);
  font-size: 9rem;
  line-height: 1;
  color: rgba(196,154,42,0.11);
  pointer-events: none;
  user-select: none;
}
.review-card--alt .review-card-body::before {
  color: rgba(196,154,42,0.18);
}

/* Stars at top */
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars span {
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.review-text {
  font-family: var(--display-font);
  font-size: 1rem;
  line-height: 1.85;
  color: #1e1e1e;
  flex: 1;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}
.review-card--alt .review-text { color: rgba(255,255,255,0.78); }

/* Author row */
.review-author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.review-card--alt .review-author { border-top-color: rgba(255,255,255,0.1); }

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ui-font);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(196,154,42,0.3);
}

.review-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.review-name {
  font-family: var(--ui-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}
.review-card--alt .review-name { color: #fff; }
.review-role {
  font-family: var(--ui-font);
  font-size: 0.78rem;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}
.review-card--alt .review-role { color: rgba(255,255,255,0.42); }

/* Remove old qmark svg — replaced by CSS watermark */
.review-qmark { display: none; }

@media (max-width: 768px) {
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 0 24px; }
  .reviews-sub { max-width: 100%; }
  .review-card { width: 300px; }
  .review-card-body { padding: 22px 22px 20px; }
}

/* ═══ PRODUCTS / CAPABILITIES ═══ */
.products {
  background: var(--navy);
  color: var(--white);
  padding: 100px 56px 110px;
  position: relative;
  overflow: hidden;
}
.products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.5;
}
.products-inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
}

.products-header {
  margin-bottom: 52px;
  max-width: 640px;
}
.products-header .section-title {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.12;
}
.products-sub {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.48);
  max-width: 520px;
}

.products-bento {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-template-rows: minmax(280px, 36vh) minmax(280px, 36vh);
  gap: 20px;
}

.p-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  display: block;
  min-height: 0;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}
.p-card:hover {
  border-color: rgba(196,154,42,0.35);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  transform: translateY(-4px);
}
.p-large { grid-row: span 2; }

.p-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.p-card:hover img { transform: scale(1.06); }

.p-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(13,26,46,0.15) 0%,
    rgba(13,26,46,0.35) 40%,
    rgba(5,10,18,0.88) 100%
  );
  transition: background 0.5s ease;
  z-index: 1;
}
.p-card:hover .p-card-overlay {
  background: linear-gradient(
    165deg,
    rgba(13,26,46,0.1) 0%,
    rgba(13,26,46,0.45) 35%,
    rgba(5,10,18,0.94) 100%
  );
}

.p-card-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--display-font);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.07);
  z-index: 2;
  transition: color 0.45s ease, transform 0.45s ease;
  user-select: none;
  pointer-events: none;
}
.p-card:hover .p-card-num {
  color: rgba(196,154,42,0.2);
  transform: translateY(-3px);
}

.p-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 26px 26px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.p-card-tag {
  display: inline-block;
  font-family: var(--ui-font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(196,154,42,0.4);
  border-radius: 999px;
  padding: 4px 11px;
  margin-bottom: 12px;
}

.p-card-title {
  font-family: var(--display-font);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0;
  line-height: 1.25;
}

.p-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--ui-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s, gap 0.3s;
}
.p-card:hover .p-card-link {
  color: var(--gold);
  gap: 10px;
}
.p-card-link svg { transition: transform 0.3s; }
.p-card:hover .p-card-link svg { transform: translateX(2px); }

/* ═══ TESTIMONIALS ═══ */
.testimonials {
  background: var(--navy);
  color: var(--white);
  padding: 80px 40px 72px;
  text-align: center;
}
.testimonials-inner { max-width: 720px; margin: 0 auto; position: relative; }
.testimonial-slides {
  position: relative;
  margin-bottom: 28px;
  /* height is set by JS to match tallest slide; fallback below */
  min-height: 160px;
}
.t-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  padding-bottom: 4px;
}
.t-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.t-slide p {
  font-family: var(--display-font);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
}
.t-slide h4 {
  font-family: var(--ui-font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.t-role {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-top: 4px;
  display: block;
}
.t-avatars {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.t-av {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.38;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.35s, border-color 0.35s, transform 0.35s var(--ease-out);
}
.t-av.active {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.08);
}
.t-next {
  color: var(--white);
  padding: 10px;
  border-radius: 50%;
  transition: color 0.25s, background 0.25s, transform 0.25s;
}
.t-next:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(2px);
}

/* ═══ BESTSELLERS + hover overlay (reference Woo layout) ═══ */
/* ═══ OUR APPROACH ═══ */
.approach {
  padding: 100px 48px 110px;
  background: var(--white);
}

.approach-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1280px;
  margin: 0 auto 52px;
}
.approach-header .section-title { margin-bottom: 0; }

.view-more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s, gap 0.3s;
}
.view-more:hover { color: var(--gold); gap: 14px; }

/* ── Cards grid ── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.approach-card {
  position: relative;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  /* Subtle scale on hover via transform */
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.approach-card:hover { transform: scale(1.015); }

/* Full-bleed background image */
.approach-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}
.approach-card:hover .approach-card-bg { transform: scale(1.07); }

/* Dark gradient overlay */
.approach-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,12,24,0.92) 0%,
    rgba(5,12,24,0.5)  45%,
    rgba(5,12,24,0.15) 100%
  );
  transition: background 0.5s ease;
}
.approach-card:hover .approach-card-overlay {
  background: linear-gradient(
    to top,
    rgba(5,12,24,0.96) 0%,
    rgba(5,12,24,0.6)  50%,
    rgba(5,12,24,0.2)  100%
  );
}

/* Step number — large watermark */
.approach-num {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--display-font);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  transition: color 0.45s, transform 0.45s;
  z-index: 2;
  user-select: none;
}
.approach-card:hover .approach-num {
  color: rgba(196,154,42,0.22);
  transform: scale(1.1) translateY(-4px);
}

/* Content at the bottom */
.approach-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 30px;
  z-index: 3;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.approach-tag {
  display: inline-block;
  font-family: var(--ui-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(196,154,42,0.45);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.approach-title {
  font-family: var(--display-font);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0;
  line-height: 1.3;
}

/* Desc + CTA hidden by default, slides up on hover */
.approach-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s, margin 0.4s;
}
.approach-card:hover .approach-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
}

.approach-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s 0.06s var(--ease-out), opacity 0.4s 0.1s, margin 0.4s;
}
.approach-card:hover .approach-cta {
  max-height: 40px;
  opacity: 1;
  margin-top: 16px;
}
.approach-cta:hover { color: var(--gold-light); gap: 10px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-card:last-child { grid-column: span 2; height: 380px; }
}
@media (max-width: 640px) {
  .approach { padding: 72px 20px 80px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-card { height: 400px; }
  .approach-card:last-child { grid-column: span 1; height: 400px; }
  .approach-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ═══ CONTACT ═══ */
.contact { padding: 88px 40px; text-align: center; }
.contact-inner { max-width: 900px; margin: 0 auto; }
.contact-sub { color: var(--gray); margin-bottom: 40px; font-style: normal; font-family: var(--ui-font); }
.contact-boxes { display: flex; gap: 20px; }
.c-box {
  flex: 1;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: left;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  box-shadow: 0 4px 0 transparent;
}
.c-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.c-icon { margin-bottom: 22px; color: var(--dark); opacity: 0.85; }
.c-box h4 {
  font-family: var(--ui-font);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.c-box p { color: var(--gray); font-size: 1.2rem; }

/* ═══ TICKER ═══ */
.ticker { overflow: hidden; padding: 56px 0 64px; background: var(--white); }
.ticker-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.ticker-track span {
  font-family: var(--display-font);
  font-size: clamp(3.25rem, 8vw, 7rem);
  font-weight: 700;
  font-style: normal;
  color: #e8e4de;
  flex-shrink: 0;
  padding-right: 0.35em;
}

/* ═══ COLLABORATE / NEWSLETTER ═══ */
.newsletter {
  position: relative;
  background: #f5f2ec;
  padding: 110px 56px 120px;
  overflow: hidden;
  color: var(--dark);
}

/* Subtle dot-grid background */
.nl-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(196,154,42,0.22) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.newsletter-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  z-index: 1;
}

.nl-top {
  text-align: center;
  margin-bottom: 52px;
}

.nl-eyebrow {
  display: inline-block;
  font-family: var(--ui-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-hover);
  border: 1px solid rgba(196,154,42,0.5);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 24px;
  background: rgba(196,154,42,0.08);
}

.nl-title {
  font-family: var(--display-font);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
.nl-title em {
  font-style: italic;
  color: var(--gold);
}

.nl-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
}

/* CTA row */
.nl-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nl-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 620px;
  flex-wrap: wrap;
}

.nl-input-wrap {
  flex: 1;
  min-width: 240px;
  position: relative;
  display: flex;
  align-items: center;
}
.nl-input-icon {
  position: absolute;
  left: 18px;
  color: #aaa;
  pointer-events: none;
  flex-shrink: 0;
}
.nl-form input {
  width: 100%;
  padding: 16px 18px 16px 46px;
  background: #fff;
  border: 1.5px solid #ddd8cf;
  border-radius: 12px;
  color: var(--dark);
  font-family: var(--ui-font);
  font-size: 0.9rem;
  outline: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nl-form input::placeholder { color: #b0aaa0; }
.nl-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,42,0.12);
}

.nl-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 12px;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.nl-submit svg { transition: transform 0.3s; }
.nl-submit:hover svg { transform: translateX(4px); }

/* Trust indicators */
.nl-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.nl-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #9a9490;
}
.nl-trust-item svg { opacity: 0.55; flex-shrink: 0; color: var(--gold-hover); }

@media (max-width: 768px) {
  .newsletter { padding: 80px 24px 90px; }
  .nl-form { flex-direction: column; }
  .nl-input-wrap { min-width: 100%; }
  .nl-submit { width: 100%; justify-content: center; }
  .nl-trust { gap: 16px; }
}

/* ═══ FOOTER ═══ */
.footer {
  background: #05101e;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  /* Gold top accent */
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
}

/* Main 4-column grid */
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 56px 72px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo img {
  height: 95px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.48);
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,154,42,0.1);
}

/* Nav columns */
.footer-col { display: flex; flex-direction: column; gap: 20px; }
.footer-col-title {
  font-family: var(--ui-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(196,154,42,0.2);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

/* Contact column */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.footer-contact-list svg { flex-shrink: 0; margin-top: 3px; opacity: 0.5; }
.footer-contact-list a { color: rgba(255,255,255,0.5); transition: color 0.25s; }
.footer-contact-list a:hover { color: var(--gold); }

.footer-cta {
  display: inline-block;
  margin-top: 6px;
  padding: 13px 28px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--ui-font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s;
  align-self: flex-start;
}
.footer-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 56px;
  background: rgba(0,0,0,0.2);
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.32);
  transition: color 0.25s;
}
.footer-bottom-links a:hover { color: var(--gold); }
.footer-credit {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}
.footer-credit span { color: rgba(255,255,255,0.42); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 40px 48px; }
}
@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 40px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 16px; }
}

/* ── old footer refs kept for transition ── */
.f-copy { display: none; }
.f-links { display: none; }
.f-right { display: none; }
.f-contact-bar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  font-weight: 600;
  font-size: 0.82rem;
}
.f-contact-bar a { transition: color 0.25s; }
.f-contact-bar a:hover { color: var(--gold); }

/* ═══ SCROLL TOP ═══ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s, transform 0.35s var(--ease-out), box-shadow 0.35s;
  box-shadow: 0 8px 24px rgba(196, 154, 42, 0.45);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); }

/* ═══ REDUCED MOTION (class from JS) ═══ */
.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Mobile · Tablet · Laptop · Desktop
   ═══════════════════════════════════════════════ */

/* ── Laptop / small desktop (≤ 1280px) ── */
@media (max-width: 1280px) {
  .about-inner { max-width: 100%; gap: 56px; }
  .footer-main { gap: 40px; padding: 72px 40px 60px; }
  .services { padding: 80px 36px 100px; }
  .approach { padding: 80px 36px 90px; }
  .newsletter { padding: 90px 40px 100px; }
  .reviews-header { padding: 0 40px; }
}

/* ── Tablet landscape (≤ 1024px) ── */
@media (max-width: 1024px) {
  :root { --header-h: 76px; }

  /* Header */
  .header { padding: 0 28px; }
  .logo-img { height: 62px; }
  .nav-link { font-size: 0.82rem; padding: 8px 10px; }
  .header-cta { display: none; }

  /* Hero */
  .hero-pin-spacer { height: 200vh; }
  .hero-image-wrapper {
    width: calc(100% - 56px);
    height: calc(100vh - var(--header-h) - 32px);
    top: calc(var(--header-h) + 16px);
  }
  .hero-overlay-text { bottom: 40px; left: 40px; right: 40px; }
  .hero-main-title { font-size: clamp(1.8rem, 4vw, 2.8rem); }

  /* About */
  .about { padding: 60px 36px 90px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; max-width: 100%; }
  .about-img--main { height: 460px; min-height: 460px; }

  /* Stats */
  .stats-row { max-width: 100%; }

  /* Services */
  .services { padding: 80px 36px 90px; }
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .service-preview { position: relative; top: 0; height: 360px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* Products */
  .products { padding: 80px 36px 90px; }
  .products-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(260px, 32vh) minmax(260px, 32vh) auto;
  }
  .p-large { grid-row: span 2; }

  /* Reviews */
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 52px; padding: 0 36px; }

  /* Approach */
  .approach { padding: 80px 36px 90px; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-card:last-child { grid-column: span 2; height: 380px; }
  .approach-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Contact */
  .contact { padding: 72px 36px; }

  /* Newsletter */
  .newsletter { padding: 80px 36px 90px; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 36px 48px; }
  .footer-bottom { padding: 18px 36px; }
}

/* ── Tablet portrait (≤ 768px) ── */
@media (max-width: 768px) {
  :root { --header-h: 68px; }

  /* Header — hamburger */
  .header { grid-template-columns: auto 1fr auto; padding: 0 20px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; grid-column: 1; }
  .logo { grid-column: 2; padding: 0 8px; }
  .logo-img { height: 52px; }
  .header-actions { grid-column: 3; }
  .header-cta { display: none; }

  /* Hero */
  .hero-pin-spacer { height: 180vh; }
  .hero-image-wrapper {
    width: calc(100% - 28px);
    border-radius: 14px;
    top: calc(var(--header-h) + 10px);
    height: calc(100vh - var(--header-h) - 24px);
  }
  .hero-overlay-text { bottom: 28px; left: 28px; right: 28px; }
  .hero-main-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .hero-tag { font-size: 0.65rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* About */
  .about { padding: 48px 20px 80px; }
  .about-inner { gap: 40px; }
  .about-images { grid-template-columns: 1fr; gap: 12px; }
  .about-img--main { grid-column: 1; grid-row: auto; height: 280px; min-height: 280px; transform: none; }
  .about-img-stack { grid-column: 1; flex-direction: row; gap: 10px; }
  .about-img--top, .about-img--bottom { height: 180px; min-height: 180px; }
  .about-img--bottom { transform: none; }
  .about-badge { left: 50%; transform: translateX(-50%); bottom: -18px; }

  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: clamp(3.2rem, 16vw, 5.5rem); }
  .stat:nth-child(2)::after { display: none; }
  .stat { padding: 24px 12px 32px; }

  /* Services */
  .services { padding: 64px 20px 72px; }
  .service-row { grid-template-columns: 40px 1fr 36px; gap: 0 12px; padding: 24px 0; }
  .service-preview { height: 260px; border-radius: 12px; }

  /* Products */
  .products { padding: 64px 20px 72px; }
  .products-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .p-large { grid-row: span 1; min-height: 340px; }
  .p-card { min-height: 260px; }
  .p-card-num { font-size: 2.5rem; }

  /* Reviews */
  .reviews { padding: 72px 0 80px; }
  .reviews-header { padding: 0 20px; margin-bottom: 40px; gap: 12px; }
  .reviews-sub { max-width: 100%; }
  .review-card { width: 300px; }
  .review-card-body { padding: 22px 20px 20px; }

  /* Approach */
  .approach { padding: 64px 20px 72px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-card { height: 380px; }
  .approach-card:last-child { grid-column: span 1; height: 380px; }
  .approach-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 36px; }

  /* Testimonials */
  .testimonials { padding: 56px 20px 56px; }
  .testimonial-slides { min-height: 0; }
  .t-slide p { font-size: 1rem; line-height: 1.8; }
  .t-av { width: 48px; height: 48px; }
  .t-avatars { gap: 8px; }

  /* Contact */
  .contact { padding: 56px 20px; }
  .contact-boxes { flex-direction: column; }

  /* Ticker */
  .ticker { padding: 40px 0 48px; }

  /* Marquee heading */
  .marquee-heading { gap: 12px; }

  /* Newsletter */
  .newsletter { padding: 64px 20px 72px; }
  .nl-top { align-items: flex-start; text-align: left; }
  .nl-form { flex-direction: column; }
  .nl-input-wrap { min-width: 100%; }
  .nl-submit { width: 100%; justify-content: center; }
  .nl-trust { gap: 14px; justify-content: flex-start; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 20px 40px; }
  .footer-bottom { padding: 16px 20px; flex-wrap: wrap; gap: 10px; }
  .footer-logo img { height: 48px; }
}

/* ── Mobile large (≤ 600px) ── */
@media (max-width: 600px) {
  /* Section padding normalise */
  .about, .services, .products, .approach, .testimonials,
  .reviews, .contact, .newsletter { padding-left: 16px; padding-right: 16px; }

  /* Hero text smaller */
  .hero-main-title { font-size: clamp(1.4rem, 6vw, 2rem); line-height: 1.25; }
  .hero-sub { font-size: 0.85rem; }

  /* About badge hidden on very small layout */
  .about-badge { display: none; }

  /* Stats single row on very small, else 2-col */
  .stat-num { font-size: clamp(2.8rem, 17vw, 5rem); }

  /* Services */
  .service-row { grid-template-columns: 36px 1fr 32px; gap: 0 10px; padding: 20px 0; }
  .service-preview { height: 220px; }

  /* Reviews card smaller */
  .review-card { width: 270px; }

  /* Approach cards */
  .approach-card { height: 340px; }
  .approach-num { font-size: 3.5rem; }

  /* Contact */
  .c-box h4 { font-size: 1.5rem; }
  .c-box p { font-size: 1rem; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 16px 32px; }
  .footer-bottom { padding: 14px 16px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 14px; }
}

/* ── Mobile small (≤ 420px) ── */
@media (max-width: 420px) {
  :root { --header-h: 62px; }

  .logo-img { height: 44px; }

  .hero-main-title { font-size: clamp(1.2rem, 6.5vw, 1.7rem); }
  .hero-overlay-text { bottom: 20px; left: 16px; right: 16px; }
  .hero-image-wrapper { width: calc(100% - 20px); }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: clamp(2.4rem, 18vw, 4rem); }

  .section-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }

  .review-card { width: 250px; }

  .footer-logo img { height: 40px; }
  .footer-main { padding: 36px 16px 28px; }
}
