/* =============================================
   Belorix — CUSTOM CSS
   Neo Brutalist Design System
   ============================================= */


:root {
  --base-dark: #1a1208;
  --base-orange: #e85d04;
  --base-cream: #fdf6ec;

  --primary: var(--base-orange);
  --primary-light: color-mix(in oklch, var(--base-orange), white 45%);
  --primary-xlight: color-mix(in oklch, var(--base-orange), white 75%);
  --primary-dark: color-mix(in oklch, var(--base-orange), black 30%);

  --dark: var(--base-dark);
  --dark-mid: color-mix(in oklch, var(--base-dark), white 20%);
  --dark-light: color-mix(in oklch, var(--base-dark), white 55%);
  --dark-xlight: color-mix(in oklch, var(--base-dark), white 80%);

  --bg: var(--base-cream);
  --bg-alt: color-mix(in oklch, var(--base-cream), var(--base-orange) 6%);
  --bg-dark: color-mix(in oklch, var(--base-dark), white 5%);

  --text: color-mix(in oklch, var(--base-dark), white 8%);
  --text-muted: color-mix(in oklch, var(--base-dark), white 45%);
  --border: color-mix(in oklch, var(--base-dark), white 70%);
  --border-strong: color-mix(in oklch, var(--base-dark), white 20%);

  --shadow-hard: 4px 4px 0px var(--dark);
  --shadow-hard-lg: 6px 6px 0px var(--dark);
  --shadow-hard-primary: 4px 4px 0px var(--primary-dark);
  --shadow-offset-xl: 8px 8px 0px var(--dark);

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --nav-height: 72px;
  --font-head: 'Lora', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}


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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: inherit; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }

ul { list-style: none; }

address { font-style: normal; }


.pace .pace-progress {
  background: var(--primary);
  height: 3px;
}
.pace-inactive { display: none; }


.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--primary);
  z-index: 9999;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.page-transition--active { width: 100%; }


h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.75; color: var(--text-muted); }


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--bg);
  height: var(--nav-height);
  transition: background 0.3s ease;
}

.nav__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img { width: 36px; height: 36px; }

.nav__logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav__menu { margin-left: auto; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--primary);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.2rem;
  background: var(--primary);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--dark);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hard);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--dark);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid var(--dark);
  padding: 8px 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hard);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  flex-shrink: 0;
}
.nav__hamburger:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--dark); }

.nav__hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav__border-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--border-strong);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__border-line--visible {
  transform: translateX(-50%) scaleX(1);
}

/* =============================================
   MOBILE MENU — SLIDES FROM LEFT
   ============================================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -80%;
  width: 80%;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 1000;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu--open { left: 0; }

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: color-mix(in oklch, var(--dark), transparent 40%);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu__overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  min-height: 100vh;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--border);
}

.mobile-menu__brand {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}

.mobile-menu__close {
  background: none;
  border: 2px solid color-mix(in oklch, white, transparent 50%);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  transition: background 0.2s ease;
}
.mobile-menu__close:hover { background: color-mix(in oklch, white, transparent 80%); }

.mobile-menu__list { flex: 1; }

.mobile-menu__item {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu--open .mobile-menu__item { opacity: 1; transform: translateX(0); }
.mobile-menu--open .mobile-menu__item:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu--open .mobile-menu__item:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu--open .mobile-menu__item:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu--open .mobile-menu__item:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu--open .mobile-menu__item:nth-child(5) { transition-delay: 0.25s; }

.mobile-menu__link {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: color-mix(in oklch, white, transparent 15%);
  border-bottom: 1px solid color-mix(in oklch, white, transparent 80%);
  transition: color 0.2s ease;
}
.mobile-menu__link:hover { color: var(--primary); }

.mobile-menu__cta {
  display: block;
  margin-top: var(--space-lg);
  padding: 1rem;
  background: var(--primary);
  color: white;
  text-align: center;
  font-weight: 600;
  border: 2px solid color-mix(in oklch, var(--primary), white 30%);
  border-radius: var(--radius-sm);
  transition: opacity 0.2s ease;
}
.mobile-menu__cta:hover { opacity: 0.9; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid var(--dark);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  line-height: 1;
}

.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-hard);
}
.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hard-lg);
  background: var(--primary-dark);
}

.btn--outline {
  background: var(--dark-xlight);
  color: var(--text);
  box-shadow: var(--shadow-hard);
}
.btn--outline:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hard-lg);
  background: var(--dark-xlight);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  width: 100%;
}

.hero__text-block {
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: color-mix(in oklch, var(--primary), transparent 85%);
  border: 2px solid var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  background-image: url('images/chimney-sweep-hero.jpg');
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 2px color-mix(in oklch, white, transparent 30%);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: color-mix(in oklch, white, transparent 20%);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

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

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: color-mix(in oklch, white, transparent 40%);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

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

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
  padding: var(--space-2xl) 0;
  background: var(--bg);
}

.services__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.services__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.services__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.services__title {
  margin-bottom: var(--space-sm);
}

.services__desc { font-size: 1.05rem; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--bg);
  border: 2px solid var(--dark);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-offset-xl);
}

.service-card__icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--primary-xlight);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon {
  font-size: 1.4rem;
  color: var(--primary-dark);
}

.service-card__title { margin-bottom: 0; }

.service-card__body { flex: 1; }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s ease;
}
.service-card__link:hover { gap: 0.7rem; }

/* =============================================
   FEATURES / TABS SECTION
   ============================================= */
