/* ============================================================
   JSR Plastering Ltd – Main Stylesheet
   ============================================================ */

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1a2744;
  --navy-dark: #111b30;
  --gold:      #c8952a;
  --gold-light:#e6aa35;
  --white:     #ffffff;
  --off-white: #e0ddd8;
  --card-bg:   #ece9e4;
  --light-grey:#eef0f4;
  --text:      #2d2d2d;
  --text-muted:#666;
  --radius:    8px;
  --shadow:    0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
  --transition:all .3s ease;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--off-white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section { padding: 90px 0; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header--light .section-header__title,
.section-header--light .section-header__sub { color: var(--white); }

.section-header__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header__sub { color: var(--text-muted); font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,149,42,.4); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Top Bar ── */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  padding: 8px 0;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar__inner a { color: rgba(255,255,255,.85); transition: color .2s; }
.top-bar__inner a:hover { color: var(--gold); }
.top-bar__inner i { color: var(--gold); margin-right: 5px; }
.top-bar__divider { opacity: .4; }

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #f2f1ef;
  border-bottom: 1px solid #dddbd8;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 88px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.logo__icon { font-size: 1.6rem; color: var(--gold); }
.logo__text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1;
}
.logo__sub { font-weight: 400; font-size: .85rem; display: block; color: rgba(255,255,255,.7); }

/* Logo image — no background needed; header is light so black+gold show naturally */
.logo__img {
  height: 75px;
  width: auto;
  display: block;
}
.logo__img--footer { height: 58px; filter: brightness(0) invert(1); }
.logo__img--nav    { height: 46px; filter: brightness(0) invert(1); }

.mobile-nav__logo {
  display: block;
  margin-bottom: 28px;
}

.nav { margin-left: auto; }
.nav__list { display: flex; gap: 8px; }
.nav__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav__link:hover { color: var(--gold); background: rgba(26,39,68,.06); }

.header__cta { font-size: .85rem; padding: 10px 22px; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  height: 100dvh;
  width: min(300px, 85vw);
  background: var(--navy-dark);
  z-index: 800;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.4);
}
.mobile-nav.open { right: 0; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__link {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.mobile-nav__link:hover { color: var(--gold); }
.mobile-nav__cta { margin-top: 28px; justify-content: center; }

/* Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 799;
}
.mobile-nav-overlay.open { display: block; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(26,39,68,.88) 0%, rgba(26,39,68,.70) 60%, rgba(17,27,48,.80) 100%),
    url("https://images.unsplash.com/photo-1533035353720-f1c6a75cd8ab?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(26,39,68,.2) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 80px 24px;
}
.hero__content { /* text side — no changes to children needed */ }
.hero__photo-wrap {
  position: relative;
}
.hero__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
  display: block;
}
.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__tagline::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll a {
  color: rgba(255,255,255,.5);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  display: block;
  transition: color .2s;
}
.hero__scroll a:hover { color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%        { transform: translateY(8px); }
}

/* ── Contact Strip ── */
.contact-strip {
  background: var(--gold);
  padding: 28px 0;
}
.contact-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.contact-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.contact-strip__item > i {
  font-size: 1.6rem;
  flex-shrink: 0;
  opacity: .85;
}
.contact-strip__label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
}
.contact-strip__value {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  transition: opacity .2s;
}
a.contact-strip__value:hover { opacity: .8; }

/* ── Services ── */
.services { background: var(--off-white); }
.services__highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
}
.services__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: 12px 24px;
  border-radius: 50px;
  letter-spacing: .03em;
}
.services__highlight i { color: var(--gold); font-size: 1rem; }
.services__highlight--cta {
  background: var(--gold);
  color: var(--white);
}
.services__highlight--cta i { color: var(--white); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card__text { color: var(--text-muted); font-size: .95rem; }

/* ── About ── */
.about { background: var(--off-white); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__image-col { position: relative; }
.about__image-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(200,149,42,.4);
}
.about__badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about__badge-text {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  opacity: .9;
  margin-top: 4px;
}

.about__text-col .section-header__title { text-align: left; margin-bottom: 20px; }
.about__text-col .section-header__eyebrow { margin-bottom: 10px; }
.about__text-col p { color: var(--text-muted); margin-bottom: 16px; font-size: .97rem; }
.about__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 28px 0 36px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--text);
}
.about__list i { color: var(--gold); font-size: .85rem; }

