/* ============================================================
   AS Facility Services — Enterprise Stylesheet
   White canvas · Navy + Gold · League Spartan + Plus Jakarta Sans
   ============================================================ */

:root {
  --white: #ffffff;
  --paper: #f6f7f9;
  --paper-2: #eef0f4;
  --line: #e4e7ee;
  --line-strong: #d5dae3;

  --navy: #0a244d;
  --navy-rgb: 10, 36, 77;
  --navy-deep: #06162f;
  --navy-soft: #14325f;
  --navy-mist: #f3f6fb;

  --gold: #c4a15a;
  --gold-rgb: 196, 161, 90;
  --gold-deep: #b58d3d;
  --gold-soft: #f4ead4;

  --ink: #3a4454;
  --muted: #6b7585;
  --heading: #0a244d;

  --ff-heading: "League Spartan", system-ui, sans-serif;
  --ff-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --ff-script: "Great Vibes", cursive;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.0625rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: clamp(1.75rem, 3vw, 2.25rem);
  --fs-4xl: clamp(2.25rem, 5vw, 3.75rem);
  --fs-5xl: clamp(2.6rem, 6.2vw, 4.6rem);

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 7rem;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(10, 36, 77, 0.05);
  --shadow-md: 0 8px 24px rgba(10, 36, 77, 0.08);
  --shadow-lg: 0 18px 50px rgba(10, 36, 77, 0.12);
  --shadow-gold: 0 10px 28px rgba(196, 161, 90, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.2s var(--ease);
  --t-base: 0.35s var(--ease);
  --t-slow: 0.7s var(--ease);

  --container: 1180px;
  --header-h: 84px;
  --mobile-bar-h: 64px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

main,
.hero,
.section,
.marquee,
.cta-band,
.site-footer,
.site-header,
.mobile-cta {
  max-width: 100%;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  color: var(--heading);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
}

::selection {
  background: var(--navy);
  color: var(--white);
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 1.5rem;
  box-sizing: border-box;
}

.container-wide {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: 1.5rem;
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.55rem;
  border-radius: var(--radius-full);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-base), color var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-soft);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-deep); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-full { width: 100%; }

/* ===== Preloader ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  background: var(--white);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
  animation: hidePreloader 3.2s var(--ease) forwards;
}
@keyframes hidePreloader {
  0%, 72% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  display: grid;
  place-items: center;
  gap: 1.25rem;
  text-align: center;
}
.preloader-ring {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 2px solid var(--line);
  border-top-color: var(--navy);
  border-right-color: var(--gold);
  animation: spin 1s linear infinite;
  display: grid;
  place-items: center;
}
.preloader-ring img {
  width: 58px;
  height: auto;
  animation: spin 1s linear infinite reverse;
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
}
.preloader-label {
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: transform 0.35s var(--ease), background var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.site-header.is-hidden {
  transform: translate3d(0, -100%, 0);
  box-shadow: none;
  pointer-events: none;
}
.header-inner {
  height: var(--header-h);
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-sizing: border-box;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  height: 64px;
  width: auto;
  background: transparent;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 0.85rem;
  font-family: var(--ff-heading);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }

.nav-drop {
  position: relative;
  display: flex;
  align-items: center;
  align-self: center;
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  padding: 0.55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--t-base);
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-drop-menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.nav-drop-menu a:hover { background: var(--navy-mist); color: var(--gold-deep); }

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

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: var(--t-fast);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile drawer ===== */
.drawer {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1100;
  background: var(--navy-deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem calc(2rem + var(--safe-bottom));
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.drawer.is-open { transform: none; }
.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.drawer-top img {
  height: 52px;
  width: auto;
  background: var(--white);
  padding: 0.3rem 0.5rem;
  border-radius: 10px;
}
.drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}
.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.drawer a {
  font-family: var(--ff-heading);
  font-size: 1.55rem;
  font-weight: 700;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.drawer .sub a {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding-left: 0.5rem;
}
.drawer-cta { margin-top: auto; }

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}
.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media img {
  transform: scale(1.06);
  animation: kenburns 18s var(--ease) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 22, 47, 0.86) 0%, rgba(10, 36, 77, 0.62) 48%, rgba(10, 36, 77, 0.28) 100%),
    linear-gradient(180deg, rgba(6, 22, 47, 0.2) 0%, rgba(6, 22, 47, 0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-h) + 3.5rem);
  padding-bottom: 7rem;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: end;
}
.kicker {
  font-family: var(--ff-script);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero h1 {
  color: var(--white);
  font-size: var(--fs-5xl);
  max-width: 12ch;
  margin-bottom: 1.15rem;
}
.hero h1 span { color: var(--gold); }
.hero-lead {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  margin-bottom: 1.8rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.hero-meta strong {
  display: block;
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}
.hero-portrait {
  justify-self: end;
  width: min(100%, 420px);
  position: relative;
}
.hero-portrait img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(196, 161, 90, 0.55);
}
.portrait-chip {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: var(--white);
  color: var(--navy);
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  max-width: 210px;
}
.portrait-chip span {
  display: block;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.95rem;
}
.portrait-chip small { color: var(--muted); font-size: 0.78rem; }
.scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: auto;
  right: 2rem;
  transform: none;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
}
.scroll-hint i {
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.scroll-hint i::after {
  content: "";
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: mouse 1.4s var(--ease) infinite;
}
@keyframes mouse {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 16px; }
}

