/*
Theme Name: 5R Outdoor
Theme URI: https://5routdoor.com
Author: 5R Outdoor Advertising Corp.
Author URI: https://5routdoor.com
Description: Static HTML prototype for WordPress Block Theme migration.
Version: 0.3.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.1
License: Proprietary
Text Domain: fiver-outdoor
*/

/* ─── RESET & BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
/*
 * WP preset tokens match the slugs defined in theme.json.
 * Short aliases let existing CSS continue to work unchanged
 * while the WP template layer uses the --wp--preset-- names.
 */
:root {
  /* WP color tokens */
  --wp--preset--color--primary:       #1754fc;
  --wp--preset--color--primary-dark:  #0e35a1;
  --wp--preset--color--dark:          #1d232b;
  --wp--preset--color--nav-bg:        #e5e5e5;
  --wp--preset--color--gray-bg:       #F7F7F7;
  --wp--preset--color--footer-bg:     #ececec;
  --wp--preset--color--text:          #282828;
  --wp--preset--color--muted:         #606060;
  --wp--preset--color--border:        #8a8a8a;
  --wp--preset--color--border-light:  #e5e5e5;

  /* Short aliases */
  --blue:      var(--wp--preset--color--primary);
  --blue-dk:   var(--wp--preset--color--primary-dark);
  --dark:      var(--wp--preset--color--dark);
  --nav-bg:    var(--wp--preset--color--nav-bg);
  --gray-bg:   var(--wp--preset--color--gray-bg);
  --footer-bg: var(--wp--preset--color--footer-bg);
  --text:      var(--wp--preset--color--text);
  --muted:     var(--wp--preset--color--muted);
  --border:    var(--wp--preset--color--border);
  --border-lt: var(--wp--preset--color--border-light);

  /* WP font-size tokens */
  --wp--preset--font-size--small:    0.875rem;
  --wp--preset--font-size--medium:   1rem;
  --wp--preset--font-size--large:    1.25rem;
  --wp--preset--font-size--x-large:  1.5rem;

  /* Misc shared tokens */
  --radius:    20px;
  --radius-sm: 9px;
  --trans:     .3s ease;
  --shadow:    0 4px 21px 1px rgba(0, 0, 0, .45);
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
}

/* ─── UTILITIES ─────────────────────────────────────────────── */
.container {
  max-width: 1373px;
  margin: 0 auto;
  padding: 0 80px;
}

/* Section header pattern */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.section-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #000;
  letter-spacing: 0;
  line-height: 1.9;
}

.section-underline {
  width: 96px;
  height: 4px;
  background: var(--blue);
}

.section-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #000;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 48px;
}

.section-title span {
  color: var(--blue);
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-hero,
.btn-hero-outline {
  min-width: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: .875rem;
  font-weight: 500;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 1.8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--trans), border-color var(--trans), transform var(--trans);
  white-space: nowrap;
  line-height: 1;
  border: none;
}

.btn-hero svg,
.btn-hero-outline svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-hero {
  background: var(--blue);
  color: #e5e5e5;
  border: 2px solid var(--blue);
}

.btn-hero:hover {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: #e5e5e5;
  border: 1px solid #e5e5e5;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-talktous {
  background: var(--blue);
  color: #e5e5e5;
  border: none;
  padding: 8px 24px;
  border-radius: 0;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .6px;
  cursor: pointer;
  transition: background-color var(--trans);
  display: inline-flex;
  align-items: center;
}

.btn-talktous:hover {
  background: var(--blue-dk);
}

.btn-primary {
  background: var(--blue);
  color: #e5e5e5;
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1.8px;
  cursor: pointer;
  transition: background-color var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--blue-dk);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1.8px;
  cursor: pointer;
  transition: background-color var(--trans), color var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
}

.btn-cta-fill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--blue);
  color: #e5e5e5;
  border: 1px solid var(--blue);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 1.8px;
  cursor: pointer;
  transition: background-color var(--trans);
  box-shadow: 0 0 10px rgba(0, 242, 255, .3), inset 0 0 10px 1px rgba(0, 242, 255, .3);
}

.btn-cta-fill:hover {
  background: var(--blue-dk);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: rgba(255, 255, 255, .01);
  color: #e5e5e5;
  border: 1px solid var(--blue);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 1.8px;
  cursor: pointer;
  transition: background-color var(--trans);
  box-shadow: 0 0 10px rgba(0, 242, 255, .3), inset 0 0 10px 1px rgba(0, 242, 255, .3);
}

.btn-cta-outline:hover {
  background: rgba(23, 84, 252, .15);
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
/*
 * backdrop-filter removed: --nav-bg (#e5e5e5) is fully opaque,
 * so the blur had no visual effect.
 */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: var(--nav-bg);
  border-bottom: 2.5px solid #6b7280;
  transition: box-shadow var(--trans);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .15);
}

.navbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 93px;
}

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

.navbar__logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-self: center;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0;
  line-height: 1.5;
  transition: color var(--trans);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--blue);
}

.nav-link.current-menu-item,
.nav-link.active {
  font-weight: 700;
  color: var(--blue);
}

.navbar__cta {
  justify-self: end;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  justify-self: end;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 10, 20, .4) 0%, rgba(5, 10, 20, .55) 60%, rgba(5, 10, 20, .75) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero__eyebrow {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 10px;
  color: #e1fdff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__eyebrow span {
  color: #e5e5e5;
}

.hero__logo-wrap {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 24px;
}

.hero__logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, .6));
}

.hero__tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #f8feff;
  font-size: 1.1rem;
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── HERO CAROUSEL ─────────────────────────────────────────── */
.hero__carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

/* Arrow buttons — solid dark circle */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.65);
  border: none;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero__arrow:hover {
  background: rgba(0, 0, 0, 0.88);
  transform: translateY(-50%) scale(1.08);
}

.hero__arrow--prev { left: 32px; }
.hero__arrow--next { right: 32px; }

/* Slide indicator dots */
.hero__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero__dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.hero__dot.is-active {
  background: #fff;
  width: 28px;
  border-radius: 4px;
}

/* ─── CHAT WIDGET ───────────────────────────────────────────── */
.chat-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2000;
  width: 54px;
  height: 54px;
  background: var(--blue);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(23, 84, 252, .55);
  transition: transform var(--trans);
}

.chat-toggle:hover {
  transform: scale(1.1);
}

.chat-toggle__icon {
  width: 24px;
  height: 24px;
  position: absolute;
  transition: opacity .25s ease, transform .25s ease;
}

.chat-toggle__icon--open {
  opacity: 1;
  transform: scale(1);
}

.chat-toggle__icon--close {
  opacity: 0;
  transform: scale(.5);
}

.chat-toggle.active .chat-toggle__icon--open {
  opacity: 0;
  transform: scale(.5);
}

.chat-toggle.active .chat-toggle__icon--close {
  opacity: 1;
  transform: scale(1);
}

.chat-widget {
  position: fixed;
  bottom: 94px;
  right: 28px;
  z-index: 1999;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.97);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

.chat-widget.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chat-widget__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--blue);
}

.chat-widget__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px;
}

.chat-widget__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chat-widget__info {
  flex: 1;
}

.chat-widget__name {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
}

.chat-widget__status {
  font-size: .72rem;
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.chat-widget__dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%,
  100% { opacity: 1; }
  50%   { opacity: .4; }
}

.chat-widget__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .8);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background-color var(--trans);
  flex-shrink: 0;
}

.chat-widget__close:hover {
  background: rgba(255, 255, 255, .15);
}

.chat-widget__close svg {
  width: 16px;
  height: 16px;
}

.chat-widget__body {
  padding: 20px 18px;
  background: #f8fafc;
}

.chat-widget__bubble {
  background: #fff;
  border-radius: 12px 12px 12px 4px;
  padding: 14px 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
}

.chat-widget__bubble p {
  font-size: .88rem;
  color: #374151;
  line-height: 1.65;
}

.chat-widget__footer {
  padding: 18px 18px 22px;
  background: #0d1117;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.chat-widget__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 14px;
}

.chat-widget__btns {
  display: flex;
  gap: 10px;
}

.chat-widget__btn {
  flex: 1;
  justify-content: center;
  padding: 11px 8px;
  font-size: .78rem;
  min-width: 0;
  letter-spacing: 1px;
}

/* ─── SERVICES ──────────────────────────────────────────────── */
.services {
  padding: 72px 0;
  background: var(--gray-bg);
}

.services__wrapper {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.service-card {
  flex: 1;
  padding: 40px 32px;
  border-right: 1px solid #d9d9d9;
  background: #fff;
  transition: box-shadow var(--trans);
  position: relative;
  cursor: pointer;
}

.service-card:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.service-card:last-child {
  border-right: none;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.service-card:hover {
  box-shadow: inset 0 0 0 2px var(--blue);
  z-index: 1;
}

.service-card--active {
  box-shadow: inset 0 0 0 5px var(--blue), 0 4px 21px 1px rgba(0, 0, 0, .45);
}

.service-card--active:first-child {
  border-radius: 19px 0 0 19px;
}

.service-card--active:last-child {
  border-radius: 0 19px 19px 0;
}

.service-card--active:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.service-card__icon {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 31px;
  height: 31px;
  stroke: var(--blue);
}

.service-card__icon img {
  width: 31px;
  height: 31px;
}

.service-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── BILLBOARD SOLUTIONS ───────────────────────────────────── */
.billboards {
  padding: 80px 0;
  background: #fff;
}

.billboards__header {
  margin-bottom: 40px;
}

.billboards__title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.billboards__sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #1f1f1f;
}

.billboards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.billboard-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.billboard-card__img {
  width: 100%;
  height: 662px;
  background-size: cover;
  background-position: center;
  display: block;
  position: relative;
}

.billboard-card__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--blue);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .625rem;
  letter-spacing: 0.5px;
  line-height: 1.5;
  text-transform: uppercase;
  z-index: 2;
}

