/* HS SECURITY & FM LTD — Black & white mix + logo gold brand */
:root {
  --bg: #ffffff;
  --bg-2: #f6f5f2;
  --bg-3: #eceae4;
  --bg-card: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --charcoal: #2a2a2a;
  /* Logo metallic gold (sampled from brand mark) */
  --gold: #d8a23e;
  --gold-bright: #f0d060;
  --gold-deep: #a05000;
  --gold-soft: rgba(216, 162, 62, 0.14);
  --gold-line: rgba(216, 162, 62, 0.4);
  --accent: var(--gold);
  --accent-soft: var(--gold-soft);
  --accent-line: var(--gold-line);
  --text: #141414;
  --muted: #5c5c5c;
  --white: #fff;
  --border: rgba(0, 0, 0, 0.1);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --container: 1180px;
  --nav-h: 84px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  margin: 0 0 16px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  color: var(--muted);
  max-width: 620px;
  margin: 0;
  font-size: 1.02rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, border-color 0.25s, color 0.25s;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  color: #111;
  box-shadow: 0 10px 28px rgba(216, 162, 62, 0.35);
}

.nav-links a.nav-cta {
  color: #111;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(216, 162, 62, 0.48);
  color: #111;
}

.nav-links a.nav-cta:hover {
  color: #111;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--gold-bright);
  background: rgba(216, 162, 62, 0.12);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* On light sections, ghost buttons need dark borders */
.section .btn-ghost,
.split-form .btn-ghost,
.content-card .btn-ghost {
  border-color: rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.section .btn-ghost:hover,
.split-form .btn-ghost:hover,
.content-card .btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold-deep);
}

/* Top bar — black band */
.topbar {
  background: var(--ink);
  border-bottom: 1px solid var(--gold-line);
  font-size: 0.84rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.72);
}

.topbar a { color: rgba(255, 255, 255, 0.85); }
.topbar a:hover { color: var(--gold-bright); }
.topbar strong { color: var(--gold-bright); font-weight: 600; }

/* Nav — white bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 162, 62, 0.22);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-deep);
  background: var(--gold-soft);
}

.nav-cta { margin-left: 8px; padding: 12px 22px !important; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--gold-line);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--gold);
  display: block;
}

/* Hero — black cinematic band */
.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.62) 48%, rgba(0,0,0,0.28) 100%),
    url("../images/hero-bodyguard-full.jpg") center/cover no-repeat;
  transform: scale(1.05);
  will-change: transform;
  filter: grayscale(0.08) contrast(1.05);
}

.hero-scan {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(216, 162, 62, 0.035) 3px,
      rgba(216, 162, 62, 0.035) 4px
    );
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  right: -10%;
  top: 10%;
  background: radial-gradient(circle, rgba(216,162,62,0.22), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
  max-width: 720px;
}

.hero .eyebrow { color: var(--gold-bright); }
.hero .eyebrow::before {
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  margin: 0 0 22px;
  color: var(--white);
  text-shadow: 0 10px 40px rgba(0,0,0,0.55);
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 0 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
  max-width: 520px;
}

.hero-stat {
  padding: 16px 14px;
  border: 1px solid var(--gold-line);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-bright);
}

.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

.hero .btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  color: #111;
  box-shadow: 0 10px 28px rgba(216, 162, 62, 0.4);
}

.hero .btn-gold:hover {
  color: #111;
  box-shadow: 0 16px 36px rgba(216, 162, 62, 0.55);
}

/* Sections */
.section { padding: 100px 0; position: relative; }

.section-dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
}

.section-dark .section-title {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-dark .eyebrow { color: var(--gold-bright); }
.section-dark .eyebrow::before {
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}
.section-dark .section-lead,
.section-dark p { color: rgba(255, 255, 255, 0.7); }

.section-dark .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.section-dark .btn-ghost:hover {
  border-color: var(--gold-bright);
  background: rgba(216, 162, 62, 0.12);
  color: var(--gold-bright);
}

.section-dark .btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  color: #111;
}

.section-dark .btn-gold:hover {
  color: #111;
}

.section-cardish {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 48px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 520px;
}

.about-visual .main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
  filter: grayscale(0.1);
}

.about-visual .float-img {
  position: absolute;
  width: 46%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid var(--gold);
  bottom: -28px;
  right: -18px;
  box-shadow: var(--shadow);
  filter: grayscale(0.05);
}

.about-badge {
  position: absolute;
  top: 24px;
  left: -18px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-bright), var(--gold), var(--gold-deep));
  color: #111;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 12px 30px rgba(216, 162, 62, 0.4);
  animation: spinSlow 18s linear infinite;
  border: 2px solid var(--white);
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.feature-mini {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-mini article {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.feature-mini .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold-deep);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.feature-mini h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--gold-deep);
}

.feature-mini p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Booking + careers split */
.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
}

.split-form {
  background: var(--white);
  padding: 40px;
}

.split-form h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  color: var(--gold-deep);
}

.split-form > p {
  color: var(--muted);
  margin: 0 0 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--text);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216, 162, 62, 0.18);
  background: var(--white);
}

