:root {
  --navy-black: #020315;
  --navy-deep: #040725;
  --navy: #070b32;
  --navy-mid: #0b1040;

  --gold-dark: #8f6d16;
  --gold: #c9a63a;
  --gold-rich: #d9b94f;
  --gold-light: #f1d778;

  --white: #ffffff;
  --muted: #a7adc3;

  --gold-border:
    rgba(217, 185, 79, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-black);
}

body {
  margin: 0;

  color: var(--white);

  background: var(--navy-black);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  line-height: 1.7;

  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
}


/* LOGO CROPPING */

.logo-crop {
  position: relative;

  display: block;

  overflow: hidden;

  background: transparent;
}

.logo-crop img {
  position: absolute;

  left: 50%;

  max-width: none;

  transform:
    translateX(-50%);
}

.logo-header {
  width: 128px;
  height: 54px;
}

.logo-header img {
  width: 305px;
  top: -55px;
}

.logo-hero {
  width: 300px;
  height: 122px;

  margin:
    0 auto 18px;
}

.logo-hero img {
  width: 710px;
  top: -126px;
}

.logo-footer {
  width: 155px;
  height: 64px;

  margin-bottom: 18px;
}

.logo-footer img {
  width: 367px;
  top: -66px;
}


/* HEADER */

.site-header {
  position: sticky;

  top: 0;

  z-index: 3000;

  background:
    rgba(2, 3, 21, 0.94);

  backdrop-filter:
    blur(18px);

  border-bottom:
    1px solid rgba(217, 185, 79, 0.15);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.24);
}

.header-inner {
  width:
    min(1180px, calc(100% - 42px));

  min-height: 76px;

  margin:
    0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}

.header-logo-link {
  text-decoration: none;
}

.desktop-nav {
  display: flex;

  align-items: center;

  gap: 28px;
}

.desktop-nav > a {
  color:
    rgba(255, 255, 255, 0.72);

  font-size: 12.5px;

  font-weight: 700;

  text-decoration: none;
}

.desktop-nav > a:hover {
  color: var(--gold-light);
}

.header-phone {
  padding:
    10px 16px;

  display: flex;

  align-items: center;

  gap: 8px;

  color:
    var(--gold-light) !important;

  border:
    1px solid rgba(217, 185, 79, 0.4);

  border-radius: 50px;

  background:
    rgba(217, 185, 79, 0.035);
}


/* HERO */

.legal-hero {
  position: relative;

  padding:
    82px 22px 92px;

  overflow: hidden;

  background:

    radial-gradient(
      ellipse at 50% 5%,
      rgba(40, 54, 145, 0.48),
      transparent 42%
    ),

    linear-gradient(
      145deg,
      #020315,
      #070b32 50%,
      #020417
    );
}

.legal-hero::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 150px;

  background:
    linear-gradient(
      transparent,
      var(--navy-black)
    );
}

.legal-hero-glow {
  position: absolute;

  width: 420px;
  height: 420px;

  left: 50%;
  top: -170px;

  transform:
    translateX(-50%);

  background:
    rgba(43, 57, 151, 0.28);

  filter:
    blur(100px);

  border-radius: 50%;
}

.legal-hero-frame {
  position: relative;

  z-index: 2;

  width:
    min(960px, 100%);

  margin: 0 auto;

  padding:
    62px 45px;

  background:
    linear-gradient(
      145deg,
      rgba(18, 25, 76, 0.52),
      rgba(3, 6, 27, 0.45)
    );

  border:
    1px solid var(--gold-border);

  border-radius: 7px;

  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  text-align: center;
}

.corner {
  position: absolute;

  width: 44px;
  height: 44px;
}

.corner-tl {
  top: -1px;
  left: -1px;

  border-top:
    2px solid var(--gold-rich);

  border-left:
    2px solid var(--gold-rich);
}

.corner-tr {
  top: -1px;
  right: -1px;

  border-top:
    2px solid var(--gold-rich);

  border-right:
    2px solid var(--gold-rich);
}

.corner-bl {
  bottom: -1px;
  left: -1px;

  border-bottom:
    2px solid var(--gold-rich);

  border-left:
    2px solid var(--gold-rich);
}

.corner-br {
  right: -1px;
  bottom: -1px;

  border-right:
    2px solid var(--gold-rich);

  border-bottom:
    2px solid var(--gold-rich);
}

.gold-line {
  width: 65px;
  height: 1px;

  margin:
    0 auto 24px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold-light),
      transparent
    );

  box-shadow:
    0 0 18px rgba(217, 185, 79, 0.55);
}

.eyebrow {
  margin:
    0 0 14px;

  color: var(--gold-rich);

  font-size: 10.5px;

  font-weight: 800;

  letter-spacing: 3.1px;

  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(43px, 6vw, 68px);

  font-weight: 400;

  line-height: 1.08;
}

.legal-hero-content > p:not(.eyebrow) {
  width:
    min(650px, 100%);

  margin:
    22px auto 0;

  color:
    rgba(255, 255, 255, 0.65);

  font-size: 15px;
}

.updated {
  display: inline-block;

  margin-top: 20px;

  color:
    rgba(255, 255, 255, 0.38);

  font-size: 11px;
}


/* LEGAL CONTENT */

