:root {
  --color-dark: #111111;
  --color-dark-soft: #1b1b1b;
  --color-light: #ffffff;
  --color-grey: #f4f4f4;
  --color-grey-soft: #fafafa;
  --color-text: #222222;
  --color-text-soft: #666666;
  --color-border: #dfdfdf;
  --color-accent: #d9d9d9;
  --container: 1240px;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.14);
  --radius: 18px;
  --radius-lg: 26px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: var(--color-light);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

main {
  overflow: hidden;
}

.container {
  width: 92%;
  max-width: var(--container);
  margin: 0 auto;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn--dark {
  background: var(--color-dark);
  color: var(--color-light);
}

.btn--dark:hover {
  background: var(--color-dark-soft);
}

.btn--light {
  background: var(--color-light);
  color: var(--color-dark);
}

.btn--light:hover {
  background: #ececec;
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn--outline-dark:hover {
  background: var(--color-dark);
  color: var(--color-light);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-light);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* =========================
   TOPBAR / HEADER
========================= */
.topbar {
  background: var(--color-dark);
  color: var(--color-light);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar__left p {
  margin: 0;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--color-light);
  font-weight: 700;
}

.topbar a:hover {
  opacity: 0.85;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-light);
  border-bottom: 1px solid #ededed;
}

.header-main {
  background: var(--color-light);
}

.navbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  max-height: 40px;
  height: auto;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 15px;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #555555;
}

.nav-cta {
  background: var(--color-dark);
  color: var(--color-light) !important;
  padding: 12px 18px;
  border-radius: 999px;
}

.nav-cta:hover,
.nav-cta.active {
  background: #2a2a2a;
  color: var(--color-light) !important;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--color-dark);
  transition: 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   HERO
========================= */
.home-hero {
  background: #f5f5f5;
  padding: 42px 0 38px;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 36px;
  align-items: center;
}

.home-hero__copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: #777777;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.66);
}

.home-hero h1 {
  font-size: 62px;
  line-height: 0.96;
  letter-spacing: -2.4px;
  color: var(--color-dark);
  margin-bottom: 18px;
  max-width: 740px;
}

.home-hero__lead {
  font-size: 18px;
  color: var(--color-text-soft);
  margin-bottom: 30px;
  max-width: 670px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.home-hero__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
}

.home-hero__points li {
  padding: 15px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-dark);
}

.home-hero__media {
  position: relative;
}

.home-hero__image {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  background: #dddddd;
}

