@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@300;400;500;600&display=swap');

/* =====================================================
   TCR — PRIVACY / LEGAL
===================================================== */

:root {
  --tcr-navy: #000717;
  --tcr-red: #7E0106;
  --tcr-white: #FFFFFF;
  --tcr-cream: #F7E0B8;

  --muted-white: rgba(255, 255, 255, 0.62);
  --soft-white: rgba(255, 255, 255, 0.42);
  --cream-line: rgba(247, 224, 184, 0.16);
  --red-soft: rgba(126, 1, 6, 0.16);
}


/* =====================================================
   RESET
===================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--tcr-navy);
  color: var(--tcr-white);

  font-family: "Manrope", sans-serif;

  overflow-x: hidden;
}

body::before {
  content: "";

  position: fixed;
  inset: 0;

  pointer-events: none;

  z-index: 9997;

  background-image:
    radial-gradient(
      rgba(255, 255, 255, 0.025) 0.6px,
      transparent 0.6px
    );

  background-size: 5px 5px;

  opacity: 0.35;
}

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


/* =====================================================
   SITE HEADER / NAVIGATION
===================================================== */

.site-header {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 82px;

  padding: 0 42px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 100;

  background: transparent;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;

  width: 46px;
  height: auto;

  object-fit: contain;
}

.navigation {
  display: flex;

  gap: 34px;

  font-family: "DM Mono", monospace;

  font-size: 10px;

  letter-spacing: 0.08em;
}

.navigation a {
  opacity: 0.72;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.navigation a:hover {
  opacity: 1;

  transform: translateY(-2px);
}


/* =====================================================
   HAMBURGER
===================================================== */

.menu-button {
  display: none;

  width: 30px;
  height: 30px;

  padding: 0;

  border: none;
  background: transparent;

  cursor: pointer;

  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.menu-button span {
  display: block;

  width: 24px;
  height: 1px;

  margin: 4px 0;

  background: var(--tcr-white);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
}


/* Hamburger → X */

.menu-button.active span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
  opacity: 0;
}

.menu-button.active span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}


/* =====================================================
   PRIVACY HERO
===================================================== */

.privacy-hero {
  position: relative;

  min-height: 72vh;

  padding:
    180px
    7vw
    110px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  overflow: hidden;

  border-bottom: 1px solid var(--cream-line);

  background:
    radial-gradient(
      circle at 82% 45%,
      rgba(126, 1, 6, 0.14),
      transparent 30%
    ),
    var(--tcr-navy);

  isolation: isolate;
}


/* Giant 09 */

.privacy-hero::before {
  content: "09";

  position: absolute;

  right: 4vw;
  bottom: -55px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(180px, 28vw, 450px);

  line-height: 0.8;

  color: rgba(247, 224, 184, 0.055);

  pointer-events: none;

  z-index: -1;
}


/* Red top line */

.privacy-hero::after {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background: var(--tcr-red);
}


/* =====================================================
   LABEL
===================================================== */

