/* ============================================
   BALLYARNETT TYRES — Main Stylesheet
   ============================================ */

:root {
  --red: #e5051a;
  --red-dark: #b80015;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --grey: #888888;
  --light-grey: #f5f5f5;
  --white: #ffffff;
  --font-main: 'Barlow', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  --nav-h: 72px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.28);
}

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

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

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

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

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

.section { padding: 72px 0; }
.red { color: var(--red); }

/* ===== TYPOGRAPHY ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(229,5,26,0.08);
  border: 1px solid rgba(229,5,26,0.25);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag--light {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--dark);
}

.section-title.light { color: var(--white); }

.section-sub {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub.light { color: rgba(255,255,255,0.65); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 12px 24px;
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(229,5,26,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  padding: 12px 24px;
}

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

.btn--white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  padding: 14px 28px;
}

.btn--white:hover {
  background: var(--light-grey);
  transform: translateY(-1px);
}

.btn--nav {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn--nav:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn--lg { padding: 14px 30px; font-size: 1.05rem; }
.btn--xl { padding: 16px 36px; font-size: 1.1rem; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}

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

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-tyre {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 3px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 10px;
  position: relative;
}

.logo-tyre::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.logo-text em {
  font-style: normal;
  color: var(--red);
  display: block;
  font-size: 1.3em;
  line-height: 0.85;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 16px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}

/* large decorative tyre rings — visible even without the photo */
.hero::after {
  content: '';
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(380px, 52vw, 740px);
  height: clamp(380px, 52vw, 740px);
  border-radius: 50%;
  border: clamp(40px,6vw,90px) solid rgba(229,5,26,0.07);
  box-shadow: inset 0 0 0 clamp(20px,3vw,44px) rgba(229,5,26,0.04);
  pointer-events: none;
  z-index: 1;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(229,5,26,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(229,5,26,0.07) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

/* diagonal red accent stripe */
.hero__bg-overlay::after {
  content: '';
  position: absolute;
  left: -10%;
  top: -20%;
  width: 3px;
  height: 160%;
  background: linear-gradient(to bottom, transparent 0%, rgba(229,5,26,0.5) 40%, transparent 100%);
  transform: rotate(-15deg);
}

.hero__content {
  padding: 60px 24px 80px;
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(229,5,26,0.1);
  border: 1px solid rgba(229,5,26,0.3);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 14px 0;
}

.trust-item {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}

.trust-num sup {
  font-size: 0.7em;
  vertical-align: super;
}

.trust-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  filter: brightness(0.55);
}

.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.97) 30%, rgba(10,10,10,0.7) 55%, rgba(10,10,10,0.25) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ===== BANNER STRIP ===== */
.banner-strip {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
}

.banner-strip__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-strip__inner span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

/* ===== SERVICES ===== */
.services { background: var(--light-grey); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.25s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  background: var(--dark);
  border-color: var(--red);
  color: var(--white);
}

.service-card--featured::before {
  background: var(--red);
  transform: scaleX(1);
}

.service-card--featured h3 { color: #ffffff !important; }
.service-card--featured p { color: rgba(255,255,255,0.7); }

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
}

.service-card--featured .service-card__link { color: rgba(255,255,255,0.8); }
.service-card--featured .service-card__link:hover { color: var(--white); }

.service-card__link:hover { opacity: 0.8; }

/* ===== WHY US ===== */
.why-us {
  background: var(--dark);
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.why-us__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(229,5,26,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-us__text .section-tag { margin-bottom: 16px; }
.why-us__text .section-title { margin-bottom: 16px; }
.why-us__text .section-sub { margin: 0 0 36px; text-align: left; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.why-list li strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.why-list li span {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.why-us__image {
  position: relative;
}

.why-us__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.why-us__img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: brightness(0.9);
}

.why-us__plate {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  border: 2px solid var(--red);
  border-radius: 6px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.plate-logo {
  width: 28px;
  height: 28px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.plate-logo::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
}

.plate-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.plate-text span {
  color: var(--red);
  font-size: 1.2em;
  display: block;
  line-height: 0.9;
}

/* ===== GALLERY ===== */
.gallery { background: var(--white); }

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery__item {
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark-3);
  position: relative;
}

.gallery__item--large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery__item:hover img { transform: scale(1.04); }

.gallery__item--large { min-height: 400px; }

.gallery__placeholder {
  width: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  background: var(--dark-2);
}

.gallery__placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.5;
}

.gallery__placeholder span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 32px 16px 16px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--light-grey); }

.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 16px;
}

.star {
  color: #f59e0b;
  font-size: 1.3rem;
}

.rating-text {
  margin-left: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--grey);
  text-transform: uppercase;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.25s ease;
}

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

.review-card--featured {
  background: var(--dark);
  border-color: var(--red);
  color: var(--white);
}

.review-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  font-style: italic;
}

.review-card--featured p { color: rgba(255,255,255,0.75); }

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.review-card--featured .review-author strong { color: var(--white); }

.review-author span {
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--red);
  padding: 72px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band__text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.cta-band__text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.cta-band__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cta-band .btn--primary {
  background: var(--dark);
  border-color: var(--dark);
}

.cta-band .btn--primary:hover {
  background: var(--black);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ===== CONTACT ===== */
.contact { background: var(--white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__info .section-tag { margin-bottom: 12px; }
.contact__info .section-title { margin-bottom: 32px; }

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(229,5,26,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-top: 2px;
}

.contact__list li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact__list li strong {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
}

.contact__list li span,
.contact__list li a {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.5;
}

.contact__list li a { color: var(--red); font-weight: 600; }
.contact__list li a:hover { text-decoration: underline; }

.contact__map {
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow);
}

.contact__map iframe { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__tyre {
  color: rgba(255,255,255,0.2);
}

.footer__nav {
  display: flex;
  gap: 24px;
}

.footer__nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--white); }

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
}

/* ===== FLOAT CALL ===== */
.float-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(229,5,26,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.float-call:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(229,5,26,0.65);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner { grid-template-columns: 1fr; gap: 48px; }
  .why-us__image { display: none; }
  .hero__content { padding-bottom: 80px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { height: 300px; }
  .cta-band__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 4px;
  }
  .nav__links.open a { padding: 12px 16px; font-size: 1rem; }
  .nav__burger { display: flex; }

  .hero__title { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero__trust { flex-direction: column; gap: 0; }
  .trust-item { padding: 12px 20px; }
  .trust-divider { width: 40px; height: 1px; }

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

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--large { grid-column: 1; grid-row: auto; min-height: 260px; }

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

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

  .float-call { display: flex; }

  .btn--nav { display: none; }
}

@media (max-width: 480px) {
  .banner-strip__inner { flex-direction: column; gap: 8px; text-align: center; }
  .hero__ctas { flex-direction: column; }
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { justify-content: center; }
}
