:root {
  --bg: #090909;
  --bg-soft: #101010;
  --panel: #141414;
  --panel-soft: #1a1a1a;
  --text: #f7f3ea;
  --muted: rgba(247, 243, 234, 0.72);
  --gold: #c7a15a;
  --gold-light: #e4c98d;
  --gold-deep: #9f7b3d;
  --line: rgba(255, 255, 255, 0.08);
  --line-gold: rgba(199, 161, 90, 0.22);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1240px;
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.26);
  --shadow-card: 0 18px 48px rgba(0, 0, 0, 0.34);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 161, 90, 0.12), transparent 24%),
    linear-gradient(180deg, #090909 0%, #0d0d0d 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* =========================================
   HEADER / NAV
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(9, 9, 9, 0.84);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* NAV LOGO IMAGE */

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 190px;
  max-width: 190px;
}

.nav-logo-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 14px rgba(199, 161, 90, 0.12));
}

/* FOOTER LOGO IMAGE */

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: 190px;
  max-width: 190px;
}

.footer-logo-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 14px rgba(199, 161, 90, 0.12));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-drop-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.desktop-nav > a:hover,
.nav-drop-btn:hover,
.nav-dropdown.is-open .nav-drop-btn {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}

.desktop-nav > a::after,
.nav-drop-btn::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.desktop-nav > a:hover::after,
.nav-drop-btn:hover::after,
.nav-dropdown.is-open .nav-drop-btn::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-drop-btn {
  appearance: none;
}

.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-caret {
  transform: rotate(-135deg) translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 250px;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--line-gold);
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.98) 0%, rgba(15, 15, 15, 1) 100%);
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.93rem;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.dropdown-menu a:hover {
  color: #fff;
  background: rgba(199, 161, 90, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: 0.3s ease;
}

.menu-toggle.is-active span:nth-child(1),
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2),
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3),
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.97);
}

.mobile-menu.is-open,
.mobile-menu.open {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 0 18px;
}

.mobile-nav > a,
.mobile-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.mobile-group-toggle {
  width: 100%;
  cursor: pointer;
}

.mobile-caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.mobile-group.is-open .mobile-caret {
  transform: rotate(-135deg);
}

.mobile-submenu {
  display: none;
  padding: 8px 0 2px 10px;
}

.mobile-group.is-open .mobile-submenu {
  display: grid;
  gap: 8px;
}

.mobile-submenu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

/* =========================================
   HERO
========================================= */

.hero {
  padding: 56px 0 64px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 40px;
  align-items: start;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 30px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-gold);
  background: rgba(199, 161, 90, 0.08);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================
   MAIN LOGO IMAGE
========================================= */

.hero-logo-wrap {
  width: 100%;
  max-width: 570px;
  margin: 0 0 34px;
}

.hero-main-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 310px;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 22px 42px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 24px rgba(199, 161, 90, 0.16));
}

.hero-text {
  margin: 0 0 34px;
  max-width: 610px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-gold {
  color: #111;
  background: linear-gradient(135deg, #e4c98d 0%, #c7a15a 100%);
  box-shadow: 0 12px 28px rgba(199, 161, 90, 0.18);
}

.btn-gold:hover {
  transform: translateY(-2px);
}

.btn-outline {
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  color: var(--gold-light);
  border-color: rgba(199, 161, 90, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.trust-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-mini span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

/* =========================================
   HERO TITLE
========================================= */

.hero-title,
.about-hero-title {
  margin: 0 0 28px;
  max-width: 680px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-title span,
.about-hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title span:first-child,
.about-hero-title span:first-child {
  color: var(--gold-light);
}

.hero-title span:last-child,
.about-hero-title span:last-child {
  color: #fff;
}

/* =========================================
   CARDS
========================================= */

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 205px;
  padding: 20px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.88) 0%, rgba(15, 15, 15, 0.94) 100%);
  border: 1px solid rgba(199, 161, 90, 0.14);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.92) 0%, rgba(12, 12, 12, 0.68) 48%, rgba(12, 12, 12, 0.38) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.48));
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 161, 90, 0.34);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42);
}

.card-watermark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.38;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: -1;
  filter: grayscale(1) brightness(1.85) contrast(1.15);
  color: transparent;
  font-size: 0;
  text-indent: -9999px;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    filter 0.25s ease;
}

.service-card:hover .card-watermark {
  opacity: 0.5;
  transform: scale(1.04);
  filter: grayscale(1) brightness(2.05) contrast(1.2);
}

.service-card > *:not(.card-watermark) {
  position: relative;
  z-index: 1;
}

.card-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.12;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.card-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.service-card:hover .card-link::after {
  transform: translateX(4px);
}