.privacy-label {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 42px;

  color: var(--tcr-cream);

  font-family: "DM Mono", monospace;

  font-size: 10px;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.privacy-label::before {
  content: "";

  width: 35px;
  height: 1px;

  background: var(--tcr-cream);

  flex-shrink: 0;
}


/* =====================================================
   HERO TITLE
===================================================== */

.privacy-hero h1 {
  margin: 0;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(90px, 14vw, 220px);

  line-height: 0.78;

  font-weight: 400;

  letter-spacing: -0.035em;

  color: var(--tcr-white);
}


/* =====================================================
   HERO INTRO
===================================================== */

.privacy-intro {
  max-width: 510px;

  margin-top: 48px;

  color: var(--muted-white);

  font-size: 15px;

  line-height: 1.7;

  font-weight: 300;
}


/* =====================================================
   TECHNICAL MARK
===================================================== */

.privacy-hero .privacy-label::after {
  content: "+";

  margin-left: 20px;

  color: var(--tcr-red);

  font-family: "DM Mono", monospace;

  font-size: 18px;

  opacity: 0.8;
}


/* =====================================================
   POLICY WRAPPER
===================================================== */

.privacy-wrapper {
  position: relative;

  width: 100%;

  padding: 55px 7vw 120px;

  background:
    linear-gradient(
      180deg,
      rgba(247, 224, 184, 0.018),
      transparent 15%
    );
}


/* =====================================================
   META
===================================================== */

.privacy-meta {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding-bottom: 22px;

  border-bottom: 1px solid var(--cream-line);

  color: rgba(247, 224, 184, 0.42);

  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


/* =====================================================
   POLICY SECTION
===================================================== */

.privacy-section {
  position: relative;

  display: grid;

  grid-template-columns: 0.28fr 0.72fr;

  gap: 8vw;

  padding: 125px 0;

  border-bottom: 1px solid var(--cream-line);

  isolation: isolate;
}


/* Red section number */

.privacy-number {
  position: relative;

  padding-top: 12px;

  color: var(--tcr-red);

  font-family: "DM Mono", monospace;

  font-size: 10px;

  font-weight: 500;

  letter-spacing: 0.16em;
}


/* Little vertical line */

.privacy-number::before {
  content: "";

  position: absolute;

  left: -20px;
  top: 10px;

  width: 2px;
  height: 20px;

  background: var(--tcr-red);
}


/* =====================================================
   SECTION HEADING
===================================================== */

.privacy-section h2 {
  position: relative;

  margin: 0 0 55px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(65px, 9vw, 145px);

  line-height: 0.82;

  font-weight: 400;

  letter-spacing: -0.025em;

  color: var(--tcr-white);
}


/* Red underline */

.privacy-section h2::after {
  content: "";

  display: block;

  width: 42px;
  height: 2px;

  margin-top: 22px;

  background: var(--tcr-red);

  transition:
    width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.privacy-section:hover h2::after {
  width: 85px;
}


/* =====================================================
   BODY TEXT
===================================================== */

.privacy-section p {
  max-width: 680px;

  margin-bottom: 25px;

  color: rgba(255, 255, 255, 0.63);

  font-size: 14px;

  line-height: 1.8;

  font-weight: 300;
}


/* =====================================================
   LIST
===================================================== */

.privacy-section ul {
  max-width: 680px;

  margin: 30px 0;

  padding: 0;

  list-style: none;
}

.privacy-section li {
  position: relative;

  padding:
    16px
    0
    16px
    27px;

  border-bottom: 1px solid rgba(247, 224, 184, 0.1);

  color: rgba(255, 255, 255, 0.62);

  font-size: 13px;

  line-height: 1.7;
}

.privacy-section li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 25px;

  width: 6px;
  height: 6px;

  background: var(--tcr-red);

  transform: rotate(45deg);
}


/* =====================================================
   PRIVACY NOTE
===================================================== */

.privacy-note,
.privacy-consent-info {
  position: relative;

  max-width: 680px;

  margin-top: 45px;

  padding: 28px 30px;

  border-left: 2px solid var(--tcr-red);

  background:
    linear-gradient(
      90deg,
      rgba(126, 1, 6, 0.10),
      transparent
    );
}

.privacy-note strong {
  display: block;

  margin-bottom: 12px;

  color: var(--tcr-cream);

  font-family: "DM Mono", monospace;

  font-size: 10px;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.privacy-note p {
  margin: 0;

  font-size: 13px;
}


/* =====================================================
   CONSENT INFORMATION BOX
===================================================== */

.privacy-consent-info {
  margin-top: 45px;

  border-left-color: var(--tcr-cream);
}

.privacy-consent-info h3 {
  margin-bottom: 14px;

  color: var(--tcr-red);

  font-family: "DM Mono", monospace;

  font-size: 10px;

  letter-spacing: 0.18em;
}

.privacy-consent-info p {
  margin: 0;
}


/* =====================================================
   EMAIL
===================================================== */

.privacy-section a[href^="mailto"] {
  color: var(--tcr-cream);

  border-bottom: 1px solid var(--tcr-red);

  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.privacy-section a[href^="mailto"]:hover {
  color: var(--tcr-white);

  border-color: var(--tcr-cream);
}


/* =====================================================
   FOOTER
===================================================== */

.privacy-footer {
  position: relative;

  width: 100%;
  max-width: none;

  padding: 80px 6vw 25px;

  background: #000717;

  color: #ffffff;

  border-top: 1px solid rgba(247, 224, 184, 0.18);

  display: block;
}

.privacy-footer .footer-main {
  display: grid;

  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;

  gap: 60px;

  padding-bottom: 80px;
}

.privacy-footer .footer-bottom {
  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 20px;

  padding-top: 20px;

  border-top: 1px solid rgba(247, 224, 184, 0.12);

  color: rgba(247, 224, 184, 0.35);

  font-family: Arial, sans-serif;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 0.14em;
}

.privacy-footer .footer-bottom a {
  color: rgba(247, 224, 184, 0.35);

  text-decoration: none;

  transition: color 0.3s ease;
}

.privacy-footer .footer-bottom a:hover {
  color: #f7e0b8;
}

.privacy-footer .footer-bottom span:last-child {
  text-align: right;
}


/* =====================================================
   PRIVACY CONSENT POPUP
===================================================== */

.privacy-consent {
  position: fixed;

  left: 28px;
  bottom: 28px;

  width: min(470px, calc(100vw - 56px));

  padding: 32px;

  z-index: 9999;

  background:
    linear-gradient(
      135deg,
      #000717,
      #050b19
    );

  color: var(--tcr-white);

  border:
    1px solid
    rgba(247, 224, 184, 0.25);

  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(126, 1, 6, 0.08);

  overflow: hidden;

  transform: translateY(140%);

  opacity: 0;

  pointer-events: none;

  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
}

.privacy-consent.show {
  transform: translateY(0);

  opacity: 1;

  pointer-events: auto;
}

.privacy-consent::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background: var(--tcr-red);
}

.privacy-consent::after {
  content: "PRIVACY";

  position: absolute;

  right: -20px;
  bottom: -25px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: 85px;

  line-height: 1;

  color: rgba(247, 224, 184, 0.035);

  pointer-events: none;
}

.privacy-consent > * {
  position: relative;

  z-index: 2;
}


/* =====================================================
   POPUP LABEL
===================================================== */

.privacy-consent-label {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 22px;

  color: var(--tcr-red);

  font-family: "DM Mono", monospace;

  font-size: 9px;

  font-weight: 500;

  letter-spacing: 0.18em;
}

.privacy-consent-label::before {
  content: "";

  width: 26px;
  height: 1px;

  background: var(--tcr-red);
}


/* =====================================================
   POPUP TITLE
===================================================== */

.privacy-consent h2 {
  margin: 0 0 20px;

  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(42px, 5vw, 62px);

  line-height: 0.82;

  font-weight: 400;

  letter-spacing: -0.025em;
}


/* =====================================================
   POPUP TEXT
===================================================== */

.privacy-consent p {
  max-width: 390px;

  margin: 0 0 22px;

  color: rgba(255, 255, 255, 0.57);

  font-size: 12px;

  line-height: 1.65;
}


/* =====================================================
   POLICY LINK
===================================================== */

.privacy-consent-link {
  display: inline-flex;

  align-items: center;

  margin-bottom: 28px;

  color: var(--tcr-cream);

  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: 0.14em;

  border-bottom: 1px solid transparent;

  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.privacy-consent-link:hover {
  color: var(--tcr-white);

  border-color: var(--tcr-red);
}


/* =====================================================
   POPUP ACTIONS
===================================================== */

.privacy-consent-actions {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 12px;

  padding-top: 20px;

  border-top: 1px solid rgba(247, 224, 184, 0.12);
}


/* =====================================================
   DECLINE
===================================================== */

.privacy-decline {
  padding: 13px 20px;

  background: transparent;

  color: rgba(255, 255, 255, 0.55);

  border: 1px solid rgba(247, 224, 184, 0.2);

  font-family: "DM Mono", monospace;

  font-size: 9px;

  letter-spacing: 0.14em;

  cursor: pointer;

  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.privacy-decline:hover {
  color: var(--tcr-cream);

  border-color: var(--tcr-cream);

  transform: translateY(-2px);
}


/* =====================================================
   ACCEPT
===================================================== */

.privacy-accept {
  padding: 14px 27px;

  background: var(--tcr-red);

  color: var(--tcr-white);

  border: 1px solid var(--tcr-red);

  font-family: "DM Mono", monospace;

  font-size: 9px;

  font-weight: 500;

  letter-spacing: 0.14em;

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.privacy-accept:hover {
  background: #9a080e;

  transform: translateY(-2px);

  box-shadow:
    0 8px 25px rgba(126, 1, 6, 0.28);
}


/* =====================================================
   FOOTER
===================================================== */

.tcr-footer {
  position: relative;

  width: 100%;
  max-width: none;

  margin-left: 0;
  margin-right: 0;

  padding: 80px 6vw 25px;

  background: #000717;

  color: #ffffff;

  border-top: 1px solid rgba(247, 224, 184, 0.18);

  box-sizing: border-box;
}

.footer-main {
  display: grid;

  width: 100%;
  max-width: none;

  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;

  gap: 60px;

  padding-bottom: 80px;

  box-sizing: border-box;
}

.footer-identity {
  max-width: 360px;
}

.footer-logo {
  font-family:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    sans-serif;

  font-size: clamp(38px, 4.5vw, 62px);

  line-height: 0.9;

  letter-spacing: 0;

  color: #f7e0b8;

  opacity: 0.85;

  font-weight: 400;

  margin-bottom: 22px;
}

.footer-description {
  max-width: 330px;

  margin: 0;

  color: rgba(255, 255, 255, 0.55);

  font-family: Arial, sans-serif;

  font-size: 13px;

  line-height: 1.6;
}

.footer-arabic {
  margin: 18px 0 20px;

  font-size: 17px;

  color: rgba(247, 224, 184, 0.75);

  direction: rtl;

  width: fit-content;
}

.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 13px;
}

.footer-column > span {
  margin-bottom: 12px;

  color: #7e0106;

  font-family: Arial, sans-serif;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.2em;
}

.footer-column a,
.footer-location {
  margin: 0;

  color: rgba(255, 255, 255, 0.58);

  font-family: Arial, sans-serif;

  font-size: 11px;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-column a:hover {
  color: #f7e0b8;

  transform: translateX(5px);
}

.footer-location {
  margin-top: 8px;

  color: rgba(247, 224, 184, 0.45);
}

.footer-bottom {
  display: grid;

  width: 100%;
  max-width: none;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 20px;

  padding-top: 20px;

  border-top: 1px solid rgba(247, 224, 184, 0.12);

  color: rgba(247, 224, 184, 0.35);

  font-family: Arial, sans-serif;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 0.14em;

  box-sizing: border-box;
}

.footer-bottom a {
  color: rgba(247, 224, 184, 0.35);

  text-decoration: none;

  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #f7e0b8;
}

.footer-bottom span:last-child {
  text-align: right;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

  /* HEADER */

  .site-header {
    height: 70px;

    padding: 0 22px;

    background: var(--tcr-navy);
  }

  .logo img {
    width: 42px;
  }

  .navigation {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  /* MOBILE NAV DROPDOWN */

  .navigation.mobile-open {
    display: flex;

    position: fixed;

    top: 70px;
    left: 0;

    width: 100%;

    padding: 25px 22px 30px;

    flex-direction: column;

    gap: 0;

    background: var(--tcr-navy);

    border-top: 1px solid rgba(247, 224, 184, 0.15);

    border-bottom: 1px solid rgba(247, 224, 184, 0.15);

    z-index: 99;
  }

  .navigation.mobile-open a {
    padding: 15px 0;

    font-size: 12px;

    letter-spacing: 0.08em;

    opacity: 0.9;
  }


  /* PRIVACY HERO */

  .privacy-hero {
    min-height: 75vh;

    padding:
      145px
      6vw
      80px;
  }

  .privacy-hero h1 {
    font-size: clamp(75px, 20vw, 140px);
  }

  .privacy-intro {
    max-width: 350px;

    font-size: 14px;
  }


  /* WRAPPER */

  .privacy-wrapper {
    padding:
      40px
      6vw
      80px;
  }


  /* META */

  .privacy-meta {
    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
  }


  /* SECTIONS */

  .privacy-section {
    grid-template-columns: 1fr;

    gap: 35px;

    padding: 90px 0;
  }

  .privacy-number {
    padding-top: 0;
  }

  .privacy-number::before {
    display: none;
  }

  .privacy-section h2 {
    margin-bottom: 40px;

    font-size: clamp(65px, 18vw, 115px);
  }


  /* FOOTER */

  .tcr-footer,
  .privacy-footer {
    width: 100%;
    max-width: none;

    padding: 60px 6vw 20px;
  }

  .footer-main,
  .privacy-footer .footer-main {
    grid-template-columns: 1fr 1fr;

    gap: 50px 30px;

    padding-bottom: 60px;
  }

  .footer-identity,
  .privacy-footer .footer-identity {
    grid-column: 1 / -1;
  }

  .footer-bottom,
  .privacy-footer .footer-bottom {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .footer-bottom span:last-child,
  .privacy-footer .footer-bottom span:last-child {
    text-align: left;
  }


  /* CONSENT POPUP */

  .privacy-consent {
    left: 14px;
    bottom: 14px;

    width: calc(100vw - 28px);

    padding: 26px;
  }

  .privacy-consent h2 {
    font-size: 46px;
  }

  .privacy-consent-actions {
    flex-direction: column-reverse;

    align-items: stretch;
  }

  .privacy-decline,
  .privacy-accept {
    width: 100%;
  }

}


/* =====================================================
   VERY SMALL SCREENS
===================================================== */

@media (max-width: 420px) {

  .privacy-hero {
    padding-top: 125px;
  }

  .privacy-hero h1 {
    font-size: 68px;
  }

  .privacy-section h2 {
    font-size: 62px;
  }

  .privacy-consent {
    padding: 23px;
  }

  .privacy-consent h2 {
    font-size: 40px;
  }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

}