.legal-section {
  padding:
    95px 20px 110px;

  background:

    radial-gradient(
      circle at 50% 0%,
      rgba(30, 44, 128, 0.2),
      transparent 35%
    ),

    linear-gradient(
      180deg,
      #020416,
      #050829
    );
}

.legal-container {
  width:
    min(920px, 100%);

  margin: 0 auto;

  display: grid;

  gap: 18px;
}

.legal-card {
  position: relative;

  padding:
    31px 32px 30px;

  background:
    linear-gradient(
      145deg,
      rgba(18, 25, 76, 0.72),
      rgba(3, 6, 27, 0.92)
    );

  border:
    1px solid rgba(217, 185, 79, 0.21);

  border-radius: 8px;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.legal-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 8%;

  width: 84%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(217, 185, 79, 0.75),
      transparent
    );
}

.section-icon {
  width: 44px;
  height: 44px;

  margin-bottom: 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: var(--gold-light);

  border:
    1px solid rgba(217, 185, 79, 0.3);

  border-radius: 50%;

  background:
    rgba(217, 185, 79, 0.035);
}

.legal-card h2 {
  margin:
    0 0 13px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 24px;

  font-weight: 400;
}

.legal-card p {
  margin:
    0 0 13px;

  color: var(--muted);

  font-size: 13.5px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--gold-light);

  font-weight: 700;
}

.keyword-row {
  margin:
    15px 0;

  display: flex;

  flex-wrap: wrap;

  gap: 9px;
}

.keyword {
  padding:
    7px 13px;

  color:
    var(--gold-light);

  background:
    rgba(217, 185, 79, 0.04);

  border:
    1px solid rgba(217, 185, 79, 0.35);

  border-radius: 50px;

  font-size: 11px;

  font-weight: 900;

  letter-spacing: 0.5px;
}

.contact-list {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.contact-list a {
  display: flex;

  align-items: center;

  gap: 10px;

  text-decoration: none;
}

.contact-list i {
  width: 18px;

  color: var(--gold-light);
}

.legal-note {
  margin-top: 10px;

  padding:
    18px 20px;

  color:
    rgba(255, 255, 255, 0.42);

  border-left:
    2px solid var(--gold-rich);

  background:
    rgba(255, 255, 255, 0.025);

  font-size: 11.5px;
}

.legal-note p {
  margin: 0;
}


/* FOOTER */

.site-footer {
  background:
    linear-gradient(
      180deg,
      #020416,
      #01020c
    );

  border-top:
    1px solid rgba(217, 185, 79, 0.13);
}

.footer-inner {
  width:
    min(1100px, calc(100% - 42px));

  margin: 0 auto;

  padding:
    60px 0 44px;

  display: grid;

  grid-template-columns:
    1.6fr 1fr 1fr;

  gap: 60px;
}

.footer-brand p {
  max-width: 400px;

  margin: 0;

  color:
    rgba(255, 255, 255, 0.41);

  font-size: 12px;
}

.footer-column {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.footer-column h3 {
  margin:
    0 0 10px;

  color: var(--gold-rich);

  font-size: 9.5px;

  letter-spacing: 1.7px;

  text-transform: uppercase;
}

.footer-column a {
  color:
    rgba(255, 255, 255, 0.51);

  font-size: 12px;

  text-decoration: none;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  width:
    min(1100px, calc(100% - 42px));

  margin: 0 auto;

  padding:
    18px 0 22px;

  display: flex;

  justify-content: space-between;

  gap: 25px;

  color:
    rgba(255, 255, 255, 0.23);

  border-top:
    1px solid rgba(255, 255, 255, 0.055);

  font-size: 9.5px;
}


/* MOBILE ACTIONS */

.mobile-actions {
  display: none;
}


/* MOBILE */

@media screen and (max-width: 700px) {

  body {
    padding-bottom: 67px;
  }

  .header-inner {
    width:
      calc(100% - 28px);

    min-height: 65px;
  }

  .logo-header {
    width: 97px;
    height: 42px;
  }

  .logo-header img {
    width: 232px;
    top: -42px;
  }

  .desktop-nav > a:not(.header-phone) {
    display: none;
  }

  .header-phone {
    padding:
      8px 10px;

    font-size:
      10px !important;
  }

  .header-phone i {
    display: none;
  }

  .legal-hero {
    padding:
      48px 13px 68px;
  }

  .legal-hero-frame {
    padding:
      45px 18px;

    border-radius: 5px;
  }

  .logo-hero {
    width: 210px;
    height: 86px;
  }

  .logo-hero img {
    width: 497px;
    top: -88px;
  }

  .corner {
    width: 27px;
    height: 27px;
  }

  .legal-hero h1 {
    font-size: 40px;
  }

  .legal-section {
    padding:
      72px 13px 85px;
  }

  .legal-card {
    padding:
      25px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;

    gap: 29px;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 6px;
  }

  .mobile-actions {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 5000;

    display: grid;

    grid-template-columns:
      1fr 1fr;

    background:
      rgba(1, 3, 16, 0.98);

    border-top:
      1px solid rgba(217, 185, 79, 0.28);
  }

  .mobile-actions a {
    min-height: 59px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;
  }

  .mobile-actions a:first-child {
    border-right:
      1px solid rgba(217, 185, 79, 0.17);
  }

}