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

:root {
  --primary: #1a0a0a;
  --secondary: #6b0f1a;
  --accent: #c9932a;
  --accent2: #e8b84b;
  --cream: #f5ede0;
  --light-gold: #fdf3dc;
  --white: #ffffff;
  --grey: #f2ede8;
  --text: #1a0a0a;
  --muted: #7a5c4a;
  --border: rgba(201, 147, 42, 0.25);

  --ff-head: "Oswald", sans-serif;
  --ff-body: "Lato", sans-serif;

  --radius: 6px;
  --shadow: 0 4px 24px rgba(26, 10, 10, 0.15);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn--primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent2);
  border-color: var(--accent2);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: var(--primary);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.age-gate__box {
  background: #260c0c;
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
}
.age-gate__logo {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.age-gate__logo span {
  color: var(--white);
}
.age-gate__icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.age-gate__box h2 {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.age-gate__box p {
  color: #c0a898;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.age-gate__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.age-gate__buttons .btn {
  min-width: 140px;
}
.age-gate[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #260c0c;
  border-top: 2px solid var(--accent);
  padding: 1.25rem 1.5rem;
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-banner p {
  color: #c0a898;
  font-size: 0.88rem;
  line-height: 1.6;
}
.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner__actions .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
}
.cookie-banner__toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--ff-body);
}
.cookie-settings {
  display: none;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.cookie-settings.open {
  display: block;
}
.cookie-settings__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}
.cookie-cat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(201, 147, 42, 0.07);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem;
}
.cookie-cat input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.cookie-cat label strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}
.cookie-cat label span {
  color: #c0a898;
  font-size: 0.8rem;
  line-height: 1.5;
}
.cookie-banner[hidden] {
  display: none !important;
}

