@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --black: #050b0f;
  --black-soft: #0b1217;
  --gold: #c9963e;
  --gold-light: #e0b35c;
  --white: #f7f7f5;
  --text-dark: #11171b;
  --line: rgba(201, 150, 62, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #000;
}

body {
  margin: 0;
  background: #000;
  color: var(--white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

section {
  scroll-margin-top: 92px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(1400px, calc(100% - 48px));
  margin: 14px auto 24px;
  background: var(--black);
  box-shadow: 0 0 0 14px #17191b;
  overflow: hidden;
}

.site-header {
  height: 92px;
  display: grid;
  grid-template-columns: 270px 1fr 160px;
  align-items: center;
  padding: 0 48px;
  position: absolute;
  top: 14px;
  left: 50%;
  width: min(1400px, calc(100% - 48px));
  transform: translateX(-50%);
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 8, 12, 0.88);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand > img {
  width: 56px;
  height: 66px;
}

.brand strong {
  display: block;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand strong span {
  color: var(--gold);
}

.brand small {
  display: block;
  margin-top: -5px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.4px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  padding: 18px 0;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a.active::after,
.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.languages {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-separator {
  height: 20px;
  border-left: 1px solid #777;
}

.lang {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  opacity: 0.72;
  padding: 6px;
}

.lang.active,
.lang:hover,
.lang:focus-visible {
  opacity: 1;
}

.lang img {
  width: 23px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 670px;
  position: relative;
  overflow: hidden;
  background: #050a0e;
  padding-bottom: 56px;
}

.hero-image {
  position: absolute;
  top: 106px;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("assets/hero-security.jpg") 72% center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 106px;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 12, 1) 0%, rgba(3, 8, 12, 0.98) 30%, rgba(3, 8, 12, 0.72) 52%, rgba(3, 8, 12, 0.32) 76%, rgba(3, 8, 12, 0.16) 100%),
    linear-gradient(180deg, rgba(3, 8, 12, 0.92) 0%, rgba(3, 8, 12, 0.65) 18%, rgba(3, 8, 12, 0.14) 44%, rgba(3, 8, 12, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 148px;
  padding-bottom: 24px;
  margin-left: 76px;
  max-width: 660px;
}

.eyebrow,
.section-heading p {
  color: var(--gold-light);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2.4px;
  margin: 0 0 14px;
}

.hero h1 {
  margin: 0 0 10px;
  max-width: 10.5ch;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(56px, 7vw, 94px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 1.2px;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.hero-subtitle {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: 1.8px;
}

.gold-line {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

.hero-copy {
  max-width: 540px;
  margin: 0;
  color: #eef0f0;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  margin-bottom: 18px;
}

.btn {
  min-width: 195px;
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  border: 1px solid rgba(214, 165, 72, 0.95);
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, #8f6318 0%, #c88f2c 18%, #f0c86d 46%, #d59d38 68%, #8b5e14 100%);
  color: #050b0f;
  box-shadow: inset 0 1px 0 rgba(255, 244, 200, 0.65), inset 0 -1px 0 rgba(113, 72, 9, 0.35), 0 12px 28px rgba(180, 126, 27, 0.32);
}

.btn.secondary {
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
}

.btn img {
  width: 17px;
}

.btn.primary img {
  filter: brightness(0);
}

.btn.secondary img {
  filter: brightness(0) invert(1);
}

.section-light {
  background: radial-gradient(circle at 50% 0, #fff, #f3f3f1 82%);
  color: var(--text-dark);
  padding: 64px 76px 72px;
}

.section-heading {
  text-align: center;
  margin-bottom: 46px;
}

.section-heading p {
  margin: 0 0 8px;
  font-size: 15px;
  text-transform: uppercase;
}

.section-heading h2 {
  position: relative;
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 2px;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 2px;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  background: var(--gold);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: visible;
  border: 1px solid #d8d8d8;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08), 0 34px 38px -30px rgba(0, 0, 0, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -16px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.10) 45%, rgba(0, 0, 0, 0) 78%);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12), 0 42px 42px -32px rgba(0, 0, 0, 0.36);
}

.service-photo {
  height: 260px;
  position: relative;
  background-position: center;
  background-size: cover;
}

.service-photo--close {
  background-image: url("assets/close-protection.jpg");
}

.service-photo--valuables {
  background-image: url("assets/valuable-transport.jpg");
}

.service-photo--retail {
  background-image: url("assets/retail-security.jpg");
}

.service-photo--airport {
  background-image: url("assets/airport-transfer.jpg");
}

.service-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 7, 10, 0.3), rgba(2, 7, 10, 0.04) 65%);
}

.service-icon {
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border: 4px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #071016;
  z-index: 3;
}

.service-icon img {
  width: 42px;
  height: 42px;
}

.service-body {
  min-height: 310px;
  padding: 62px 36px 30px;
  text-align: center;
}

.service-body h3 {
  margin: 0 0 18px;
  color: #0b0d0f;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
}

.service-body p {
  max-width: 470px;
  margin: 0 auto;
  color: #252d32;
  font-size: 18px;
  line-height: 1.7;
}

.short-line {
  display: block;
  width: 62px;
  height: 2px;
  margin: 24px auto 0;
  background: var(--gold);
}

.why-us {
  padding: 64px 76px 72px;
  background:
    linear-gradient(rgba(4, 10, 14, 0.96), rgba(4, 10, 14, 0.97)),
    radial-gradient(circle at 70% 20%, #2b3338, #071016 58%);
  color: #fff;
}

.section-heading-light h2 {
  color: #fff;
}

.section-heading-light p {
  color: var(--gold-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.why-card {
  min-height: 240px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: start;
  gap: 22px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.2s ease, background 0.2s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
}

.why-card img {
  width: 64px;
  height: 64px;
}

.why-card h3 {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.4px;
}

.why-card p {
  margin: 0;
  color: #e2e4e4;
  font-size: 17px;
  line-height: 1.7;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid #d8d8d8;
  background: #fff;
  padding: 0 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.035);
}

.faq-item summary {
  position: relative;
  padding: 23px 44px 23px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 28px;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 23px;
  padding-right: 36px;
  color: #252d32;
  font-size: 17px;
  line-height: 1.7;
}

.contact-bar {
  min-height: 135px;
  padding: 28px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background:
    linear-gradient(rgba(5, 12, 16, 0.94), rgba(5, 12, 16, 0.94)),
    linear-gradient(90deg, #0c151b, #111b21);
}

.contact-bar h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.contact-bar p {
  margin: 4px 0 0;
  font-size: 16px;
}

.contact-bar .btn {
  min-width: 240px;
}

footer {
  min-height: 120px;
  padding: 22px 64px;
  display: grid;
  grid-template-columns: 280px 1fr 1.15fr 190px;
  align-items: center;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand > img {
  width: 54px;
  height: 64px;
}

.footer-brand strong {
  font-size: 20px;
}

.footer-brand small {
  font-size: 9px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}

.footer-link img {
  width: 25px;
  height: 25px;
}

footer > p {
  margin: 0;
  color: #aaa;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 32px;
    grid-template-columns: 235px 1fr 145px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .site-header {
    top: 0;
    width: 100%;
    height: 88px;
    grid-template-columns: 1fr auto auto;
    padding: 0 24px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    padding: 16px 24px 22px;
    flex-direction: column;
    gap: 2px;
    background: #071016;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    font-size: 15px;
  }

  .main-nav a::after {
    bottom: 4px;
    transform-origin: left;
  }

  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
    display: block;
    margin-right: 12px;
    border: 1px solid var(--gold);
    background: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
  }

  .brand > img {
    width: 48px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 8px;
  }

  .hero {
    min-height: 680px;
    padding-bottom: 60px;
  }

  .hero-image {
    top: 88px;
    left: 0;
    background-position: 74% center;
    opacity: 0.9;
  }

  .hero-content {
    padding-top: 140px;
    margin: 0 32px;
    max-width: 640px;
  }

  .hero-overlay {
    top: 88px;
  }

  .section-light,
  .why-us {
    padding-left: 28px;
    padding-right: 28px;
  }

  .service-body h3 {
    font-size: 28px;
  }

  .service-body p,
  .why-card p,
  .faq-item p {
    font-size: 16px;
  }

  .why-card {
    grid-template-columns: 58px 1fr;
    padding: 25px;
  }

  .why-card img {
    width: 54px;
    height: 54px;
  }

  .contact-bar {
    padding-left: 32px;
    padding-right: 32px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .why-card,
  .faq-list {
    width: 100%;
  }

  .service-body {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 0 18px;
  }

  .language-separator,
  .lang span {
    display: none;
  }

  .lang {
    min-width: 40px;
    padding: 4px;
  }

  .hero {
    min-height: 720px;
    padding-bottom: 54px;
  }

  .hero-image {
    top: 88px;
    left: 0;
    background-position: 77% center;
    opacity: 0.72;
  }

  .hero-content {
    margin: 0 22px;
    padding-top: 130px;
    max-width: 92%;
  }

  .hero-overlay {
    top: 88px;
  }

  .hero h1 {
    max-width: 9.6ch;
    font-size: clamp(42px, 14vw, 68px);
    line-height: 0.94;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 26px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 18px;
    font-size: 21px;
  }

  .section-light,
  .why-us {
    padding: 52px 18px 58px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .service-photo {
    height: 220px;
  }

  .service-body {
    padding: 56px 22px 26px;
  }

  .service-body h3 {
    font-size: 26px;
  }

  .service-body p {
    font-size: 16px;
  }

  .why-card {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 24px;
  }

  .why-card h3 {
    font-size: 25px;
  }

  .faq-item {
    padding: 0 18px;
  }

  .faq-item summary {
    font-size: 17px;
  }

  .faq-item p {
    padding-right: 0;
  }

  .contact-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 22px;
  }

  .contact-bar h2 {
    font-size: 24px;
  }

  .contact-bar .btn {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