.features {
  padding: var(--space-2xl) 0;
  background: var(--bg-alt);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.features__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.features__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.features__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.features__tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.features__tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: left;
  transition: all 0.2s ease;
  box-shadow: 3px 3px 0 var(--border);
}
.features__tab:hover {
  border-color: var(--primary);
  color: var(--text);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--primary);
}
.features__tab--active {
  background: var(--primary);
  border-color: var(--dark);
  color: white;
  box-shadow: var(--shadow-hard);
  transform: translate(-2px, -2px);
}
.features__tab--active:hover {
  box-shadow: var(--shadow-hard-lg);
  transform: translate(-3px, -3px);
}

.features__tab i { font-size: 1rem; }

.features__panels { position: relative; }

.features__panel {
  display: none;
  background: var(--bg);
  border: 2px solid var(--dark);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard-lg);
}
.features__panel--active { display: block; }

.features__panel-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-xlight);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
}

.features__panel-title { margin-bottom: var(--space-sm); }

.features__panel-body { margin-bottom: var(--space-md); }

.features__panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.features__panel-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  background: var(--primary-xlight);
  border: 1.5px solid var(--primary-light);
  border-radius: var(--radius-sm);
  color: var(--primary-dark);
}

/* =============================================
   WHY SECTION
   ============================================= */
.why {
  padding: var(--space-2xl) 0;
  background: var(--bg);
}

.why__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.why__image-col { position: relative; }

.why__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 3px solid var(--dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-offset-xl);
}

.why__image-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--primary);
  color: white;
  border: 2px solid var(--dark);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hard);
}

.why__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.why__title { margin-bottom: var(--space-md); }

.why__body {
  margin-bottom: var(--space-sm);
  font-size: 1.02rem;
}

.why__content-col .btn { margin-top: var(--space-md); }

/* =============================================
   PROCESS SECTION
   ============================================= */
.process {
  padding: var(--space-2xl) 0;
  background: var(--bg-dark);
}

.process__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.process__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.process__title { color: white; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.process__step {
  background: color-mix(in oklch, var(--bg-dark), white 6%);
  border: 2px solid color-mix(in oklch, white, transparent 75%);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 4px 4px 0 color-mix(in oklch, var(--primary), transparent 70%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.process__step:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--primary);
}

.process__step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

.process__step-title {
  color: white;
  margin-bottom: var(--space-xs);
}

.process__step-body {
  color: color-mix(in oklch, white, transparent 35%);
  font-size: 0.95rem;
}

/* =============================================
   GALLERY STRIP
   ============================================= */
.gallery-strip {
  padding: var(--space-lg) 0;
  background: var(--bg-alt);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  overflow: hidden;
}

.gallery-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-strip__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 2px solid var(--dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-strip__img:hover {
  transform: translate(-3px, -3px) scale(1.01);
  box-shadow: var(--shadow-offset-xl);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: var(--space-2xl) 0;
  background: var(--primary-xlight);
  border-top: 3px solid var(--dark);
  border-bottom: 3px solid var(--dark);
}

.cta-section__container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.cta-section__title { margin-bottom: var(--space-sm); }

.cta-section__body {
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

.cta-section__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: var(--bg-dark);
  border-bottom: 3px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    color-mix(in oklch, var(--primary), transparent 94%) 30px,
    color-mix(in oklch, var(--primary), transparent 94%) 32px
  );
  pointer-events: none;
}

.page-hero__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

.page-hero__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.page-hero__title {
  color: white;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-sm);
}