/* =========================================
   CREDENTIALS
========================================= */

.credentials {
  padding: 30px 0 26px;
}

.credentials-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.credential-item {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-size: 0.92rem;
  box-shadow: var(--shadow-soft);
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.9);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0 16px;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 0 0 22px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.86rem;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 34px;
  }

  .hero-logo-wrap {
    max-width: 570px;
  }

  .hero-main-logo {
    max-height: 290px;
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 6px;
  }

  .desktop-nav > a,
  .nav-drop-btn {
    padding: 0 11px;
    font-size: 0.92rem;
  }

  .logo {
    width: 160px;
    max-width: 160px;
  }

  .nav-logo-img {
    max-height: 48px;
  }

  .hero-logo-wrap {
    max-width: 570px;
  }

  .hero-main-logo {
    max-height: 270px;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-cards {
    padding-top: 0;
  }

  .hero-logo-wrap {
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-main-logo {
    max-height: 310px;
    object-position: center;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .logo {
    width: 142px;
    max-width: 142px;
  }

  .nav-logo-img {
    max-height: 44px;
  }

  .footer-logo {
    width: 150px;
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-logo-img {
    max-height: 46px;
    object-position: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding: 38px 0 42px;
  }

  .eyebrow {
    margin-bottom: 24px;
  }

  .hero-logo-wrap {
    max-width: 560px;
    margin: 0 auto 28px;
    text-align: center;
  }

  .hero-main-logo {
    max-height: 260px;
    object-position: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title,
  .about-hero-title {
    text-align: center;
    margin: 0 auto 26px;
    font-size: clamp(1.35rem, 6vw, 2rem);
  }

  .hero-title span,
  .about-hero-title span {
    white-space: normal;
  }

  .hero-text {
    margin-bottom: 30px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 14px;
    margin-bottom: 24px;
    flex-direction: column;
  }

  .hero-cards,
  .credentials-inner {
    grid-template-columns: 1fr;
  }

  .card-watermark {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.36;
  }

  .service-card:hover .card-watermark {
    opacity: 0.46;
  }

  .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 0 36px;
  }

  .hero-logo-wrap {
    width: 100%;
    max-width: 390px;
    margin: 0 auto 24px;
  }

  .hero-main-logo {
    max-height: 220px;
  }

  .hero-title,
  .about-hero-title {
    font-size: clamp(1.22rem, 6.8vw, 1.6rem);
  }

  .hero-text {
    font-size: 0.96rem;
  }

  .card-watermark {
    opacity: 0.34;
  }

  .service-card:hover .card-watermark {
    opacity: 0.44;
  }
}

/* =========================================
   GLOBAL MOBILE CENTER ALIGNMENT
========================================= */

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-copy,
  .hero-text,
  .eyebrow,
  .section-label,
  .service-card,
  .service-card h3,
  .service-card p,
  .card-index,
  .card-link,
  .pricing-card,
  .pricing-card h3,
  .pricing-card p,
  .pricing-tag,
  .price,
  .pricing-copy,
  .footer-brand,
  .footer-brand p,
  .footer-bottom,
  .footer-bottom p,
  .credential-item,
  .services-intro-strip,
  .training-intro-strip,
  .street-patrols-benefits-strip,
  .construction-benefits-strip,
  .close-protection-benefits-strip,
  .fencing-benefits-strip,
  .rapid-benefits-strip,
  .remote-benefits-strip,
  .security-benefits-strip,
  .private-security-benefits-strip,
  .added-benefits-strip,
  .contact-benefits-strip,
  .join-benefits-strip,
  .about-cta-strip-inner,
  .alerts-intro-strip,
  .installations-intro-strip,
  .local-authority-benefits-strip,
  .leisure-benefits-strip,
  .local-authority-services-heading,
  .leisure-services-heading,
  .street-patrols-services-heading,
  .construction-services-heading,
  .close-protection-packages-heading,
  .fencing-services-heading,
  .rapid-services-heading,
  .remote-services-heading,
  .security-services-heading,
  .private-security-services-heading,
  .added-services-heading,
  .training-pricing-heading,
  .contact-heading,
  .contact-form-heading,
  .join-services-heading,
  .services-pricing-heading {
    text-align: center !important;
  }

  .hero-copy {
    align-items: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .hero-text,
  .eyebrow,
  .hero-title,
  .about-hero-title {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-logo-wrap {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .hero-main-logo {
    margin-left: auto !important;
    margin-right: auto !important;
    object-position: center !important;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-actions .btn,
  .training-intro-strip .btn,
  .services-intro-strip .btn,
  .street-patrols-benefits-strip .btn,
  .construction-benefits-strip .btn,
  .close-protection-benefits-strip .btn,
  .fencing-benefits-strip .btn,
  .rapid-benefits-strip .btn,
  .remote-benefits-strip .btn,
  .security-benefits-strip .btn,
  .private-security-benefits-strip .btn,
  .added-benefits-strip .btn,
  .contact-benefits-strip .btn,
  .join-benefits-strip .btn,
  .about-cta-strip-inner .btn,
  .alerts-intro-strip .btn,
  .installations-intro-strip .btn,
  .local-authority-benefits-strip .btn,
  .leisure-benefits-strip .btn {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .trust-mini,
  .footer-links {
    justify-content: center !important;
  }

  .hero-cards,
  .credentials-inner,
  .pricing-grid {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
  }

  .service-card,
  .pricing-card {
    width: 100% !important;
    text-align: center !important;
    align-items: center !important;
  }

  .card-index,
  .card-link,
  .pricing-tag {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .services-intro-strip,
  .training-intro-strip,
  .street-patrols-benefits-strip,
  .construction-benefits-strip,
  .close-protection-benefits-strip,
  .fencing-benefits-strip,
  .rapid-benefits-strip,
  .remote-benefits-strip,
  .security-benefits-strip,
  .private-security-benefits-strip,
  .added-benefits-strip,
  .contact-benefits-strip,
  .join-benefits-strip,
  .about-cta-strip-inner,
  .alerts-intro-strip,
  .installations-intro-strip,
  .local-authority-benefits-strip,
  .leisure-benefits-strip,
  .footer-inner {
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer-inner,
  .footer-brand,
  .footer-bottom {
    text-align: center !important;
  }
}

@media (max-width: 768px) {
  .hero-title,
  .about-hero-title {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
    text-align: center !important;
    font-size: clamp(1.38rem, 7vw, 1.9rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.045em;
  }

  .hero-title span,
  .about-hero-title span {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-logo-wrap {
    width: 100% !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: hidden !important;
  }

  .hero-main-logo {
    width: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  .hero-text,
  .hero-actions,
  .trust-mini {
    width: 100% !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
}

@media (max-width: 390px) {
  .hero-title,
  .about-hero-title {
    padding-left: 14px !important;
    padding-right: 14px !important;
    font-size: clamp(1.25rem, 6vw, 1.6rem) !important;
  }
}

@media (max-width: 480px) {
  .hero-copy {
    max-width: 100% !important;
  }

  .hero-logo-wrap,
  .hero-title,
  .about-hero-title,
  .hero-text,
  .hero-actions,
  .trust-mini {
    max-width: calc(100vw - 32px) !important;
  }
}

/* ================================
   ACCREDITATION CAROUSEL
================================ */

.accreditation-strip {
  padding: 30px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(199, 161, 90, 0.07), transparent 32%),
    linear-gradient(180deg, #080808 0%, #0c0c0c 100%);
  border-top: 1px solid rgba(199, 161, 90, 0.08);
  border-bottom: 1px solid rgba(199, 161, 90, 0.08);
}

.accreditation-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  text-align: center;
}

.accreditation-heading h2 {
  max-width: none;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.accreditation-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 6px 0;
}

.accreditation-carousel::before,
.accreditation-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 110px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.accreditation-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #0a0a0a 0%, rgba(10, 10, 10, 0) 100%);
}

.accreditation-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #0a0a0a 0%, rgba(10, 10, 10, 0) 100%);
}

.accreditation-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  flex-wrap: nowrap;
  animation: accreditationScroll 42s linear infinite;
  will-change: transform;
}

.accreditation-carousel:hover .accreditation-track {
  animation-play-state: paused;
}

.accreditation-track img {
  display: block;
  width: 260px;
  height: 74px;
  flex: 0 0 260px;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  opacity: 0.96;
}

.accreditation-track img:hover {
  opacity: 1;
}

@keyframes accreditationScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 11px));
  }
}

@media (max-width: 768px) {
  .accreditation-strip {
    padding: 26px 0 44px;
  }

  .accreditation-heading {
    display: block;
    margin-bottom: 18px;
    text-align: center;
  }

  .accreditation-heading h2 {
    max-width: 92%;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.25;
    white-space: normal;
  }

  .accreditation-carousel::before,
  .accreditation-carousel::after {
    width: 64px;
  }

  .accreditation-track {
    gap: 16px;
    animation-duration: 34s;
  }

  .accreditation-track img {
    width: 210px;
    height: 60px;
    flex-basis: 210px;
  }

  .credentials {
    padding: 28px 0 26px;
  }
}

@media (max-width: 480px) {
  .accreditation-track {
    gap: 14px;
  }

  .accreditation-track img {
    width: 185px;
    height: 54px;
    flex-basis: 185px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .accreditation-track {
    animation: none;
  }

  .accreditation-carousel {
    overflow-x: auto;
  }
}
/* ================================
   COOKIE BANNER
================================ */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(199, 161, 90, 0.22);
  background:
    linear-gradient(180deg, rgba(23, 23, 23, 0.98), rgba(12, 12, 12, 0.98));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(14px);
}

.cookie-copy {
  max-width: 680px;
}

.cookie-copy h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.cookie-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-copy a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.cookie-actions .btn {
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 18px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}
/* ================================
   NAV LOGO + HEADER HEIGHT BALANCE
================================ */

.site-header .header-inner {
  min-height: 130px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.site-header .logo {
  width: 320px !important;
  max-width: 320px !important;
  flex: 0 0 320px !important;
  display: flex !important;
  align-items: center !important;
}

.site-header .logo .nav-logo-img {
  width: 320px !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain !important;
}

/* Tablet */
@media (max-width: 1023px) {
  .site-header .header-inner {
    min-height: 120px !important;
  }

  .site-header .logo {
    width: 270px !important;
    max-width: 270px !important;
    flex-basis: 270px !important;
  }

  .site-header .logo .nav-logo-img {
    width: 270px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .site-header .header-inner {
    min-height: 96px !important;
  }

  .site-header .logo {
    width: 210px !important;
    max-width: 210px !important;
    flex-basis: 210px !important;
  }

  .site-header .logo .nav-logo-img {
    width: 210px !important;
  }
}
/* ================================
   FOOTER LOGO + LAYOUT BALANCE
================================ */

.site-footer {
  padding-top: 48px !important;
  padding-bottom: 36px !important;
}

.site-footer .footer-inner,
.site-footer .container {
  align-items: flex-start !important;
}

/* Logo image */
.site-footer .footer-logo-img,
.site-footer .logo img,
.site-footer img[src*="PSSlogo"] {
  width: 300px !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain !important;
}

/* Give the brand/logo area enough room */
.site-footer .footer-brand,
.site-footer .footer-logo,
.site-footer .logo {
  width: 340px !important;
  max-width: 340px !important;
  flex: 0 0 340px !important;
}

/* Stop the text from sitting over the logo */
.site-footer p,
.site-footer .footer-copy,
.site-footer .footer-text {
  margin-left: 32px !important;
}

/* Footer links spacing */
.site-footer nav,
.site-footer .footer-nav,
.site-footer .footer-links {
  margin-left: auto !important;
  display: flex !important;
  gap: 28px !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
}

/* Tablet */
@media (max-width: 1023px) {
  .site-footer .footer-logo-img,
  .site-footer .logo img,
  .site-footer img[src*="PSSlogo"] {
    width: 260px !important;
  }

  .site-footer .footer-brand,
  .site-footer .footer-logo,
  .site-footer .logo {
    width: 300px !important;
    max-width: 300px !important;
    flex-basis: 300px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .site-footer {
    text-align: center !important;
  }

  .site-footer .footer-inner,
  .site-footer .container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
  }

  .site-footer .footer-logo-img,
  .site-footer .logo img,
  .site-footer img[src*="PSSlogo"] {
    width: 230px !important;
  }

  .site-footer .footer-brand,
  .site-footer .footer-logo,
  .site-footer .logo {
    width: 230px !important;
    max-width: 230px !important;
    flex-basis: auto !important;
  }

  .site-footer p,
  .site-footer .footer-copy,
  .site-footer .footer-text {
    margin-left: 0 !important;
  }

  .site-footer nav,
  .site-footer .footer-nav,
  .site-footer .footer-links {
    margin-left: 0 !important;
    justify-content: center !important;
    gap: 18px !important;
  }
}
/* ================================
   FOOTER TEXT + COPYRIGHT ALIGNMENT
================================ */

.site-footer .footer-brand p,
.site-footer .footer-description,
.site-footer .footer-copy,
.site-footer .footer-copyright {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 430px !important;
}

/* Make sure the whole left footer column aligns from the same edge */
.site-footer .footer-brand,
.site-footer .footer-left {
  text-align: left !important;
  align-items: flex-start !important;
}

/* Mobile only: centre everything nicely */
@media (max-width: 767px) {
  .site-footer .footer-brand,
  .site-footer .footer-left,
  .site-footer .footer-brand p,
  .site-footer .footer-description,
  .site-footer .footer-copy,
  .site-footer .footer-copyright {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* ================================
   FOOTER COPYRIGHT LEFT ALIGN
================================ */

.site-footer .footer-bottom {
  text-align: left !important;
  display: block !important;
}

.site-footer .footer-bottom p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}