.home-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.home-hero__card {
  position: absolute;
  left: -24px;
  bottom: 24px;
  max-width: 340px;
  padding: 22px;
  background: rgba(17, 17, 17, 0.94);
  color: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.home-hero__card strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.home-hero__card p {
  font-size: 15px;
  line-height: 1.7;
}

/* =========================
   TRUST STRIP
========================= */
.trust-strip {
  padding: 18px 0;
  background: var(--color-dark);
  color: var(--color-light);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-strip__item {
  padding: 14px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip__item:first-child {
  border-left: 0;
}

.trust-strip__item span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 6px;
}

.trust-strip__item strong {
  display: block;
  font-size: 18px;
  color: #ffffff;
}

/* =========================
   GENERAL SECTIONS
========================= */
.section {
  padding: 88px 0;
}

.section--grey {
  background: var(--color-grey);
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 48px;
  line-height: 1.02;
  color: var(--color-dark);
  margin-bottom: 14px;
}

.section-head p {
  font-size: 18px;
  color: var(--color-text-soft);
}

/* =========================
   INTRO
========================= */
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.intro-copy h2 {
  font-size: 48px;
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 720px;
}

.intro-copy p {
  font-size: 18px;
  color: var(--color-text-soft);
  margin-bottom: 14px;
  max-width: 680px;
}

.intro-panel {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 34px;
  border-radius: 24px;
}

.intro-panel h3 {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.intro-panel ul {
  display: grid;
  gap: 12px;
}

.intro-panel li {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.home-service-links__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home-service-link-card {
  display: block;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.home-service-link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.home-service-link-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f0f0;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
  color: #111111;
}

.home-service-link-card h3 {
  font-size: 28px;
  line-height: 1.08;
  margin-bottom: 12px;
  color: #111111;
}

.home-service-link-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
}

.project-carousel--home .project-carousel__slide img {
  height: 640px;
}

@media (max-width: 1200px) {
  .home-service-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .home-service-links__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .home-service-links__grid {
    grid-template-columns: 1fr;
  }

  .home-service-link-card {
    padding: 22px;
  }

  .home-service-link-card h3 {
    font-size: 24px;
  }

  .project-carousel--home .project-carousel__slide img {
    height: 360px;
  }
}

/* =========================
   SERVICES
========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.service-card__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f0f0;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.service-card p {
  color: var(--color-text-soft);
  font-size: 16px;
  margin-bottom: 18px;
}

.service-card a {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 15px;
}

/* =========================
   FEATURE PROJECT
========================= */
.feature-project__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}

.feature-project__media {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.feature-project__media img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
}

.feature-project__copy h2 {
  font-size: 48px;
  line-height: 1.02;
  margin-bottom: 16px;
  max-width: 640px;
}

.feature-project__copy p {
  font-size: 18px;
  color: var(--color-text-soft);
  margin-bottom: 14px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.feature-tags span {
  padding: 9px 14px;
  border-radius: 999px;
  background: #f2f2f2;
  border: 1px solid #e2e2e2;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
}

/* =========================
   GALLERY
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: 2.1fr 0.9fr 0.9fr;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  min-height: 260px;
  background: #dddddd;
}

.gallery-item--large {
  grid-row: span 2;
  min-height: 540px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-copy {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-copy h3 {
  font-size: 31px;
  line-height: 1.08;
  margin-bottom: 12px;
}

.gallery-copy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
}

/* =========================
   AREA LINKS
========================= */
.area-links {
  padding: 88px 0;
  background: #ffffff;
}

.area-links__box {
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.area-links__box h2 {
  font-size: 40px;
  line-height: 1.04;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.area-links__box p {
  font-size: 17px;
  color: var(--color-text-soft);
  margin-bottom: 24px;
  max-width: 860px;
}

.area-links__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.area-links__grid a {
  display: block;
  padding: 16px 18px;
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  background: #fafafa;
  color: var(--color-dark);
  font-weight: 700;
  font-size: 15px;
  transition: 0.2s ease;
}

.area-links__grid a:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.area-links__note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e7e7e7;
}

.area-links__note p {
  margin: 0;
  font-size: 15px;
  color: var(--color-text-soft);
}

/* =========================
   COVERAGE
========================= */
.coverage-band {
  padding: 82px 0;
  background: var(--color-dark);
  color: var(--color-light);
}

.coverage-band__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.coverage-band h2 {
  font-size: 48px;
  line-height: 1.02;
  max-width: 560px;
}

.coverage-band p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 12px;
}

.coverage-band a {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* =========================
   CTA
========================= */
.final-cta {
  padding: 88px 0;
}

.final-cta__box {
  padding: 38px;
  border-radius: 26px;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

/* Mobile / smaller screens */
@media (max-width: 900px) {
  .final-cta__box {
    flex-direction: column;
    align-items: flex-start; /* keeps text aligned nicely */
  }
}

.final-cta__copy {
  max-width: 740px;
}

.final-cta__copy h2 {
  font-size: 46px;
  line-height: 1.02;
  margin-bottom: 14px;
}

.final-cta__copy p {
  font-size: 18px;
  color: var(--color-text-soft);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.8);
}

.footer-shell {
  padding: 58px 0 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 40px;
  padding-bottom: 32px;
}

.footer-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand h3 {
  font-size: 30px;
  line-height: 1.08;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-brand p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

.footer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-points span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #ffffff;
}

.footer-column h4 {
  font-size: 17px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom__links a:hover {
  color: #ffffff;
}

.footer-note {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  font-size: 15px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.footer-bottom__links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.credit {
  text-align: right;
}

/* =========================
   COOKIE BANNER
========================= */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #111111;
  color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cookie-banner p {
  margin: 0;
  font-size: 15px;
}

.cookie-banner a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
}

#acceptCookies {
  background: #ffffff;
  color: #111111;
}

.btn-decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* =========================
   ERROR PAGES
========================= */
.error-page {
  padding: 90px 0;
  background: linear-gradient(180deg, #f6f6f6 0%, #ffffff 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-page__wrap {
  max-width: 820px;
}

.error-page__content {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.error-page__code {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 78px;
  line-height: 1;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -2px;
}

.error-page__eyebrow {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: #7a7a7a;
}

.error-page h1 {
  font-size: 54px;
  line-height: 1.02;
  color: var(--color-dark);
  margin-bottom: 16px;
  max-width: 680px;
}

.error-page p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-soft);
  max-width: 680px;
  margin-bottom: 28px;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 420px;
  }

  .area-links__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .topbar__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
  }

  .topbar__right {
    justify-content: center;
  }

  .site-logo img {
    height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 16px;
    margin-left: 0;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .site-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .site-nav a:hover,
  .site-nav a.active {
    background: #f4f4f4;
    color: #111111;
  }

  .home-hero__grid,
  .intro-grid,
  .services-grid,
  .feature-project__grid,
  .coverage-band__grid,
  .footer-main,
  .footer-bottom,
  .final-cta__box,
  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__card {
    position: static;
    max-width: 100%;
    margin-top: 16px;
  }

  .home-hero__points {
    grid-template-columns: 1fr;
  }

  .area-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom__links {
    justify-content: center;
  }

  .credit {
    text-align: center;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .navbar {
    min-height: 78px;
    gap: 12px;
  }

  .site-logo {
    max-width: calc(100% - 60px);
  }

  .site-logo img {
    height: 56px;
  }

  .home-hero {
    padding: 28px 0 24px;
  }

  .home-hero h1 {
    font-size: 46px;
    letter-spacing: -1.5px;
  }

  .home-hero__lead,
  .section-head p,
  .intro-copy p,
  .feature-project__copy p,
  .coverage-band p,
  .final-cta__copy p,
  .error-page p {
    font-size: 17px;
  }

  .section-head h2,
  .intro-copy h2,
  .feature-project__copy h2,
  .coverage-band h2,
  .final-cta__copy h2,
  .area-links__box h2,
  .error-page h1 {
    font-size: 34px;
  }

  .home-hero__actions,
  .final-cta__actions,
  .footer-actions,
  .error-page__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero__actions .btn,
  .final-cta__actions .btn,
  .footer-actions .btn,
  .error-page__actions .btn {
    width: 100%;
  }

  .home-hero__image img {
    min-height: 380px;
  }

  .section,
  .area-links,
  .final-cta,
  .error-page {
    padding: 54px 0;
  }

  .gallery-grid,
  .services-grid,
  .area-links__grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--large {
    grid-column: span 1;
    min-height: 300px;
  }

  .feature-project__media img {
    min-height: 320px;
  }

  .final-cta__box,
  .area-links__box,
  .error-page__content {
    padding: 24px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-actions button {
    width: 100%;
  }

  .error-page {
    min-height: auto;
  }

  .error-page__code {
    font-size: 58px;
  }
}

/* =========================
   PAGE HERO
========================= */
.page-hero {
  position: relative;
  background: #111111;
  color: #ffffff;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.76) 0%,
    rgba(10, 10, 10, 0.82) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 110px 0 100px;
}

.page-hero__content--narrow {
  max-width: 860px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.56);
}

.page-hero h1 {
  font-size: 62px;
  line-height: 0.96;
  letter-spacing: -2.2px;
  margin-bottom: 18px;
  max-width: 860px;
}

.page-hero p {
  max-width: 760px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.82);
}

/* =========================
   PAGE SECTIONS
========================= */
.page-section {
  padding: 88px 0;
}

.page-section--grey {
  background: #f5f5f5;
}

.page-section__grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 36px;
  align-items: start;
}

.page-copy h2 {
  font-size: 48px;
  line-height: 1.02;
  margin-bottom: 18px;
  color: #111111;
}

.page-copy p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 14px;
}

.page-panel {
  background: #111111;
  color: #ffffff;
  border-radius: 24px;
  padding: 34px;
}

.page-panel h3 {
  font-size: 28px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.page-panel ul {
  display: grid;
  gap: 12px;
}

.page-panel li {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

/* =========================
   AREA HUB
========================= */
.area-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.area-hub-card {
  display: block;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.area-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.area-hub-card__image {
  height: 240px;
  background: #dddddd;
}

.area-hub-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-hub-card__body {
  padding: 26px;
}

.area-hub-card__body h3 {
  font-size: 30px;
  line-height: 1.06;
  color: #111111;
  margin-bottom: 12px;
}

.area-hub-card__body p {
  font-size: 17px;
  color: #666666;
  margin-bottom: 16px;
}

.area-hub-card__body span {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
}

.area-coverage-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.area-coverage-note p {
  font-size: 16px;
  color: #666666;
  margin: 0;
}

/* =========================
   LOCAL SERVICE BLOCKS
========================= */
.local-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.local-service-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.local-service-card h3 {
  font-size: 26px;
  line-height: 1.08;
  color: #111111;
  margin-bottom: 12px;
}

.local-service-card p {
  font-size: 16px;
  color: #666666;
}

/* =========================
   AREA IMAGE + COPY
========================= */
.area-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.area-feature__media {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  background: #dddddd;
}

.area-feature__media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.area-feature__copy h2 {
  font-size: 48px;
  line-height: 1.02;
  margin-bottom: 16px;
  color: #111111;
}

.area-feature__copy p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 14px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.area-tags span {
  padding: 9px 14px;
  border-radius: 999px;
  background: #f2f2f2;
  border: 1px solid #e2e2e2;
  font-size: 13px;
  font-weight: 700;
  color: #111111;
}

/* =========================
   NEARBY AREAS
========================= */
.nearby-areas {
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 34px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.nearby-areas h2 {
  font-size: 40px;
  line-height: 1.04;
  color: #111111;
  margin-bottom: 12px;
}

.nearby-areas p {
  font-size: 17px;
  color: #666666;
  margin-bottom: 22px;
}

.nearby-areas__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.nearby-areas__grid a,
.nearby-areas__grid span {
  display: block;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid #e3e3e3;
  background: #fafafa;
  color: #111111;
  font-weight: 700;
  font-size: 15px;
}

.nearby-areas__grid a:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

/* =========================
   FAQ
========================= */
.faq-list {
  display: grid;
  gap: 16px;
  max-width: 940px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  font-size: 22px;
  line-height: 1.15;
  color: #111111;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 17px;
  color: #666666;
}

/* =========================
   CTA STRIP
========================= */
.cta-strip {
  padding: 88px 0;
}

.cta-strip__box {
  background: #111111;
  color: #ffffff;
  border-radius: 26px;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-strip__copy {
  max-width: 760px;
}

.cta-strip__copy h2 {
  font-size: 46px;
  line-height: 1.02;
  margin-bottom: 14px;
}

.cta-strip__copy p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================
   RESPONSIVE ADDITIONS
========================= */
@media (max-width: 991px) {
  .page-section__grid,
  .area-feature-grid,
  .area-hub-grid,
  .local-services-grid,
  .nearby-areas__grid,
  .cta-strip__box {
    grid-template-columns: 1fr;
  }

  .area-hub-card__image {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .page-hero__content {
    padding: 84px 0 74px;
  }

  .page-hero h1 {
    font-size: 44px;
    letter-spacing: -1.4px;
  }

  .page-hero p,
  .page-copy p,
  .area-feature__copy p,
  .nearby-areas p,
  .faq-item p,
  .cta-strip__copy p {
    font-size: 17px;
  }

  .page-copy h2,
  .area-feature__copy h2,
  .nearby-areas h2,
  .cta-strip__copy h2 {
    font-size: 34px;
  }

  .page-section,
  .cta-strip {
    padding: 54px 0;
  }

  .page-panel,
  .nearby-areas,
  .cta-strip__box,
  .faq-item {
    padding: 24px;
  }

  .cta-strip__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-strip__actions .btn {
    width: 100%;
  }

  .area-feature__media img {
    min-height: 320px;
  }
}
/* =========================
   PROJECT CAROUSEL
========================= */
.project-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #111111;
  box-shadow: var(--shadow-lg);
}

.project-carousel__viewport {
  overflow: hidden;
  border-radius: 24px;
}

.project-carousel__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.project-carousel__slide {
  min-width: 100%;
  position: relative;
  background: #dddddd;
}

.project-carousel__slide img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.project-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.84);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: 0.2s ease;
}

.project-carousel__btn:hover {
  background: rgba(17, 17, 17, 0.96);
}

.project-carousel__btn--prev {
  left: 18px;
}

.project-carousel__btn--next {
  right: 18px;
}

.project-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.project-carousel__dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: 0.2s ease;
}

.project-carousel__dot.is-active {
  background: #ffffff;
}

@media (max-width: 767px) {
  .project-carousel__slide img {
    height: 360px;
  }

  .project-carousel__btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .project-carousel__btn--prev {
    left: 12px;
  }

  .project-carousel__btn--next {
    right: 12px;
  }

  .project-carousel__dots {
    bottom: 12px;
  }
}
.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.social-icon svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.credit-link {
  color: inherit;
}

.credit-link:hover .credit {
  color: #ffffff;
}

.footer-bottom p {
  font-size: 13px;
  line-height: 1.6;
}
/* =========================
   CONTACT PAGE - CLEAN LAYOUT
========================= */
.contact-simple-strip {
  padding: 24px 0 0;
  background: #ffffff;
  margin-bottom: 20px;
}

.contact-simple-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contact-simple-strip__item {
  padding: 22px 24px;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  background: #f7f7f7;
}

.contact-simple-strip__item span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #7b7b7b;
}

.contact-simple-strip__item a,
.contact-simple-strip__item strong {
  display: block;
  line-height: 1.15;
  color: #111111;
  font-weight: 700;
}

.contact-clean-section {
  padding: 72px 0 82px;
  background: #f5f5f5;
}

.contact-clean-shell {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow-lg);
}

.contact-clean-head {
  max-width: 860px;
  margin-bottom: 32px;
}

.contact-clean-head h2 {
  font-size: 48px;
  line-height: 1.02;
  margin-bottom: 14px;
  color: #111111;
}

.contact-clean-head p {
  font-size: 18px;
  color: #666666;
}

.contact-clean-form {
  display: grid;
  gap: 18px;
}

.contact-clean-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-weight: 700;
  color: #111111;
  font-size: 15px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid #dcdcdc;
  border-radius: 14px;
  font: inherit;
  color: #111111;
  background: #ffffff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  font-size: 16px;
}

