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

:root {
  --red:        #e01f26;
  --red-dark:   #b01820;
  --black:      #111111;
  --dark:       #1a1a1a;
  --dark-2:     #222222;
  --white:      #ffffff;
  --gray-bg:    #f5f5f5;
  --muted:      #888888;
  --font-h:     'Oswald', sans-serif;
  --font-b:     'DM Sans', sans-serif;
  --ease:       0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); font-size: 15px; color: var(--black); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- Shared section helpers ---- */
.section { padding: 90px 5%; }
.section--gray { background: var(--gray-bg); }
.section--dark { background: var(--dark); }

.section__tag {
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}
.section__title--white { color: var(--white); }
.section__desc { color: var(--muted); max-width: 560px; line-height: 1.8; margin-bottom: 32px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-h); font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  border: none; cursor: pointer; transition: var(--ease);
}
.btn--red  { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--dark { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn--dark:hover { background: var(--black); color: var(--white); }

/* ---- Page hero banner (reused on inner pages) ---- */
.page-banner {
  position: relative;
  height: 320px;
  display: flex; align-items: center;
  background: var(--dark);
  overflow: hidden;
  margin-top: 70px;
}
.page-banner__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.page-banner__content { position: relative; z-index: 2; padding: 0 5%; }
.page-banner__breadcrumb {
  font-family: var(--font-h); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); margin-bottom: 12px;
}
.page-banner__title {
  font-family: var(--font-h); font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; text-transform: uppercase; color: var(--white); line-height: 1.1;
}

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px;
  background: transparent;
  transition: background var(--ease), box-shadow var(--ease);
}
.navbar.scrolled { background: var(--black); box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.navbar.solid     { background: var(--black); }

.navbar__logo {
  font-family: var(--font-h); font-size: 24px; font-weight: 700;
color: var(--white); letter-spacing: 1px; text-transform: uppercase; }

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

.navbar__logo img { height: 65px; width: auto; }

.navbar__logo span { color: var(--red); }

.navbar__nav { display: flex; gap: 36px; }
.navbar__nav a {
  font-family: var(--font-h); font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--white);
  position: relative; padding-bottom: 4px; transition: color var(--ease);
}
.navbar__nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red); transition: width var(--ease);
}
.navbar__nav a:hover,
.navbar__nav a.active { color: var(--red); }
.navbar__nav a:hover::after,
.navbar__nav a.active::after { width: 100%; }

.navbar__toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px; z-index: 1001;
}
.navbar__toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--ease); }

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__nav.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--black);
    align-items: center; justify-content: center;
    gap: 28px; z-index: 999;
  }
  .navbar__nav.open a { font-size: 22px; }
  .navbar__toggle { display: flex; }
}

/* ============================================================
   INFO BAR
   ============================================================ */
.info-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.info-bar__item {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 36px; background: var(--dark-2); transition: filter var(--ease);
}
.info-bar__item--highlight { background: var(--red); }
.info-bar__item:hover { filter: brightness(1.1); }
.info-bar__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-bar__icon svg { width: 20px; height: 20px; fill: var(--white); }
.info-bar__label { font-family: var(--font-h); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.info-bar__value { font-size: 15px; font-weight: 500; color: var(--white); }
.info-bar__value a { position: relative; cursor: pointer; color: inherit; transition: var(--ease); }

.info-bar__value a::after { 
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0%; height: 1.5px;
  background: var(--black); transition: var(--ease); 
}
.info-bar__value a:hover { color: var(--black); }
.info-bar__value a:hover::after { width: 100%; }

.info-bar__value a.location__info { position: relative; color: var(--white); cursor: pointer; transition: var(--ease); }
.info-bar__value a.location__info::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1.5px;
  background: var(--red-dark);
  transition: var(--ease);
}
.info-bar__value a.location__info:hover { color: var(--red); transform: translateY(-1px); }
.info-bar__value a.location__info:hover::after { width: 100%; }

@media (max-width: 768px) { .info-bar { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--black); padding: 70px 5% 0; color: rgba(255,255,255,0.55); }

.footer__grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo { font-family: var(--font-h); font-size: 26px; font-weight: 700; color: var(--white); text-transform: uppercase; margin-bottom: 16px; }
.footer__logo span { color: var(--red); }
.footer__about { font-size: 13px; line-height: 1.8; margin-bottom: 24px; }

.footer__social { display: flex; gap: 10px; }
.footer__social img { width: 20px; height: 20px; }
.footer__social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.5); transition: var(--ease);
}
.footer__social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }

.footer__heading {
  font-family: var(--font-h); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; color: var(--white);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--red); display: inline-block;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color var(--ease); display: flex; align-items: center; gap: 8px; }
.footer__links a::before { content: '›'; color: var(--red); }
.footer__links a:hover { color: var(--red); }

.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; margin-bottom: 12px; }
.footer__contact-item svg { width: 16px; height: 16px; fill: var(--dark-2); flex-shrink: 0; margin-top: 2px; }

.footer__bottom {
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px;
}
.footer__bottom span { color: var(--red); }

/* ---- Back to top ---- */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 44px; height: 44px; background: var(--red); color: var(--white);
  border: none; cursor: pointer; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(10px); transition: var(--ease);
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); }

@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px)  { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 480px)  { .section { padding: 60px 5%; } }