.header {
  position: sticky;
  top: 0;
  z-index: 800;
  background: var(--primary);
  border-bottom: 2px solid var(--accent);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.header__logo {
  font-family: var(--ff-head);
  font-size: 1.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  white-space: nowrap;
}
.header__logo span {
  color: var(--white);
}
.header__logo .maple-icon {
  color: var(--accent);
  margin: 0 0.15rem;
  font-size: 1.1rem;
}

.nav__links {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.header__actions .btn {
  font-size: 0.88rem;
  padding: 0.5rem 1.1rem;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0 9px;
  flex-shrink: 0;
}
.burger__line {
  display: block;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open .burger__line:nth-child(2) {
  opacity: 0;
}
.burger.open .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__drawer {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--primary);
  border-bottom: 2px solid var(--accent);
  z-index: 790;
  transform: translateY(-110%);
  transition: transform 0.32s ease;
  padding: 1.25rem;
}
.nav__drawer.open {
  transform: translateY(0);
}
.nav__drawer a {
  display: block;
  padding: 0.75rem 0;
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav__drawer a:last-child {
  border-bottom: none;
}
.nav__drawer a:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 10, 10, 0.92) 0%,
    rgba(107, 15, 26, 0.7) 50%,
    rgba(26, 10, 10, 0.6) 100%
  );
}
.hero::after {
  content: "\f04e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  font-size: 28rem;
  color: rgba(201, 147, 42, 0.04);
  pointer-events: none;
  line-height: 1;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 147, 42, 0.15);
  border: 1px solid rgba(201, 147, 42, 0.35);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-family: var(--ff-head);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1.5rem;
}
.hero__badge i {
  color: var(--accent);
}
.hero__title {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero__title em {
  color: var(--accent);
  font-style: normal;
  display: block;
}
.hero__text {
  color: #c8b8a8;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: #c8b8a8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

section {
  padding: 5rem 0;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 147, 42, 0.1);
  border: 1px solid rgba(201, 147, 42, 0.3);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-family: var(--ff-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.section-title span {
  color: var(--secondary);
}
.section-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}
.section-header {
  margin-bottom: 3rem;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-desc {
  margin: 0 auto;
}

.services {
  background: var(--cream);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.service-card:hover::before {
  transform: scaleY(1);
}
.service-card__icon {
  width: 54px;
  height: 54px;
  background: rgba(107, 15, 26, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--secondary);
  color: var(--accent);
}
.service-card h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  color: var(--primary);
}
.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.about {
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.about-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.about-card__img {
  height: 200px;
  background: #c4a882 url("../images/about-1.jpg") center/cover no-repeat;
  position: relative;
}
.about-card:nth-child(2) .about-card__img {
  background-image: url("../images/about-2.jpg");
}
.about-card:nth-child(3) .about-card__img {
  background-image: url("../images/about-3.jpg");
}
.about-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(26, 10, 10, 0.7) 100%
  );
}
.about-card__body {
  padding: 1.5rem;
}
.about-card__body h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.about-card__body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.testimonials {
  background: var(--primary);
  padding: 5rem 0;
}
.testimonials .section-title {
  color: var(--white);
}
.testimonials .section-desc {
  color: #c8b8a8;
}
.testimonials .section-label {
  background: rgba(201, 147, 42, 0.15);
  border-color: rgba(201, 147, 42, 0.3);
}
.slider {
  position: relative;
  overflow: hidden;
}
.slider__track {
  display: flex;
  transition: transform 0.45s ease;
}
.slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 147, 42, 0.2);
  border-radius: 12px;
  padding: 2rem;
}
.testimonial-card__stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1rem;
}
.testimonial-card__text {
  color: #d8cac0;
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}
.testimonial-card__meta {
  font-size: 0.8rem;
  color: #9a8878;
}
.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.slider__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201, 147, 42, 0.3);
  background: transparent;
  color: var(--accent);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider__btn:hover {
  background: var(--accent);
  color: var(--primary);
}
.slider__dots {
  display: flex;
  gap: 0.5rem;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 147, 42, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.slider__dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.top-sports {
  background: var(--cream);
}
.sports__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.sport-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: var(--transition);
}
.sport-card__bg {
  position: absolute;
  inset: 0;
  background: #8a5a3a center/cover no-repeat;
  transition: transform 0.4s ease;
}
.sport-card:nth-child(1) .sport-card__bg {
  background-image: url("../images/sport-hockey.jpg");
}
.sport-card:nth-child(2) .sport-card__bg {
  background-image: url("../images/sport-football.jpg");
}
.sport-card:nth-child(3) .sport-card__bg {
  background-image: url("../images/sport-basketball.jpg");
}
.sport-card:nth-child(4) .sport-card__bg {
  background-image: url("../images/sport-soccer.jpg");
}
.sport-card:nth-child(5) .sport-card__bg {
  background-image: url("../images/sport-tennis.jpg");
}
.sport-card:nth-child(6) .sport-card__bg {
  background-image: url("../images/sport-mma.jpg");
}
.sport-card:hover .sport-card__bg {
  transform: scale(1.06);
}
.sport-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 10, 10, 0.88) 0%,
    transparent 60%
  );
}
.sport-card__content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}
.sport-card__icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}
.sport-card__name {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.sport-card__desc {
  font-size: 0.82rem;
  color: #d8cac0;
  line-height: 1.5;
}
.sport-card__cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  opacity: 0;
  transition: opacity var(--transition);
}
.sport-card:hover .sport-card__cta {
  opacity: 1;
}