.form-row textarea {
  min-height: 190px;
  padding: 16px 18px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #111111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.contact-clean-submit {
  width: 100%;
  min-height: 58px;
  font-size: 16px;
}

.contact-clean-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.contact-clean-support__card {
  border: 1px solid #e6e6e6;
  border-radius: 22px;
  padding: 24px;
  background: #f7f7f7;
}

.contact-clean-support__card--dark {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.contact-clean-support__card span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #7b7b7b;
}

.contact-clean-support__card--dark span {
  color: rgba(255, 255, 255, 0.65);
}

.contact-clean-support__card h3 {
  font-size: 28px;
  line-height: 1.08;
  margin-bottom: 12px;
  color: #111111;
}

.contact-clean-support__card--dark h3 {
  color: #ffffff;
}

.contact-clean-support__card p {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
}

.contact-clean-support__card--dark p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-clean-support__card .btn {
  margin-top: 16px;
}

.contact-clean-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
}

.contact-clean-link::after {
  content: "→";
}

.form-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
}

.form-message ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}

.form-message--success {
  background: #eaf8ef;
  color: #166534;
  border: 1px solid #b7e4c7;
}

.form-message--error {
  background: #fff1f2;
  color: #b42318;
  border: 1px solid #f3b5bd;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 1200px) {
  .contact-clean-support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .contact-simple-strip__grid,
  .contact-clean-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .contact-simple-strip__grid,
  .contact-clean-form__grid,
  .contact-clean-support {
    grid-template-columns: 1fr;
  }

  .contact-simple-strip__item a,
  .contact-simple-strip__item strong {
    font-size: 22px;
  }

  .contact-clean-section {
    padding: 54px 0;
  }

  .contact-clean-shell {
    padding: 22px;
    border-radius: 22px;
  }

  .contact-clean-head h2 {
    font-size: 34px;
  }

  .contact-clean-head p,
  .contact-clean-support__card p {
    font-size: 17px;
  }

  .contact-clean-support__card {
    padding: 22px;
  }

  .contact-clean-support__card h3 {
    font-size: 24px;
  }
}