.split-career {
  position: relative;
  min-height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.88)),
    url("../images/about-2.jpg") center/cover no-repeat;
}

.split-career::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: grayscale(0.4);
  z-index: 0;
  pointer-events: none;
}

.split-career > * { position: relative; z-index: 1; }

.split-career h3 {
  font-size: 2rem;
  margin: 0 0 12px;
  color: var(--white);
}

.split-career p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 22px;
  max-width: 420px;
}

.split-career .btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  color: #111;
}

.split-career .btn-gold:hover {
  color: #111;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--border);
  isolation: isolate;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(216, 162, 62, 0.22);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  z-index: -2;
  filter: none;
}

.service-card:hover img {
  transform: scale(1.08);
  filter: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.88));
  z-index: -1;
}

.service-card .body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: var(--gold-bright);
}

.service-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.service-card .link {
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(240, 208, 96, 0.55);
  padding-bottom: 2px;
}

/* Counters / parallax — black band */
.parallax {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.7)),
    url("../images/parallax-24h.jpg") center/cover fixed no-repeat;
  border-block: 1px solid var(--gold-line);
}

.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: grayscale(0.5);
  pointer-events: none;
}

.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.counter-card {
  padding: 28px 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--gold-line);
  backdrop-filter: blur(8px);
}

.counter-card .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-bright);
  display: block;
}

.counter-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Why choose / qualities */
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 0;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.92rem;
}

.checklist li::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.7rem;
}

.quality-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quality-card {
  padding: 24px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.quality-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.quality-card .n {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.quality-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--ink);
}

.quality-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Partners — light strip */
.partners {
  overflow: hidden;
  background: var(--bg-2);
}

.partners-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 32s linear infinite;
  align-items: center;
}

.partners-track img {
  height: 48px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(1) contrast(1.1);
  transition: opacity 0.25s, filter 0.25s;
  filter: brightness(0) saturate(100%);
}

.partners-track img:hover {
  opacity: 1;
  filter: grayscale(0.4);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.map-wrap {
  margin-top: 48px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background: var(--bg-3);
}

.map-wrap img {
  width: 100%;
  height: auto;
  opacity: 0.95;
  filter: grayscale(0.3);
}

/* CTA 24h — black band */
.cta-24 {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.78), rgba(0,0,0,0.9)),
    url("../images/hero-about.jpg") center/cover fixed no-repeat;
}

.cta-24 h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 14px;
  color: var(--white);
}

.cta-24 p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto 28px;
}

.phone-xl {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold-bright);
  margin-bottom: 22px;
}

.cta-24 .btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  color: #111;
}

.cta-24 .btn-gold:hover {
  color: #111;
}

/* Testimonials — white cards on light gray */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial {
  padding: 28px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.testimonial p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.98rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-user img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  filter: grayscale(0.1);
}

.testimonial-user strong {
  display: block;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 1rem;
}

.testimonial-user span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Newsletter */
.newsletter {
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--gold-line);
  background: linear-gradient(135deg, rgba(12, 9, 4, 0.40), rgba(10,10,10,0.92));
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.newsletter h3 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  color: var(--gold-bright);
}

.newsletter p { margin: 0; color: rgba(255, 255, 255, 0.7); }

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  min-width: 260px;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  border-color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter .btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  color: #111;
}

.newsletter .btn-gold:hover {
  color: #111;
}

/* Footer — solid black */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--gold-line);
  padding: 70px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 120px;
  width: auto;
  margin-bottom: 16px;
}

.footer p { color: rgba(255, 255, 255, 0.65); font-size: 0.92rem; }

.footer h4 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.footer a:hover { color: var(--gold-bright); }

.footer-contact .footer-line {
  margin: 0 0 12px;
  line-height: 1.55;
}

.footer-contact .footer-line strong {
  display: inline;
  color: var(--gold-bright);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-body);
}

.footer-contact .footer-line a {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact .footer-line a:hover {
  color: var(--gold-bright);
}

.footer-contact .footer-note {
  margin: 4px 0 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
}

/* Mobile menu */
.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--ink);
  padding: 28px;
  flex-direction: column;
}

.mobile-panel.open { display: flex; }

.mobile-panel .close {
  align-self: flex-end;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--gold-line);
  background: transparent;
  color: var(--gold-bright);
  font-size: 1.4rem;
}

.mobile-panel nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-panel a {
  padding: 14px 8px;
  font-size: 1.2rem;
  font-family: var(--font-display);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-panel .btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  color: #111;
  text-align: center;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid,
  .split-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .counters { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .about-visual .float-img { right: 12px; }
  .parallax,
  .cta-24 { background-attachment: scroll; }
}

@media (max-width: 720px) {
  .services-grid,
  .testimonials-grid,
  .quality-cards,
  .form-grid,
  .checklist,
  .hero-stats,
  .counters {
    grid-template-columns: 1fr;
  }
  .topbar-inner { flex-direction: column; align-items: flex-start; }
  .brand img { height: 46px; }
  .split-form, .split-career { padding: 28px 22px; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { min-width: 0; width: 100%; }
  .about-visual { min-height: 420px; }
  .about-visual .main-img { height: 380px; }
  .page-layout,
  .contact-grid,
  .team-grid { grid-template-columns: 1fr; }
  .has-dropdown > .dropdown { display: none; }
}

/* ===== Inner pages ===== */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 80px 0 50px;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-line);
  background: var(--ink);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: grayscale(0.4) contrast(1.05);
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.68) 55%, rgba(0,0,0,0.4) 100%);
}