.page-hero__subtitle {
  color: color-mix(in oklch, white, transparent 30%);
  max-width: 600px;
  font-size: 1.05rem;
}

/* =============================================
   AUDIENCE PAGE
   ============================================= */
.audience {
  padding: var(--space-2xl) 0;
  background: var(--bg);
}

.audience__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.audience__intro {
  max-width: 760px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.audience__lead {
  font-size: 1.1rem;
  color: var(--text);
}

.audience__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.audience__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  background: var(--bg);
  border: 2px solid var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hard-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.audience__card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-offset-xl);
}

.audience__card-img-wrap { overflow: hidden; }

.audience__card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.audience__card:hover .audience__card-img { transform: scale(1.03); }

.audience__card-body { padding: var(--space-lg); }

.audience__card-title { margin-bottom: var(--space-sm); }

.audience__card-text { font-size: 1rem; }

.audience-note {
  padding: var(--space-xl) 0;
  background: var(--bg-alt);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.audience-note__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.audience-note__box {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--bg);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard-primary);
}

.audience-note__icon {
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.audience-note__title { margin-bottom: var(--space-xs); }
.audience-note__text { font-size: 0.98rem; }

/* =============================================
   FREQUENCY SECTION
   ============================================= */
.frequency {
  padding: var(--space-2xl) 0;
  background: var(--bg);
}

.frequency__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.frequency__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.frequency__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}

.frequency__item {
  background: var(--bg);
  border: 2px solid var(--dark);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.frequency__item:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hard-lg);
}

.frequency__item-icon {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.frequency__item-title { margin-bottom: var(--space-xs); }

.frequency__item-body { font-size: 0.95rem; }

/* =============================================
   PACKAGES PAGE
   ============================================= */
.packages {
  padding: var(--space-2xl) 0;
  background: var(--bg);
}

.packages__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.package-card {
  background: var(--bg);
  border: 2px solid var(--dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.package-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-offset-xl);
}
.package-card--featured {
  border-color: var(--primary);
  box-shadow: 6px 6px 0 var(--primary-dark);
}
.package-card--featured:hover {
  box-shadow: 8px 8px 0 var(--primary-dark);
}

.package-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-card__header {
  padding: var(--space-lg) var(--space-lg) var(--space-sm);
  border-bottom: 2px solid var(--border);
}

.package-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.package-card__name { font-size: 1.3rem; }

.package-card__body { padding: var(--space-md) var(--space-lg); flex: 1; }

.package-card__desc { margin-bottom: var(--space-md); }

.package-card__includes {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
}

.package-card__includes-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.package-card__includes-text { font-size: 0.9rem; line-height: 1.65; }

.package-card__footer {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  border-top: 2px solid var(--border);
}

.packages__note {
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.packages__note-inner {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.packages__note-inner i { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; }

/* =============================================
   INCLUDED SECTION
   ============================================= */
.included {
  padding: var(--space-2xl) 0;
  background: var(--bg-alt);
  border-top: 2px solid var(--border);
}

.included__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.included__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.included__item {
  background: var(--bg);
  border: 2px solid var(--dark);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.included__item:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hard-lg);
}

.included__icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  display: block;
}

.included__item-title { margin-bottom: var(--space-xs); }

.included__item-body { font-size: 0.95rem; }

/* =============================================
   FAQ PAGE
   ============================================= */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--bg);
}

.faq__container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.faq__group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--primary);
}

.faq__item {
  border: 2px solid var(--dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--border);
  margin-bottom: 0.75rem;
  transition: box-shadow 0.2s ease;
}
.faq__item:last-child { margin-bottom: 0; }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--space-md);
  background: var(--bg);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: var(--space-sm);
  transition: background 0.2s ease;
}
.faq__question:hover { background: var(--bg-alt); }
.faq__question[aria-expanded="true"] { background: var(--primary-xlight); }

.faq__icon {
  font-size: 0.9rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: var(--space-md);
  background: var(--bg-alt);
  border-top: 2px solid var(--border);
}
.faq__answer p { font-size: 0.98rem; }
.faq__answer--open { display: block; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  padding: var(--space-2xl) 0;
  background: var(--bg);
}

.contact-section__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-xl);
  align-items: start;
}


.chat-form {
  background: var(--bg);
  border: 2px solid var(--dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard-lg);
  overflow: hidden;
}

.chat-form__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--bg-dark);
  border-bottom: 2px solid var(--dark);
}

