/* ============================================
   DESIGN SYSTEM — E.Leclerc Brico Jardi Animalerie
   ============================================ */

:root {
  /* Brand Colors — Extracted from official E.Leclerc logos */
  --leclerc-blue: #005ABB;
  --leclerc-blue-dark: #003F7F;
  --leclerc-blue-light: #0070E0;
  --leclerc-red: #E2001A;
  --leclerc-red-light: #FF1A35;

  /* Universe Colors — From official chartes graphiques */
  --brico-color: #F18E00;
  --brico-brown: #5A4137;
  --brico-gradient: linear-gradient(135deg, #F18E00, #FFA726);
  --jardi-color: #46693C;
  --jardi-gradient: linear-gradient(135deg, #46693C, #5B8A4E);
  --anima-color: #6D5047;
  --anima-accent: #F18E00;
  --anima-gradient: linear-gradient(135deg, #6D5047, #8B6B61);

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Functional */
  --bg-primary: var(--white);
  --bg-secondary: var(--gray-50);
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-400);
  --border-color: var(--gray-200);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 40px rgba(0, 90, 187, 0.15);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition-base);
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.navbar__logo {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--leclerc-blue);
  letter-spacing: -0.02em;
}

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

.navbar__subtitle {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar__nav {
  display: flex;
  gap: var(--space-xl);
}

.navbar__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
  padding: var(--space-sm) 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--leclerc-blue);
  border-radius: 1px;
  transition: var(--transition-base);
}

.navbar__link:hover {
  color: var(--leclerc-blue);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-base);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #001d3d 0%, #003566 30%, #005ABB 60%, #0070E0 100%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(70, 105, 60, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(241, 142, 0, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(109, 80, 71, 0.15) 0%, transparent 60%);
  animation: heroBgPulse 8s ease-in-out infinite alternate;
}

@keyframes heroBgPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  text-align: center;
  padding: var(--space-xl);
  z-index: 1;
}

.hero__title {
  margin-bottom: var(--space-xl);
}

.hero__title-line {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero__title-sub {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-top: var(--space-md);
  letter-spacing: 0.05em;
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-2xl);
  font-weight: 300;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--white);
  color: var(--leclerc-blue);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ============ SECTIONS ============ */
.section {
  padding: var(--space-4xl) 0;
}

.section:nth-child(even) {
  background: var(--bg-secondary);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--leclerc-blue);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  letter-spacing: 0.03em;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ============ HIGHLIGHTS SLIDER ============ */
.highlights__slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.highlights__track {
  display: flex;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.highlights__slide {
  min-width: 100%;
  padding: var(--space-md);
}

.highlights__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  min-height: 300px;
  transition: var(--transition-base);
}

.highlights__card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.highlights__card-visual {
  flex: 0 0 40%;
  background: linear-gradient(135deg, var(--leclerc-blue), var(--leclerc-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.highlights__card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlights__card-visual-placeholder {
  font-size: 5rem;
  opacity: 0.3;
  animation: floatEmoji 3s ease-in-out infinite;
}

@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.highlights__card-body {
  flex: 1;
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlights__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(226, 0, 26, 0.08);
  color: var(--leclerc-red);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
  width: fit-content;
}

.highlights__card-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--leclerc-red);
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.highlights__card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.highlights__card-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.highlights__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-lg);
  color: var(--leclerc-blue);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.highlights__card-link:hover {
  gap: 12px;
}

/* Slider Controls */
.highlights__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-lg) 0 var(--space-sm);
}

.highlights__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.highlights__arrow:hover {
  background: var(--leclerc-blue);
  border-color: var(--leclerc-blue);
  box-shadow: var(--shadow-md);
}

.highlights__arrow:hover svg {
  stroke: var(--white);
}

.highlights__arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-secondary);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlights__dots {
  display: flex;
  gap: 8px;
}

.highlights__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.highlights__dot--active {
  background: var(--leclerc-blue);
  width: 28px;
  border-radius: 5px;
}