/* =========================
   PROJECTS PAGE
========================= */
.project-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-type-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.project-type-card__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f0f0;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111111;
}

.project-type-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #111111;
}

.project-type-card p {
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
}

.project-carousel--project-page {
  margin-top: 8px;
}

.project-carousel--project-page .project-carousel__slide img {
  height: 640px;
}

@media (max-width: 991px) {
  .project-type-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .project-type-card {
    padding: 22px;
  }

  .project-type-card h3 {
    font-size: 24px;
  }

  .project-carousel--project-page .project-carousel__slide img {
    height: 360px;
  }
}

/* =========================
   POLICY PAGES
========================= */
.policy-hero {
  padding: 90px 0 46px;
  background: linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
  color: #ffffff;
}

.policy-hero .container {
  max-width: 920px;
}

.policy-hero h1 {
  font-size: 58px;
  line-height: 1.02;
  margin-bottom: 16px;
  color: #ffffff;
}

.policy-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
}

.policy-updated {
  margin-top: 18px;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.62) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.policy-section {
  padding: 72px 0 82px;
  background: #f5f5f5;
}

.policy-card {
  max-width: 920px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.policy-card h2 {
  font-size: 30px;
  line-height: 1.1;
  color: #111111;
  margin-top: 30px;
  margin-bottom: 12px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p,
.policy-card li {
  font-size: 17px;
  line-height: 1.8;
  color: #555555;
}

.policy-card p {
  margin-bottom: 16px;
}

.policy-card ul {
  margin: 0 0 18px 0;
  padding-left: 22px;
  list-style: disc;
}

.policy-card li {
  margin-bottom: 8px;
}

.policy-card a {
  color: #111111;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-card .btn {
  margin-top: 6px;
  margin-bottom: 22px;
}

@media (max-width: 767px) {
  .policy-hero {
    padding: 62px 0 34px;
  }

  .policy-hero h1 {
    font-size: 38px;
  }

  .policy-hero p,
  .policy-card p,
  .policy-card li {
    font-size: 16px;
  }

  .policy-section {
    padding: 54px 0;
  }

  .policy-card {
    padding: 24px;
    border-radius: 22px;
  }

  .policy-card h2 {
    font-size: 24px;
  }
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px;
}

.nav-dropdown__inner {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown__link {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 15px;
  transition: 0.2s ease;
}

.nav-dropdown__link:hover,
.nav-dropdown__link.active {
  color: #555555;
}

.nav-dropdown__toggle {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--color-dark);
  transition: 0.2s ease;
  flex-shrink: 0;
}

.nav-dropdown__toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown__toggle,
.nav-dropdown:hover .nav-dropdown__link,
.nav-dropdown__toggle.active,
.nav-dropdown.is-open .nav-dropdown__toggle,
.nav-dropdown.is-open .nav-dropdown__link {
  color: #555555;
}

.nav-dropdown:hover .nav-dropdown__toggle::before,
.nav-dropdown__toggle.active::before,
.nav-dropdown.is-open .nav-dropdown__toggle::before {
  transform: rotate(225deg);
  margin-top: 2px;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 12px;
  display: none;
  z-index: 1001;
  margin-top: 10px;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  display: block;
}

.nav-dropdown__menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--color-dark);
  font-weight: 700;
  font-size: 15px;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.active {
  background: #f4f4f4;
  color: #111111;
}

@media (max-width: 991px) {
  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown__inner {
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown__link {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    flex: 1;
  }

  .nav-dropdown__toggle {
    width: 44px;
    height: 44px;
  }

  .nav-dropdown__menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    box-shadow: none;
    border-radius: 14px;
    display: none;
    border: 1px solid #e5e5e5;
  }

  .nav-dropdown:hover .nav-dropdown__menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: block;
  }
}
@media (max-width: 767px) {
  .home-hero h1 {
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -1.2px;
    max-width: 100%;
  }

  .home-hero__lead {
    font-size: 17px;
    line-height: 1.7;
    max-width: 100%;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 20px;
  }

  .home-hero__actions .btn {
    width: 100%;
  }

  .home-hero__image img {
    min-height: 300px;
    height: 300px;
  }

  .home-hero__card {
    position: static;
    left: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: 14px;
    padding: 18px;
    border-radius: 18px;
  }

  .home-hero__copy,
  .home-hero__media,
  .home-hero__grid,
  .trust-strip,
  .trust-strip .container {
    min-width: 0;
    overflow-x: hidden;
  }

  .mobile-scroll-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mobile-scroll-strip::-webkit-scrollbar {
    display: none;
  }

  .home-hero__points.mobile-scroll-strip {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .home-hero__points.mobile-scroll-strip li {
    flex: 0 0 85%;
    min-width: 85%;
    max-width: 85%;
    scroll-snap-align: start;
    padding: 16px 18px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-dark);
  }

  .trust-strip {
    padding: 14px 0;
  }

  .trust-strip .container {
    width: 92%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  .trust-strip__grid.mobile-scroll-strip {
    gap: 12px;
  }

  .trust-strip__item {
    flex: 0 0 85%;
    min-width: 85%;
    max-width: 85%;
    scroll-snap-align: start;
    border-left: 0;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
  }

  .trust-strip__item span {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .trust-strip__item strong {
    font-size: 16px;
    line-height: 1.35;
  }
}

@media (max-width: 767px) {
  .area-links__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .area-links__grid::-webkit-scrollbar {
    display: none;
  }

  .area-links__grid a {
    min-width: 200px;
    flex: 0 0 200px;
    scroll-snap-align: start;
    text-align: center;
  }
}

.area-links__grid::after {
  content: "→";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
  font-size: 18px;
}

@media (min-width: 768px) {
  .area-links__grid::after {
    display: none;
  }
}
