/* ============================================
   BGM PROJECT OÜ – MAIN STYLESHEET
   Modern, clean, editorial aesthetic
   ============================================ */

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --red: #c0392b;
  --red-light: #e74c3c;
  --gray-50: #f8f8f6;
  --gray-100: #f0efea;
  --gray-200: #e2e0d8;
  --gray-400: #9a9890;
  --gray-600: #5a5850;
  --gray-800: #2c2b27;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ============================================ NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  transition: all var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.8rem 2.5rem;
}

.nav__inner {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  transition: filter var(--transition);
  /* Logo has dark text + red accent — visible on both light & dark backgrounds */
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

.nav.scrolled .nav__logo-img {
  filter: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color var(--transition);
}

.nav.scrolled .nav__links a { color: var(--gray-800); }
.nav__links a:hover { color: var(--red); }

.nav__cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.65rem 1.5rem;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta:hover { background: var(--red-light) !important; transform: translateY(-1px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav.scrolled .nav__burger span { background: var(--black); }

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

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 40%, #1a2d1a 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(192,57,43,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s forwards;
}
.hero__line:nth-child(1) { animation-delay: 0.4s; }
.hero__line:nth-child(2) { animation-delay: 0.6s; color: var(--red-light); }
.hero__line:nth-child(3) { animation-delay: 0.8s; }

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
  line-height: 1.7;
}

.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 1.6s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover { background: var(--red-light); border-color: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,0.35); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover { background: var(--gray-800); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-200);
}
.btn--outline:hover { border-color: var(--red); color: var(--red); }

.btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* ============================================ SERVICES */
.services {
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 480px;
}

.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}

.service-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card--construction .service-card__bg {
  background: linear-gradient(160deg, #2c2b27 0%, #1a1815 100%);
}
.service-card--food .service-card__bg {
  background: linear-gradient(160deg, #1a2d1a 0%, #0d1a0d 100%);
}
.service-card--events .service-card__bg {
  background: linear-gradient(160deg, #1a1a2d 0%, #0d0d1a 100%);
}
.service-card--rent .service-card__bg {
  background: linear-gradient(160deg, #2d1a1a 0%, #1a0d0d 100%);
}

.service-card:hover .service-card__bg { transform: scale(1.05); }

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  transition: opacity var(--transition);
}
.service-card:hover::after { opacity: 0.7; }

/* Colored top accent bar */
.service-card--construction::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #d4a839; z-index: 3; }
.service-card--food::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #27ae60; z-index: 3; }
.service-card--events::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: #2980b9; z-index: 3; }
.service-card--rent::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); z-index: 3; }

.service-card__inner {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  width: 100%;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s 0.1s;
}

.service-card:hover .service-card__icon { opacity: 1; transform: translateY(0); }

.service-card__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.service-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s;
}

.service-card:hover .service-card__desc { max-height: 100px; opacity: 1; }

.service-card__link {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.service-card:hover .service-card__link { color: var(--white); }

/* ============================================ ABOUT STRIP */
.about-strip {
  background: var(--gray-50);
  padding: 6rem 0;
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-strip__text .section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.about-strip__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.about-strip__text h2 em {
  font-style: italic;
  color: var(--red);
}

.about-strip__text p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.about-strip__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--red);
}

.stat__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================ LOCATIONS */
.locations {
  padding: 6rem 2rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 3.5rem;
  color: var(--black);
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition);
}

.location-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.location-card__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.location-card > p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.location-card ul {
  margin-bottom: 1.75rem;
}

.location-card ul li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-card ul li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ============================================ CTA BANNER */
.cta-banner {
  background: var(--black);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ============================================ FOOTER */
.footer {
  background: #111;
  color: rgba(255,255,255,0.8);
  padding-top: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__col ul li {
  margin-bottom: 0.65rem;
}

.footer__col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--red-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer__legal a:hover { color: var(--white); }

/* ============================================ COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
  border: 1px solid var(--gray-200);
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 2rem;
  flex-wrap: wrap;
}

.cookie-banner__inner p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.cookie-banner__inner a { color: var(--red); font-weight: 600; }
.cookie-banner__btns { display: flex; gap: 0.75rem; }

/* ============================================ PAGE HEADERS */
.page-header {
  background: linear-gradient(135deg, #1a1815 0%, #2c2b27 100%);
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(192,57,43,0.2), transparent 70%);
}

.page-header__inner {
  position: relative;
  z-index: 1;
}

.page-header__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 1rem;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================ CONTENT SECTIONS */
.content-section {
  padding: 6rem 2rem;
}

.content-section:nth-child(even) { background: var(--gray-50); }

.content-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.content-section__inner.full { grid-template-columns: 1fr; text-align: center; max-width: 800px; }

.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--black);
}

.content-section p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.content-visual {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.content-visual--construction { background: linear-gradient(135deg, #2c2b27, #3d3c38); }
.content-visual--food { background: linear-gradient(135deg, #1a2d1a, #2d4a2d); }
.content-visual--events { background: linear-gradient(135deg, #1a1a2d, #2d2d4a); }
.content-visual--rent { background: linear-gradient(135deg, #2d1a1a, #4a2d2d); }

.content-visual__icon {
  width: 80px;
  height: 80px;
  color: rgba(255,255,255,0.3);
}

/* Feature list */
.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l2 2 4-4' stroke='white' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================ CONTACT FORM */
.contact-section {
  padding: 6rem 2rem;
  background: var(--gray-50);
}

.contact-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.contact-section > .contact-section__inner > p {
  color: var(--gray-600);
  margin-bottom: 3rem;
}

.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form__group.full { grid-column: 1 / -1; }

.form__group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: 0.04em;
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.form__group textarea { resize: vertical; min-height: 140px; }

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

/* ============================================ CONTACT INFO */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  text-align: center;
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--red);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-info-card p, .contact-info-card a {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ============================================ POLICY PAGES */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  color: var(--black);
}

.policy-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.75rem 0 0.75rem;
  color: var(--black);
}

.policy-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.policy-content ul li { padding: 0.25rem 0; }

/* ============================================ ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================ RESPONSIVE */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about-strip__inner { grid-template-columns: 1fr; gap: 3rem; }
  .locations__grid { grid-template-columns: 1fr 1fr; }
  .content-section__inner { grid-template-columns: 1fr; }
  .content-visual { order: -1; }
}

@media (max-width: 768px) {
  .nav__links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 99; }
  .nav__links.open { display: flex; }
  .nav__links a { color: var(--black) !important; font-size: 1.25rem; }
  .nav__burger { display: flex; z-index: 100; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card { min-height: 240px; }
  .service-card__desc { max-height: none; opacity: 1; }
  .service-card__icon { opacity: 1; transform: none; }
  .locations__grid { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
}