/* ===== Sections ===== */
.section { padding: var(--space-4xl) 0; }
.section-paper { background: var(--paper); }
.section-navy {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
}
.section-navy h2, .section-navy h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ff-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 {
  font-size: var(--fs-4xl);
  margin-bottom: 0.9rem;
}
.section-head h2 em,
.gold {
  color: var(--gold-deep);
  font-style: normal;
}
.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

/* ===== Intro split ===== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split-copy h2 { font-size: var(--fs-4xl); margin-bottom: 1rem; }
.split-copy p { margin-bottom: 1rem; }
.checklist {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 1.8rem;
}
.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--navy);
  font-weight: 600;
}
.checklist svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--gold-deep);
}
.photo-stack {
  position: relative;
  min-height: 460px;
}
.photo-stack .main {
  width: 86%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-left: auto;
  box-shadow: var(--shadow-lg);
}
.photo-stack .accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.gold-frame {
  position: absolute;
  right: -10px;
  top: 24px;
  width: 180px;
  height: 180px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  z-index: -1;
}

/* ===== Service cards ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-grid > *,
.benefit-grid > *,
.footer-grid > *,
.split > *,
.hero-content > *,
.contact-grid > * {
  min-width: 0;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card .thumb {
  aspect-ratio: 4 / 3.1;
  overflow: hidden;
  position: relative;
}
.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-card:hover .thumb img { transform: scale(1.08); }
.service-card .thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(6, 22, 47, 0.35));
}
.service-card .body {
  padding: 1.25rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}
.service-card p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 1.1rem;
  flex: 1;
}
.link-arrow {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.link-arrow svg { transition: transform var(--t-fast); }
.service-card:hover .link-arrow { color: var(--gold-deep); }
.service-card:hover .link-arrow svg { transform: translateX(4px); }

/* ===== Benefits ===== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.benefit {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem 1.5rem;
  transition: var(--t-base);
}
.benefit:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.benefit h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.benefit p { color: var(--muted); font-size: 0.95rem; }

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: 1.1rem 0;
  border-block: 1px solid rgba(196, 161, 90, 0.35);
}
.marquee-track {
  display: flex;
  gap: 2.8rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--ff-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
}
.marquee-track span { color: var(--gold); padding: 0 0.4rem; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===== Coverage ===== */
.coverage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.coverage-photo {
  position: relative;
  min-height: 320px;
}
.coverage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.coverage-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,22,47,0.1), rgba(6,22,47,0.55));
}
.coverage-copy {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  padding: 3rem 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.coverage-copy h2 { color: var(--white); font-size: var(--fs-3xl); margin-bottom: 1rem; }
.coverage-copy h2 span { color: var(--gold); }
.pin {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
  color: var(--white);
}
.pin svg { color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }

/* ===== CTA band ===== */
.cta-band {
  background: var(--navy-deep);
  color: var(--white);
  padding: 3.4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(196, 161, 90, 0.18);
  border-radius: 50%;
  right: -80px;
  top: -180px;
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-inner h2 {
  color: var(--white);
  font-size: var(--fs-3xl);
  max-width: 18ch;
}
.cta-inner p { color: rgba(255,255,255,0.75); margin-top: 0.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ===== Page hero ===== */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding-top: var(--header-h);
}
.page-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,22,47,0.35), rgba(6,22,47,0.78));
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 4.5rem;
  padding-bottom: 3.2rem;
  padding-inline: 1.5rem;
}
.crumbs {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.8rem;
}
.crumbs a:hover { color: var(--gold); }
.page-hero h1 {
  color: var(--white);
  font-size: var(--fs-4xl);
  max-width: 16ch;
}

/* ===== Scope / details ===== */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.scope-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.1rem;
  align-items: start;
}
.scope-card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
}
.scope-card h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.scope-card p, .scope-card li { color: var(--muted); font-size: 0.94rem; }
.scope-card ul { margin-top: 0.5rem; display: grid; gap: 0.3rem; }
.scope-card li::before {
  content: "– ";
  color: var(--gold-deep);
}