.billboard-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--blue);
  padding: 24px 32px 28px 24px;
  border-radius: 0 40px 0 0;
  max-width: 80%;
  width: 560px;
  z-index: 2;
}

.billboard-card__info h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.billboard-card__info p {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  max-width: 420px;
}

/* ─── LOCATIONS (home page section) ─────────────────────────── */
.locations {
  padding: 80px 0;
  background: var(--gray-bg);
}

.locations__container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.locations__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.locations__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

.locations__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.locations__label {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.locations__heading {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #282828;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.locations__heading span {
  color: var(--blue);
}

.locations__content > p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #282828;
  line-height: 1.6;
  margin-bottom: 24px;
}

.locations__list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.locations__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #282828;
}

.locations__list svg {
  stroke: var(--blue);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

.locations__btn {
  align-self: flex-start;
}

/* ─── FEATURE SITES ─────────────────────────────────────────── */
.feature-sites {
  padding: 80px 0;
  background: #fff;
  border: 1px solid var(--border-lt);
}

.feature-sites__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.feature-sites__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 33px;
}

.site-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans), box-shadow var(--trans);
}

.site-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.site-card__img {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
}

.site-card__code {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0E35A2;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .625rem;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
}

.no-img-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 1;
}

.site-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-card__body h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  margin: 0;
}

.site-card__address {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

.site-card__meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 0;
  margin: 0;
}

.site-card__dim,
.site-card__traffic {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-card__dim span,
.site-card__traffic span {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-card__dim strong,
.site-card__traffic strong {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: .85rem;
  color: var(--text);
}

.site-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.site-card__tag {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.site-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 16px;
  border-radius: 0 0 16px 16px;
  transition: background-color var(--trans);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.site-card__cta:hover {
  background: var(--blue-dk);
}

/* ─── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  padding: 96px 0;
  background: var(--dark);
  border: 1px solid #8b8b8b;
  text-align: center;
}

.cta-banner__label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: 1rem;
  letter-spacing: 6.4px;
  margin-bottom: 16px;
}

.cta-banner h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  color: #e5e5e5;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #e5e5e5;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
}

/* ─── COMMUNITY ─────────────────────────────────────────────── */
.community {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.community__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid #3a494b;
  backdrop-filter: blur(6px);
}

.news-card--white {
  background: #fff;
}

.news-card__date {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: .625rem;
  line-height: 1.5;
}

.news-card h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 1.4rem;
  line-height: 1.25;
}

.news-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #131313;
  line-height: 1.5;
  flex: 1;
}

.news-card__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: .6875rem;
  padding-top: 8px;
  transition: color var(--trans);
}

.news-card__link:hover {
  color: var(--blue-dk);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid #3a494b;
  padding: 20px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  color: #000;
  letter-spacing: 1.8px;
  transition: color var(--trans);
}

.footer__links a:hover {
  color: var(--blue);
}

.footer__copy {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--blue);
  font-size: .75rem;
  letter-spacing: 1.8px;
  text-align: right;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .container {
    padding: 0 40px;
  }

  .feature-sites__grid {
    grid-template-columns: 1fr 1fr;
  }

  .community__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .billboards__grid {
    grid-template-columns: 1fr;
  }

  .locations__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .locations__image {
    height: auto;
  }

  .services__wrapper {
    flex-direction: column;
  }

  .service-card {
    border-right: none;
    border-bottom: 1px solid #d9d9d9;
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .service-card--active {
    border-radius: 19px 19px 0 0;
  }

  .feature-sites__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar__inner {
    display: flex;
    justify-content: space-between;
  }

  .navbar__nav,
  .navbar__cta {
    display: none;
  }

  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 93px;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    border-top: 1px solid #3a494b;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    padding: 16px 40px;
    gap: 4px;
    z-index: 999;
  }

  .hamburger {
    display: flex;
  }

  .hero__content {
    padding: 0 24px;
  }

  .community__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__copy {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 24px;
  }

  .community__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .billboards__grid {
    grid-template-columns: 1fr;
  }
}