.chat-form__avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: 2px solid color-mix(in oklch, var(--primary), white 30%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.chat-form__name {
  display: block;
  color: white;
  font-size: 1rem;
}

.chat-form__status {
  display: block;
  font-size: 0.78rem;
  color: color-mix(in oklch, white, transparent 40%);
}

.chat-form__body { padding: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-md); }

.chat-form__bubble {
  max-width: 80%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
}

.chat-form__bubble--company {
  background: var(--bg-alt);
  border-color: var(--border);
  align-self: flex-start;
  border-bottom-left-radius: var(--radius-sm);
}
.chat-form__bubble--company p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}

.chat-form__bubble--user {
  background: var(--bg);
  border-color: var(--dark);
  align-self: flex-end;
  border-bottom-right-radius: var(--radius-sm);
  width: 100%;
  max-width: 100%;
  box-shadow: 3px 3px 0 var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.chat-form__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chat-form__input,
.chat-form__textarea {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  resize: vertical;
}
.chat-form__input::placeholder,
.chat-form__textarea::placeholder { color: var(--dark-xlight); }

.chat-form__privacy {
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--border);
}

.chat-form__privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
}

.chat-form__checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  accent-color: var(--primary);
  cursor: pointer;
}

.chat-form__privacy-link {
  color: var(--primary);
  text-decoration: underline;
}

.chat-form__submit-wrap { display: flex; justify-content: flex-end; }

.chat-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  border: 2px solid var(--dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-hard);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.chat-form__submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hard-lg);
}


.contact-info {
  background: var(--bg);
  border: 2px solid var(--dark);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard-lg);
  margin-bottom: var(--space-md);
}

.contact-info__title { margin-bottom: var(--space-md); }

.contact-info__item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}
.contact-info__item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-info__icon {
  width: 40px;
  height: 40px;
  background: var(--primary-xlight);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.contact-info__item strong { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-info__item p { font-size: 0.95rem; color: var(--text); margin: 0; }
.contact-info__item a { color: var(--primary); }
.contact-info__item a:hover { text-decoration: underline; }

.contact-info__hours {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

.contact-info__hours-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: var(--space-xs);
}

.contact-info__hours p { font-size: 0.9rem; margin-bottom: 0.2rem; color: var(--text); }


.contact-news {
  background: var(--bg-alt);
  border: 2px solid var(--dark);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-hard);
}

.contact-news__title { margin-bottom: var(--space-md); font-size: 1.1rem; }

.contact-news__item {
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}
.contact-news__item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-news__date {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.contact-news__item-title { font-size: 0.95rem; margin-bottom: 0.3rem; }
.contact-news__item-body { font-size: 0.88rem; }


.contact-map {
  padding: 0 0 var(--space-2xl);
  background: var(--bg);
}

.contact-map__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.contact-map__title {
  margin-bottom: var(--space-md);
}

.contact-map__embed {
  border: 3px solid var(--dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-hard-lg);
}

/* =============================================
   THANKS PAGE
   ============================================= */
.thanks-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg);
}

.thanks-page__inner {
  text-align: center;
  max-width: 560px;
}

.thanks-page__icon-wrap {
  margin-bottom: var(--space-lg);
}

.thanks-page__icon {
  font-size: 5rem;
  color: var(--primary);
}

.thanks-page__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.thanks-page__body {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.thanks-page__note {
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.thanks-page__link { color: var(--primary); text-decoration: underline; }

.thanks-page__btn { margin: 0 auto; }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-page {
  padding: var(--space-2xl) 0;
  background: var(--bg);
  flex: 1;
}

.legal-page__container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-page__header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 3px solid var(--dark);
}

.legal-page__title { font-size: clamp(1.8rem, 4vw, 2.5rem); }

.legal-page__date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.legal-page__body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: var(--space-lg) 0 var(--space-xs);
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--border);
}

.legal-page__body p {
  margin-bottom: var(--space-sm);
  font-size: 0.97rem;
  line-height: 1.8;
}

.legal-page__body a { color: var(--primary); text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-dark);
  border-top: 3px solid var(--primary);
  margin-top: auto;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
}

.footer__logo { width: 44px; height: 44px; margin-bottom: var(--space-sm); }

.footer__tagline {
  font-size: 0.9rem;
  color: color-mix(in oklch, white, transparent 45%);
  max-width: 240px;
}