/* ============ TABS (UNIVERS) ============ */
.tabs {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.tabs__btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--white);
  border: 2px solid var(--border-color);
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.tabs__btn:hover {
  border-color: var(--gray-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tabs__btn--active[data-tab="bricolage"] {
  background: var(--brico-gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(241, 142, 0, 0.3);
}

.tabs__btn--active[data-tab="jardinerie"] {
  background: var(--jardi-gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(70, 105, 60, 0.3);
}

.tabs__btn--active[data-tab="animalerie"] {
  background: var(--anima-gradient);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(109, 80, 71, 0.3);
}

.tabs__icon {
  font-size: 1.3rem;
}

.tabs__icon-img {
  height: 28px;
  width: 28px;
  object-fit: contain;
  transition: var(--transition-base);
}

.tabs__icon-img--wide {
  width: 60px;
  height: 24px;
}

.tabs__btn--active .tabs__icon-img {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.tabs__label {
  font-size: 0.95rem;
}

/* Tab Panel */
.tabs__panel {
  display: none;
  animation: fadeIn 400ms ease;
}

.tabs__panel--active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.universe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.universe__main {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.universe__main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.universe__main[data-universe="bricolage"]::before { background: var(--brico-gradient); }
.universe__main[data-universe="jardinerie"]::before { background: var(--jardi-gradient); }
.universe__main[data-universe="animalerie"]::before { background: var(--anima-gradient); }

.universe__icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.universe__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.universe__desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.universe__categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.universe__category {
  padding: 6px 14px;
  background: var(--gray-100);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.universe__category:hover {
  background: var(--gray-200);
  color: var(--text-primary);
}

/* Services */
.universe__services {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.universe__services-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: var(--space-md);
  transition: var(--transition-base);
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--gray-50);
}

.service-card__content {
  flex: 1;
}

.service-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.service-card__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============ INFO SECTION ============ */
.info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.info__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  border: 1px solid var(--border-color);
}

.info__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.info__card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.info__card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.info__address {
  font-style: normal;
  color: var(--text-secondary);
  line-height: 1.8;
}

.info__address strong {
  color: var(--text-primary);
  display: block;
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.info__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: 10px 20px;
  background: var(--leclerc-blue);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.info__phone:hover {
  background: var(--leclerc-blue-dark);
  transform: translateY(-2px);
}

/* Hours table */
.info__hours-table {
  width: 100%;
  border-collapse: collapse;
}

.info__hours-table tr {
  border-bottom: 1px solid var(--gray-100);
}

.info__hours-table tr:last-child {
  border-bottom: none;
}

.info__hours-table td {
  padding: 10px 0;
  font-size: 0.9rem;
}

.info__hours-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  text-transform: capitalize;
}

.info__hours-table td:last-child {
  text-align: right;
  color: var(--text-secondary);
}

.info__hours-table tr.info__hours-today {
  background: rgba(0, 90, 187, 0.04);
  border-radius: var(--radius-sm);
}

.info__hours-table tr.info__hours-today td {
  color: var(--leclerc-blue);
  font-weight: 600;
}

.info__hours-closed {
  color: var(--leclerc-red) !important;
  font-weight: 600 !important;
}

/* Map */
.info__card--map {
  grid-column: span 1;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  margin-bottom: var(--space-sm);
}

.footer__logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-sm);
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-500);
}

.footer__links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-500);
  padding: 6px 0;
  transition: var(--transition-fast);
}

.footer__links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer__bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: var(--space-xl);
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ============ SCROLL ANIMATIONS ============ */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */

/* Tablet */
@media (max-width: 1024px) {
  .universe {
    grid-template-columns: 1fr;
  }

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

  .info__card--map {
    grid-column: span 2;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding: var(--space-xl);
    gap: var(--space-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition-base);
    pointer-events: none;
  }

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

  .navbar__burger {
    display: flex;
  }

  .navbar__burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .navbar__burger--active span:nth-child(2) {
    opacity: 0;
  }
  .navbar__burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: 85vh;
  }

  .hero__title-line {
    font-size: 2rem;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .tabs {
    gap: var(--space-sm);
  }

  .tabs__btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .tabs__label {
    display: none;
  }

  .tabs__icon {
    font-size: 1.5rem;
  }

  .tabs__icon-img {
    height: 32px;
    width: 32px;
  }

  .tabs__icon-img--wide {
    width: 50px;
    height: 28px;
  }

  .highlights__card {
    flex-direction: column;
    min-height: auto;
  }

  .highlights__card-visual {
    flex: 0 0 180px;
  }

  .highlights__card-body {
    padding: var(--space-xl);
  }

  .highlights__card-title {
    font-size: 1.25rem;
  }

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

  .info__card--map {
    grid-column: span 1;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

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

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

  .btn {
    width: 100%;
    justify-content: center;
  }
}