.faq {
  background: var(--white);
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: var(--accent);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--primary);
  transition: color var(--transition);
}
.faq-item.open .faq-item__q {
  color: var(--secondary);
}
.faq-item__icon {
  font-size: 0.9rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.faq-item.open .faq-item__a {
  max-height: 400px;
}
.faq-item__a p {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(26, 10, 10, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay[hidden] {
  display: none !important;
}
.modal {
  background: #260c0c;
  border: 1px solid rgba(201, 147, 42, 0.25);
  border-radius: 14px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0;
}
.modal__title {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 147, 42, 0.1);
  border: 1px solid rgba(201, 147, 42, 0.2);
  color: var(--accent);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal__close:hover {
  background: var(--accent);
  color: var(--primary);
}
.modal__form {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal__form[hidden] {
  display: none;
}
.modal__success {
  padding: 2rem 1.5rem;
  text-align: center;
}
.modal__success[hidden] {
  display: none;
}
.modal__success-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.modal__success h3 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.modal__success p {
  color: #c8b8a8;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent2);
}
.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 147, 42, 0.2);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.07);
}
.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-group select option {
  background: #260c0c;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #c8b8a8;
  line-height: 1.5;
}
.form-check input {
  accent-color: var(--accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.form-check a {
  color: var(--accent);
  text-decoration: underline;
}
.modal__footer {
  padding: 0 1.5rem 1.5rem;
  text-align: center;
}
.modal__switch {
  font-size: 0.88rem;
  color: #9a8878;
}
.modal__switch a {
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
}

.footer {
  background: var(--primary);
  color: var(--white);
  padding-top: 4rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 147, 42, 0.12);
}
.footer__brand-logo {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.footer__brand-logo span {
  color: var(--white);
}
.footer__brand-desc {
  color: #9a8878;
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.footer__social {
  display: flex;
  gap: 0.65rem;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 147, 42, 0.25);
  background: rgba(201, 147, 42, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0a898;
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}
.footer__col-title {
  font-family: var(--ff-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__col ul li a,
.footer__col ul li button {
  color: #c0a898;
  font-size: 0.88rem;
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  padding: 0;
  text-align: left;
}
.footer__col ul li a:hover,
.footer__col ul li button:hover {
  color: var(--accent);
}

.footer__rg {
  background: #1e0808;
  border-left: 4px solid #c0392b;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}
.footer__rg-title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ff6b6b;
  margin-bottom: 1.25rem;
}
.footer__rg-title i {
  margin-right: 0.5rem;
}
.footer__rg-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer__rg-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer__rg-card-icon {
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.footer__rg-card strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}
.footer__rg-card span {
  font-size: 0.78rem;
  color: #9a8878;
  line-height: 1.4;
}
.footer__rg-card a {
  color: #ff6b6b;
}
.footer__rg-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.footer__rg-pill {
  background: none;
  border: 1px solid rgba(192, 57, 43, 0.4);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-family: var(--ff-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ff9999;
  cursor: pointer;
  transition: var(--transition);
}
.footer__rg-pill:hover {
  background: rgba(192, 57, 43, 0.2);
}
.footer__rg-note {
  font-size: 0.8rem;
  color: #9a8878;
  line-height: 1.6;
}
.footer__rg-note a {
  color: #ff9999;
  text-decoration: underline;
}

.footer__reg-pay-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(201, 147, 42, 0.1);
  border-bottom: 1px solid rgba(201, 147, 42, 0.1);
  flex-wrap: wrap;
}
.footer__regulators {
  flex: 1;
  min-width: 0;
}
.footer__regulators-label {
  font-family: var(--ff-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a5c4a;
  margin-bottom: 0.75rem;
}
.footer__reg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.footer__reg-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c0a898;
}
.footer__reg-badge.green {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.25);
  background: rgba(74, 222, 128, 0.07);
}

.footer__payments {
  flex-shrink: 0;
}
.footer__payments-label {
  font-family: var(--ff-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a5c4a;
  margin-bottom: 0.75rem;
}
.footer__pay-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
.footer__pay-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}
.footer__pay-badge.interac {
  color: #f5a623;
  border-color: rgba(245, 166, 35, 0.3);
  background: rgba(245, 166, 35, 0.07);
}
.footer__pay-badge.mastercard {
  color: #eb5757;
  border-color: rgba(235, 87, 87, 0.3);
  background: rgba(235, 87, 87, 0.07);
}

.footer__legal {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(201, 147, 42, 0.08);
}
.footer__legal p {
  font-size: 0.78rem;
  color: #5c4030;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.footer__legal p:last-child {
  margin-bottom: 0;
}
.footer__legal a {
  color: #7a5c4a;
  text-decoration: underline;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: #5c4030;
}
.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__bottom-links a {
  font-size: 0.8rem;
  color: #5c4030;
  transition: color var(--transition);
}
.footer__bottom-links a:hover {
  color: var(--accent);
}
.footer__lang {
  display: flex;
  gap: 0.5rem;
}
.footer__lang a {
  font-size: 0.8rem;
  color: #5c4030;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(201, 147, 42, 0.2);
  border-radius: 3px;
  transition: var(--transition);
}
.footer__lang a:hover,
.footer__lang a.active {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 1024px) {
  .footer__rg-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__top > *:first-child {
    grid-column: 1 / -1;
  }
  .footer__reg-pay-row {
    flex-direction: column;
    gap: 1.25rem;
  }
}
@media (max-width: 640px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__top > *:first-child {
    grid-column: auto;
  }
  .footer__rg-cards {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero__stats {
    gap: 1.5rem;
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.legal-hero {
  background: var(--primary);
  padding: 3rem 0 2rem;
  border-bottom: 2px solid var(--accent);
}
.legal-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}
.legal-hero p {
  color: #c0a898;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
.legal-content {
  padding: 3rem 0 5rem;
}
.legal-content h2 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 2rem 0 0.75rem;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
}
.legal-content ul li {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 0.35rem;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}