.footer__nav-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.footer__nav-list { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__nav-link {
  font-size: 0.9rem;
  color: color-mix(in oklch, white, transparent 40%);
  transition: color 0.2s ease;
}
.footer__nav-link:hover { color: white; }

.footer__address p {
  font-size: 0.88rem;
  color: color-mix(in oklch, white, transparent 40%);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer__address i { color: var(--primary); flex-shrink: 0; margin-top: 0.2rem; }
.footer__address a { color: color-mix(in oklch, white, transparent 40%); transition: color 0.2s ease; }
.footer__address a:hover { color: white; }

.footer__bottom {
  border-top: 1px solid color-mix(in oklch, white, transparent 80%);
  padding: var(--space-md);
}

.footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__legal,
.footer__copy {
  font-size: 0.8rem;
  color: color-mix(in oklch, white, transparent 55%);
}

/* =============================================
   COOKIE BANNER — TOP
   ============================================= */
.cookie-banner {
  position: fixed;
  top: -300px;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--bg-dark);
  border-bottom: 2px solid var(--primary);
  padding: 0.75rem var(--space-md);
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner--visible { top: 0; }

.cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.88rem;
  color: color-mix(in oklch, white, transparent 25%);
  margin: 0;
}

.cookie-banner__link { color: var(--primary); text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-family: var(--font-body);
}

.cookie-banner__btn--settings {
  background: transparent;
  border-color: color-mix(in oklch, white, transparent 60%);
  color: color-mix(in oklch, white, transparent 25%);
}
.cookie-banner__btn--settings:hover { border-color: white; color: white; }

.cookie-banner__btn--reject {
  background: transparent;
  border-color: color-mix(in oklch, white, transparent 60%);
  color: color-mix(in oklch, white, transparent 25%);
}
.cookie-banner__btn--reject:hover { border-color: white; color: white; }

.cookie-banner__btn--accept {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: white;
  box-shadow: 2px 2px 0 var(--dark);
}
.cookie-banner__btn--accept:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--dark);
}


.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal--visible { display: flex; }

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in oklch, var(--dark), transparent 40%);
  cursor: pointer;
}

.cookie-modal__box {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border: 3px solid var(--dark);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  width: 90%;
  max-width: 480px;
  box-shadow: var(--shadow-offset-xl);
}

.cookie-modal__title {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.cookie-modal__desc {
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.cookie-modal__category {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.cookie-modal__category:last-of-type { border-bottom: none; }

.cookie-modal__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal__label input { accent-color: var(--primary); width: 16px; height: 16px; }

.cookie-modal__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: auto;
}

.cookie-modal__actions { margin-top: var(--space-md); }

.cookie-modal__btn--save {
  width: 100%;
  padding: 0.75rem;
  background: var(--primary);
  color: white;
  border: 2px solid var(--dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-hard);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cookie-modal__btn--save:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-hard-lg);
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .why__container { grid-template-columns: 1fr; gap: var(--space-lg); }
  .why__image { aspect-ratio: 16/9; }
  .features__layout { grid-template-columns: 1fr; }
  .features__tabs { flex-direction: row; flex-wrap: wrap; }
  .features__tab { flex: 1; min-width: 140px; }
  .process__steps { grid-template-columns: 1fr; }
  .footer__container { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .contact-section__container { grid-template-columns: 1fr; }
  .included__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .audience__card { grid-template-columns: 1fr; }
  .audience__card-img { height: 240px; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__title { font-size: clamp(3rem, 18vw, 6rem); }

  .services__grid { grid-template-columns: 1fr; }
  .packages__grid { grid-template-columns: 1fr; }
  .frequency__grid { grid-template-columns: 1fr; }
  .gallery-strip__inner { grid-template-columns: 1fr; }
  .included__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }

  .footer__container { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }

  .contact-section__container { grid-template-columns: 1fr; }

  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { flex-wrap: wrap; }

  .features__tabs { flex-direction: column; }
  .features__tab { width: 100%; }

  .why__image-badge { position: static; margin-top: var(--space-sm); display: inline-flex; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .process__step-num { font-size: 2.5rem; }

  .audience__card { grid-template-columns: 1fr; }
  .audience__card-img-wrap:last-child { order: -1; }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
  }

  .hero__title { font-size: clamp(2.5rem, 16vw, 4.5rem); }

  .page-hero { padding: var(--space-lg) 0 var(--space-xl); }
  .page-hero__title { font-size: clamp(1.8rem, 8vw, 2.5rem); }

  .legal-page__container { padding: 0 var(--space-sm); }
  .legal-page__body h2 { font-size: 1rem; }

  .chat-form__bubble--company,
  .chat-form__bubble--user { max-width: 100%; }

  .thanks-page__icon { font-size: 4rem; }
}