.page-hero .container { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
  margin-bottom: 14px;
}

.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb .sep { opacity: 0.5; }

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white);
  max-width: 820px;
}

.page-hero p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
}

.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.content-card h2 {
  margin: 28px 0 12px;
  font-size: 1.45rem;
  color: var(--gold-deep);
}

.content-card h2:first-child { margin-top: 0; }

.content-card h3 {
  margin: 22px 0 10px;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.content-card p {
  color: var(--muted);
  margin: 0 0 14px;
}

.content-card ul {
  margin: 0 0 18px;
  padding: 0;
}

.content-card li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.content-card li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--gold);
  font-size: 0.65rem;
}

.side-card {
  position: sticky;
  top: 110px;
  padding: 24px;
  border-radius: 20px;
  background: var(--ink);
  border: 1px solid var(--gold-line);
}

.side-card h3 {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 1.05rem;
}

.side-card a.item {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.side-card a.item:hover,
.side-card a.item.active {
  color: var(--gold-bright);
}

.side-cta {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
}

.side-cta p { margin: 0 0 12px; color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; }

.side-cta .btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  color: #111;
  width: 100%;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.mini-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.mini-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  filter: none;
}

.mini-card:hover img { filter: none; }

.mini-card .pad { padding: 18px; }
.mini-card h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--gold-deep); }
.mini-card p { margin: 0 0 12px; color: var(--muted); font-size: 0.88rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-card {
  text-align: center;
  padding: 22px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 2px solid var(--gold);
  filter: grayscale(0.1);
}

.team-card h3 { margin: 0 0 4px; color: var(--gold-deep); font-size: 1.05rem; }
.team-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.info-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.info-list strong {
  display: block;
  color: var(--gold-deep);
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.has-dropdown { position: relative; }
.has-dropdown > .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  max-height: 70vh;
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow);
  z-index: 50;
}
.has-dropdown:hover > .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}
.dropdown a:hover {
  background: var(--gold-soft);
  color: var(--gold-deep);
}

@media (max-width: 1024px) {
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .page-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
}

@media (max-width: 720px) {
  .cards-3,
  .team-grid { grid-template-columns: 1fr; }
  .content-card { padding: 22px; }
}

.field select {
  color: var(--muted);
}

/* Light band helpers for alternating sections on homepage */
.section-light {
  background: var(--bg);
}

.section-muted {
  background: var(--bg-2);
}

/* ===== About page redesign ===== */
.about-page {
  background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%);
}

.about-page-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: start;
}

.about-page-visual {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  display: grid;
  gap: 16px;
}

.about-page-stack {
  display: grid;
  grid-template-rows: 1.35fr 0.9fr;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-height: 520px;
}

.about-page-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--gold-line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.about-page-stack img:first-child {
  grid-column: 1 / -1;
  min-height: 280px;
}

.about-page-stack img:nth-child(2),
.about-page-stack img:nth-child(3) {
  min-height: 180px;
}

.about-page-note {
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--ink);
  border: 1px solid var(--gold-line);
  color: rgba(255, 255, 255, 0.78);
}

.about-page-note strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.about-page-note span {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.about-page-note a {
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.92rem;
}

.about-page-content .section-lead {
  max-width: none;
  margin-bottom: 28px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.about-highlights article {
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.about-highlights h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--gold-deep);
}

.about-highlights p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.about-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.about-feature-row article {
  padding: 18px 16px;
  border-radius: 16px;
  background: var(--ink);
  border: 1px solid var(--gold-line);
}

.about-feature-row .n {
  display: block;
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.about-feature-row h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--white);
}

.about-feature-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.about-pricing {
  margin-top: 4px;
}

.about-pricing .btn-ghost {
  border-color: rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.about-pricing .btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold-deep);
}

@media (max-width: 1024px) {
  .about-page-grid {
    grid-template-columns: 1fr;
  }
  .about-page-visual {
    position: static;
  }
  .about-page-stack {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .about-highlights,
  .about-feature-row {
    grid-template-columns: 1fr;
  }
  .about-page-stack {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }
  .about-page-stack img:first-child,
  .about-page-stack img:nth-child(2),
  .about-page-stack img:nth-child(3) {
    min-height: 200px;
    grid-column: auto;
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: linear-gradient(145deg, var(--gold-bright), var(--gold), var(--gold-deep));
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(216, 162, 62, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, box-shadow 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 14px 34px rgba(216, 162, 62, 0.55);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 720px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}