/* ── Gallery ── */
.gallery { background: var(--navy); }
.gallery .section-header__title { color: var(--white); }
.gallery .section-header__sub   { color: rgba(255,255,255,.65); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: linear-gradient(transparent, rgba(17,27,48,.85));
  color: var(--white);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }

/* ── Reviews ── */
.reviews { background: var(--off-white); }

.reviews__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.reviews__score-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.reviews__stars { color: var(--gold); font-size: 1.1rem; display: flex; gap: 3px; }
.reviews__score-label { color: var(--text-muted); font-size: .95rem; }
.reviews__score-label strong { color: var(--navy); }

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

.review-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.review-card__stars { color: var(--gold); font-size: .9rem; display: flex; gap: 3px; }

.review-card__text {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__name {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
}
.review-card__date {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Why Us ── */
.why-us { background: var(--navy); }
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.why-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(200,149,42,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 20px;
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p { color: rgba(255,255,255,.65); font-size: .92rem; }

/* ── Contact ── */
.contact { background: var(--off-white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact__info .section-header__title { text-align: left; }
.contact__info .section-header__eyebrow { display: block; margin-bottom: 10px; }
.contact__info > p { color: var(--text-muted); margin: 16px 0 32px; }

.contact__methods { display: flex; flex-direction: column; gap: 16px; }
.contact__method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card-bg);
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: var(--transition);
  cursor: pointer;
}
a.contact__method:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.contact__method-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact__method-icon--fb { background: #0a82fd; color: var(--white); }
.contact__method-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact__method-value {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
}

/* ── Contact Form ── */
.contact-form {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group label span { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e3eb;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b5c0; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,149,42,.15);
}
.form-group input.error,
.form-group textarea.error { border-color: #e05252; }
.form-group select { cursor: pointer; }

.form-success {
  display: none;
  margin-top: 16px;
  background: #edfdf4;
  border: 1.5px solid #34c77a;
  color: #1a7a47;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-weight: 600;
  font-size: .95rem;
  gap: 10px;
  align-items: center;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.2rem; }

/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand .header__logo { margin-bottom: 16px; }
.footer__tagline { font-size: .9rem; max-width: 280px; opacity: .7; }

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold); }

.footer__contact p {
  font-size: .9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__contact i { color: var(--gold); width: 16px; }
.footer__contact a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer__contact a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ── Scroll-to-top ── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(200,149,42,.45);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services__grid    { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid     { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .why-us__grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .about__inner      { gap: 48px; }
  .footer__inner     { grid-template-columns: 1fr 1fr; }
  .footer__brand     { grid-column: 1 / -1; }
}

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

  .top-bar { display: none; }

  .nav, .header__cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero__inner { grid-template-columns: 1fr; padding: 60px 24px; }
  .hero__photo-wrap { display: none; }

  .services__grid    { grid-template-columns: 1fr; }
  .reviews__grid     { grid-template-columns: 1fr; }
  .gallery__grid     { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--tall { grid-row: span 1; }
  .about__inner      { grid-template-columns: 1fr; gap: 48px; }
  .about__badge      { right: 0; bottom: -16px; }
  .contact__inner    { grid-template-columns: 1fr; gap: 40px; }
  .why-us__grid      { grid-template-columns: 1fr; }
  .contact-strip__inner { grid-template-columns: 1fr 1fr; }
  .footer__inner     { grid-template-columns: 1fr; gap: 32px; }
  .contact-form      { padding: 28px 20px; }
  .about__list       { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contact-strip__inner { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn--lg { width: 100%; justify-content: center; }
}