.feature-list {
  display: grid;
  gap: 1.5rem;
}
.feature-item h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.feature-item p { color: var(--muted); }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.contact-card {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
}
.contact-card h2 { color: var(--white); margin-bottom: 0.8rem; }
.contact-lines {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.6rem;
}
.contact-lines a,
.contact-lines p {
  display: flex;
  gap: 0.85rem;
  color: var(--white);
  align-items: flex-start;
}
.contact-lines svg { color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
.contact-lines small { display: block; color: rgba(255,255,255,0.6); font-size: 0.78rem; }
.map-wrap {
  margin-top: 1.4rem;
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
  border: 1px solid rgba(255,255,255,0.12);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.form-panel h3 { margin-bottom: 0.4rem; }
.form-panel > p { color: var(--muted); margin-bottom: 1.4rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-family: var(--ff-heading);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  min-height: 48px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--navy);
}
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 3.25rem 0 1.35rem;
  border-top: 3px solid var(--gold);
  width: 100%;
  overflow-x: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr) minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 2rem 1.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand img {
  height: 62px;
  width: auto;
  margin-bottom: 0.85rem;
  background: var(--white);
  padding: 0.35rem 0.55rem;
  border-radius: 10px;
}
.footer-brand p { max-width: 34ch; line-height: 1.65; }
.site-footer h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.78); overflow-wrap: anywhere; }
.site-footer a:hover { color: var(--gold); }
.site-footer li { margin-bottom: 0.15rem; }
.site-footer li a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}
.footer-contact li,
.footer-contact p {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  line-height: 1.45;
}
.footer-contact svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  color: var(--gold);
}
.footer-bottom {
  padding: 1.15rem 0.25rem 0;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer-bottom span { color: var(--gold-soft); }

/* ===== Utilities ===== */
.back-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 900;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--t-base);
  box-shadow: var(--shadow-md);
}
.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  background: var(--navy-deep);
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(196, 161, 90, 0.35);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transform: none;
}
.mobile-cta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 56px;
  padding: 0.45rem 0.3rem 0.55rem;
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-tap-highlight-color: transparent;
}
.mobile-cta a:nth-child(2) { background: var(--gold); color: var(--navy-deep); }
.mobile-cta svg { width: 18px; height: 18px; }
body.is-locked .mobile-cta {
  visibility: hidden;
  pointer-events: none;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-left { transform: translate3d(-18px, 0, 0); }
.reveal-right { transform: translate3d(18px, 0, 0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.not-found {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 4rem) 1.5rem 4rem;
}
.not-found h1 { font-size: var(--fs-5xl); margin-bottom: 0.6rem; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero-content,
  .split,
  .split.reverse,
  .coverage,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-portrait { display: none; }
  .hero { min-height: 88vh; }
  .hero-content { padding-bottom: 3.5rem; padding-inline: 1.5rem; }
  .page-hero .container { padding-inline: 1.5rem; }
  .container, .container-wide, .header-inner { padding-inline: 1.5rem; }
  .scroll-hint { display: none; }
  .photo-stack { min-height: 0; overflow: hidden; }
  .photo-stack .main { width: 100%; margin: 0; height: 340px; }
  .photo-stack .accent { width: 44%; height: 180px; }
  .gold-frame { display: none; }
  .coverage-photo { min-height: 280px; height: 280px; }
}

@media (max-width: 860px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .mobile-cta { display: grid; }
  body { padding-bottom: 0; }
  .section { padding: 4rem 0; }
  .hero-media img { animation: none; transform: none; }
  .site-footer { padding: 2.4rem 0 calc(var(--mobile-bar-h) + 10px); }
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.25rem 1rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .coverage-copy { padding: 1.6rem 1.2rem; }
  .cta-inner h2 { max-width: none; }
  .back-top { bottom: calc(var(--mobile-bar-h) + 12px); }
  .service-grid,
  .benefit-grid { grid-template-columns: 1fr; }
  .marquee { max-width: 100%; overflow: hidden; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer-brand,
  .site-footer .footer-contact { grid-column: 1 / -1; }
  .scope-card { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .brand-logo { height: 52px; }
  .photo-stack .accent { display: none; }
  .hero-actions .btn { width: 100%; }
  .hero-content,
  .page-hero .container,
  .container,
  .container-wide,
  .header-inner { padding-inline: 1.5rem; }
  .footer-bottom { font-size: 0.72rem; padding-top: 1rem; }
  .hero-meta { flex-direction: column; gap: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .hero-media img { transform: none; }
  .reveal { opacity: 1; transform: none; }
  .preloader { display: none !important; }
  body.is-locked { overflow: auto; }
}
