:root {
  --bg: #13182D;
  --bg2: #242F5E;
  --accent: #EC6625;
  --accent2: #F1882C;
  --text: #F4E9E6;
  --radius: 50px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: radial-gradient(ellipse 120% 80% at 50% 40%, var(--bg2) 0%, var(--bg) 70%);
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* === ACCESSIBILITY === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === LAYOUT === */
.page {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  width: 100%;
  animation: fadeUp .8s cubic-bezier(.22, 1, .36, 1) both;
}

/* === LOGO === */
.logo-wrap {
  width: 100%;
  max-width: 560px;
  animation: fadeUp .8s .1s cubic-bezier(.22, 1, .36, 1) both;
  margin-bottom: clamp(1rem, 8dvh, 6rem);
}

.logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* === HEADING === */
.heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 2.8vw, 1.4rem);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  letter-spacing: .18em;
  white-space: nowrap;
  animation: fadeUp .8s .2s cubic-bezier(.22, 1, .36, 1) both;
}

/* === CTA BUTTONS === */
.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  width: 100%;
  max-width: 360px;
  animation: fadeUp .8s .35s cubic-bezier(.22, 1, .36, 1) both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  font-size: clamp(1rem, 3vw, 1.15rem);
  padding: .85rem 1.6rem;
  border: 2px solid var(--accent);
  line-height: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent2);
  border-color: var(--accent2);
  box-shadow: 0 8px 30px rgba(236, 102, 37, .35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: none;
  color: #fff;
  font-size: clamp(1rem, 3vw, 1.15rem);
  padding: .7rem 1.2rem;
  border: 1.5px solid transparent;
  line-height: 1;
}

.btn-secondary:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* === FOOTER === */
footer {
  position: relative;
  z-index: 1;
  padding: 2rem 2rem .3rem;
  border-top: 1px solid rgba(244, 233, 230, .08);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.footer-address .name {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .04em;
  color: var(--accent);
}

.address-link {
  font-size: .95rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 300;
  text-decoration: none;
  display: inline-block;
  transition: opacity .2s;
}

.address-link:hover {
  opacity: .7;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding-top: calc(0.85rem * 1.2 + 0.4rem);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.5;
  letter-spacing: 0;
  transition: color .2s;
}

.social-link:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 960px;
  margin: .6rem auto 0;
  padding-top: .6rem;
  text-align: center;
  font-size: .75rem;
  color: #fff;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === COOKIE BANNER === */
#cookie-banner {
  background: rgba(19, 24, 45, .97);
  border-top: 1px solid rgba(244, 233, 230, .1);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  animation: fadeUp .4s cubic-bezier(.22, 1, .36, 1) both;
}

#cookie-banner p {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: .82rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

#cookie-banner a {
  color: var(--accent);
  text-decoration: none;
}

#cookie-banner a:hover {
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem 1.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .2s, border-color .2s, color .2s;
  line-height: 1;
}

.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cookie-btn-accept:hover {
  background: var(--accent2);
  border-color: var(--accent2);
}

.cookie-btn-reject {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
}

.cookie-btn-reject:hover {
  border-color: #fff;
}

/* === PRIVACY MODAL === */
#privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

#privacy-modal.open {
  display: flex;
}

.modal-box {
  background: #13182D;
  border: 1px solid rgba(244, 233, 230, .1);
  border-radius: 8px;
  max-width: 620px;
  width: 100%;
  max-height: 85dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(244, 233, 230, .08);
  flex-shrink: 0;
}

.modal-header h2 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}

.modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .5);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: .2rem .4rem;
  transition: color .2s;
}

.modal-close:hover {
  color: #fff;
}

.modal-body {
  overflow-y: auto;
  padding: 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.7;
}

.modal-body h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  margin: 1.2rem 0 .4rem;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  margin-bottom: .6rem;
}

.modal-body a {
  color: var(--accent);
  text-decoration: none;
}

.modal-body a:hover {
  text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 480px) {
  #cookie-banner {
    padding: .85rem 1rem;
    gap: 1rem;
  }

  .cookie-btns {
    width: 100%;
    justify-content: flex-end;
  }

  .footer-socials {
    padding-top: 0;
  }

  .footer-inner {
    flex-direction: column;
    gap: .8rem;
  }

  .cta-group {
    max-width: 100%;
  }
}
