:root {
  --charcoal: #121417;
  --ink: #1b1f24;
  --steel: #6f7a86;
  --line: #dbe0e6;
  --paper: #f7f7f5;
  --white: #ffffff;
  --red: #f0522d;
  --red-dark: #c93b1f;
  --blue: #2f80c7;
  --shadow: 0 18px 42px rgba(18, 20, 23, 0.14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(18, 20, 23, 0.94);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.brand img { width: 190px; height: auto; }
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
  color: #e8eaec;
}
.main-nav a { padding: 8px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover { border-color: var(--red); color: var(--white); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 9px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 12px 26px rgba(240, 82, 45, 0.28); }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { background: var(--white); color: var(--charcoal); }
.btn-small { min-height: 40px; padding: 9px 14px; font-size: 0.9rem; }

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 360px);
  align-items: end;
  gap: 28px;
  padding: clamp(90px, 14vw, 150px) clamp(18px, 5vw, 70px) 58px;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 20, 23, 0.9), rgba(18, 20, 23, 0.62), rgba(18, 20, 23, 0.18)),
    linear-gradient(0deg, rgba(18, 20, 23, 0.65), transparent 48%),
    url("https://images.unsplash.com/photo-1632823471565-1ecdf5c7ca93?auto=format&fit=crop&w=1800&q=82") center / cover;
  z-index: -1;
}
.hero-content { max-width: 760px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3.1rem, 9vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}
.slogan {
  margin: 18px 0 12px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 800;
}
.hero-copy {
  max-width: 660px;
  margin: 0 0 30px;
  color: #edf0f2;
  font-size: 1.12rem;
}
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(18, 20, 23, 0.76);
  box-shadow: var(--shadow);
}
.hero-card strong { display: block; margin: 16px 0 8px; font-size: 1.1rem; }
.badge {
  display: inline-flex;
  border-radius: var(--radius);
  padding: 7px 12px;
  background: rgba(240, 82, 45, 0.15);
  color: #ffbdab;
  border: 1px solid rgba(240, 82, 45, 0.35);
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--red);
  color: var(--white);
  font-weight: 800;
}
.trust-strip span {
  text-align: center;
  padding: 16px 10px;
  border-right: 1px solid rgba(255,255,255,0.22);
}

.section {
  padding: clamp(68px, 9vw, 110px) clamp(18px, 5vw, 70px);
}
.split, .mot-band, .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.75fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}
.section-copy h2, .section-heading h2, .booking-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}
.section-copy p, .section-heading p {
  max-width: 760px;
  color: #4e5964;
  font-size: 1.05rem;
}
.section-heading { margin: 0 auto 38px; max-width: 820px; text-align: center; }

.feature-panel, .contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.tick-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.tick-list li::before, .why-grid span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 99px;
  background: var(--red);
}

.dark-section {
  background: var(--charcoal);
  color: var(--white);
}
.dark-section .section-heading p { color: #c7ced6; }
.service-grid, .pricing-grid, .reviews-grid, .process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card, .price-card, .review-card, .process-card {
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(18, 20, 23, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dark-section .service-card { background: #1e2329; color: var(--white); border-color: #303841; }
.service-card:hover, .gallery-card:hover, .price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -10px 18px rgba(0, 0, 0, 0.18);
}
.icon::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
}
.icon.blue { background: var(--blue); }
.service-card h3, .price-card h3, .process-card h3 { margin: 0 0 8px; line-height: 1.25; }
.service-card p { margin: 0; color: #cbd2d9; }
.service-card:not(.dark-section *) p { color: #4e5964; }

.mot-band {
  background: linear-gradient(135deg, #f7f7f5 0%, #e9edf1 100%);
}
.mot-features { display: grid; gap: 14px; }
.mot-features span {
  padding: 18px;
  background: var(--white);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(18,20,23,0.08);
  font-weight: 800;
}

.price-card strong { display: block; color: var(--red); font-size: 1.8rem; line-height: 1.1; }
.fine-print { text-align: center; color: #59636e; margin-top: 22px; }

.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.why-grid span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.gallery-card {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18,20,23,0.82), rgba(18,20,23,0.08));
}
.gallery-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
}
.image-engine { background-image: url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=700&q=76"); }
.image-lift { background-image: url("https://images.unsplash.com/photo-1625047509248-ec889cbff17f?auto=format&fit=crop&w=700&q=76"); }
.image-mot { background-image: url("https://images.unsplash.com/photo-1606577924006-27d39b132ae2?auto=format&fit=crop&w=700&q=76"); }
.image-brakes { background-image: url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=700&q=76"); }
.image-diagnostics { background-image: url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=700&q=76"); }
.image-tyres { background-image: url("https://images.unsplash.com/photo-1580273916550-e323be2ae537?auto=format&fit=crop&w=700&q=76"); }
.image-interior { background-image: url("https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?auto=format&fit=crop&w=700&q=76"); }
.image-inspection { background-image: url("https://images.unsplash.com/photo-1555664424-778a1e5e1b48?auto=format&fit=crop&w=700&q=76"); }
.image-aircon { background-image: url("https://images.unsplash.com/photo-1599256872237-5dcc0fbe9668?auto=format&fit=crop&w=700&q=76"); }
.image-customer { background-image: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=700&q=76"); }

.review-card { margin: 0; font-weight: 700; }
.review-card cite { display: block; margin-top: 16px; color: var(--red); font-style: normal; }

.process-section { background: var(--charcoal); color: var(--white); }
.process-section .section-heading p { color: #c7ced6; }
.process-card { background: #1e2329; border-color: #303841; color: var(--white); }
.process-card span { color: var(--red); font-weight: 900; font-size: 1.6rem; }

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(18,20,23,0.06);
}
summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}
details p { margin: 0; padding: 0 20px 20px; color: #4e5964; }

.booking-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 54px clamp(18px, 5vw, 70px);
  background: linear-gradient(100deg, var(--charcoal), #242b32);
  color: var(--white);
}
.booking-cta p { max-width: 700px; color: #dce1e6; }

.contact-section { background: var(--white); }
.contact-layout { align-items: start; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--paper);
}
label { display: grid; gap: 7px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd2d9;
  border-radius: var(--radius);
  padding: 11px 12px;
  font: inherit;
  background: var(--white);
}
textarea { resize: vertical; }
.full-field { grid-column: 1 / -1; }
.hours { display: grid; gap: 8px; margin: 0; }
.hours div { display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.hours dt { font-weight: 800; }
.hours dd { margin: 0; color: #4e5964; text-align: right; }

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
  padding: 52px clamp(18px, 5vw, 70px) 28px;
  background: #0d0f12;
  color: #dce1e6;
}
.site-footer img { width: 210px; margin-bottom: 12px; }
.site-footer h3 { color: var(--white); margin: 0 0 12px; }
.site-footer a { display: block; margin: 8px 0; color: #dce1e6; }
.site-footer a:hover { color: var(--red); }
.socials { display: flex; gap: 10px; }
.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: #20262d;
  font-weight: 900;
}
.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid #28313a;
  color: #9ea7b1;
}

.mobile-book {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  min-height: 48px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

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

@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto auto auto; justify-content: space-between; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--charcoal);
    border: 1px solid #2d343c;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px; }
}

@media (max-width: 960px) {
  .hero, .split, .mot-band, .contact-layout { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .service-grid, .pricing-grid, .reviews-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-cta { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  body { padding-bottom: 76px; }
  .site-header { padding: 10px 14px; }
  .brand img { width: 158px; }
  .header-cta { display: none; }
  .hero {
    min-height: 760px;
    padding: 82px 18px 34px;
    align-items: end;
  }
  .hero h1 { font-size: 3.15rem; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); font-size: 0.86rem; }
  .section { padding: 58px 18px; }
  .service-grid, .pricing-grid, .reviews-grid, .process-grid, .gallery-grid, .why-grid, .contact-form, .site-footer { grid-template-columns: 1fr; }
  .gallery-card { min-height: 190px; }
  .hours div { flex-direction: column; gap: 2px; padding-bottom: 8px; }
  .hours dd { text-align: left; }
  .mobile-book { display: grid; }
}

/* Premium presentation refinements */
body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background:
    linear-gradient(180deg, #fbfbfa 0%, #f1f3f5 52%, #f7f7f5 100%);
  color: #171b20;
}

.site-header {
  grid-template-columns: minmax(190px, auto) 1fr auto;
  min-height: 82px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 15, 18, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.brand img { width: 215px; }

.main-nav {
  gap: clamp(10px, 1.3vw, 22px);
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 2px;
  color: #d7dde3;
}

.header-cta {
  min-width: 128px;
  box-shadow: 0 10px 24px rgba(240, 82, 45, 0.32);
}

.btn {
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 7px;
}

.btn-primary {
  background: linear-gradient(180deg, #ff633d 0%, #e84321 100%);
  box-shadow: 0 14px 28px rgba(232, 67, 33, 0.34);
}

.btn-secondary {
  border: 1px solid rgba(18, 20, 23, 0.1);
  box-shadow: 0 12px 26px rgba(18, 20, 23, 0.12);
}

.hero {
  min-height: min(860px, calc(100vh - 82px));
  grid-template-columns: minmax(0, 840px) minmax(310px, 410px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding-top: clamp(96px, 12vw, 150px);
  padding-bottom: clamp(56px, 8vw, 92px);
}

.hero-bg {
  background:
    radial-gradient(circle at 82% 28%, rgba(47, 128, 199, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(10, 12, 15, 0.94), rgba(18, 20, 23, 0.72) 49%, rgba(18, 20, 23, 0.28)),
    linear-gradient(0deg, rgba(10, 12, 15, 0.78), rgba(10, 12, 15, 0.08) 46%),
    url("https://images.unsplash.com/photo-1632823471565-1ecdf5c7ca93?auto=format&fit=crop&w=2000&q=86") center / cover;
}

.hero-content { max-width: 820px; }

.hero h1 {
  max-width: 880px;
  font-weight: 900;
  font-size: clamp(3.45rem, 8.6vw, 7.2rem);
  line-height: 0.91;
  text-wrap: balance;
}

.slogan {
  margin-top: 22px;
  color: #ffffff;
  text-wrap: balance;
}

.hero-copy {
  max-width: 720px;
  color: #e3e9ef;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.hero-actions { gap: 16px; }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 740px;
  margin-top: 28px;
}

.hero-proof span {
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbe2e9;
  backdrop-filter: blur(12px);
}

.hero-proof strong {
  display: block;
  color: #ffffff;
  font-size: 1.06rem;
}

.hero-card {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(24, 29, 35, 0.92), rgba(12, 14, 17, 0.88));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.hero-card strong { font-size: 1.25rem; }

.hero-card a {
  display: inline-flex;
  margin-top: 8px;
  color: #ffb29f;
  font-weight: 900;
  border-bottom: 2px solid rgba(240, 82, 45, 0.7);
}

.trust-strip {
  background: #101317;
  border-top: 1px solid #2b333b;
  border-bottom: 1px solid #2b333b;
}

.trust-strip span {
  padding: 18px 12px;
  color: #edf1f4;
  font-size: 0.9rem;
}

.section {
  padding-top: clamp(78px, 9vw, 128px);
  padding-bottom: clamp(78px, 9vw, 128px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 46px;
}

.section-copy h2,
.section-heading h2,
.booking-cta h2 {
  font-weight: 900;
  line-height: 1.02;
  text-wrap: balance;
}

.section-copy p,
.section-heading p {
  color: #55606c;
  font-size: 1.08rem;
}

.feature-panel,
.contact-card,
.contact-form {
  border-color: #d7dde3;
  box-shadow: 0 22px 54px rgba(18, 20, 23, 0.1);
}

.dark-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #111418 0%, #1a2027 58%, #101317 100%);
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.34;
  pointer-events: none;
}

.dark-section > * {
  position: relative;
  z-index: 1;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  min-height: 220px;
  padding: 26px;
}

.dark-section .service-card {
  background: linear-gradient(180deg, rgba(39, 46, 54, 0.94), rgba(24, 29, 35, 0.96));
  border-color: rgba(255, 255, 255, 0.1);
}

.service-featured {
  border-top: 4px solid var(--red);
}

.service-card h3 {
  font-size: 1.14rem;
  font-weight: 900;
}

.service-card p {
  font-size: 0.96rem;
}

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.mot-band {
  border-top: 1px solid #e1e5e9;
  border-bottom: 1px solid #e1e5e9;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.88), rgba(239,243,246,0.86)),
    url("https://images.unsplash.com/photo-1613214150384-4b75b141f7c4?auto=format&fit=crop&w=1600&q=76") center / cover;
}

.mot-features span {
  padding: 20px 22px;
  border-left-width: 6px;
  box-shadow: 0 18px 42px rgba(18, 20, 23, 0.1);
}

.pricing-section {
  background: #ffffff;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  min-height: 160px;
  padding: 24px;
  border-color: #d7dde3;
  background:
    linear-gradient(180deg, #ffffff, #f8fafb);
}

.price-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: var(--radius);
  background: #eef2f5;
  color: #56616c;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  margin-top: 14px;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.price-popular {
  border-color: rgba(240, 82, 45, 0.5);
  box-shadow: 0 22px 54px rgba(240, 82, 45, 0.16);
}

.price-popular span {
  background: rgba(240, 82, 45, 0.12);
  color: var(--red-dark);
}

.why-grid {
  gap: 14px;
}

.why-grid span {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 20, 23, 0.05);
}

.gallery-section {
  background: #eef1f4;
}

.gallery-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  min-height: 238px;
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.gallery-card:first-child,
.gallery-card:nth-child(7) {
  grid-column: span 2;
}

.gallery-card::after {
  background:
    linear-gradient(0deg, rgba(13,15,18,0.86), rgba(13,15,18,0.12) 56%),
    linear-gradient(90deg, rgba(240,82,45,0.18), transparent 38%);
}

.gallery-card span {
  left: 18px;
  right: 18px;
  bottom: 18px;
  font-size: 1rem;
}

.reviews-section {
  background: #ffffff;
}

.reviews-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 230px;
  padding: 24px;
  border-color: #d7dde3;
  font-size: 0.98rem;
  line-height: 1.65;
}

.review-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card cite {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e3e7eb;
}

.process-grid {
  gap: 20px;
}

.process-card {
  min-height: 175px;
  padding: 28px;
}

.booking-cta {
  padding-top: 64px;
  padding-bottom: 64px;
  background:
    linear-gradient(100deg, rgba(13,15,18,0.96), rgba(35,42,50,0.92)),
    url("https://images.unsplash.com/photo-1603386329225-868f9b1ee6c9?auto=format&fit=crop&w=1800&q=78") center / cover;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.7fr);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(240, 82, 45, 0.18);
  border-color: var(--red);
}

.mobile-book {
  min-height: 54px;
  background: linear-gradient(180deg, #ff633d, #e84321);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .brand img { width: 190px; }

  .main-nav {
    top: 82px;
  }

  .service-grid,
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 8px 14px;
  }

  .brand {
    padding: 4px;
    border-radius: 9px;
  }

  .brand img { width: 158px; }

  .main-nav { top: 72px; }

  .hero {
    min-height: auto;
    padding: 92px 18px 38px;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.35rem);
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .hero-proof span {
    min-height: auto;
  }

  .hero-card {
    padding: 22px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .pricing-grid,
  .reviews-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card:first-child,
  .gallery-card:nth-child(7) {
    grid-column: auto;
  }

  .service-card,
  .price-card,
  .review-card,
  .process-card {
    min-height: auto;
  }

  .section-heading {
    text-align: left;
    margin-bottom: 30px;
  }

  .contact-card,
  .contact-form {
    padding: 20px;
  }
}

/* Mobile and tablet responsiveness fix */
.drawer-head,
.menu-overlay {
  display: none;
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

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

  body.menu-open {
    overflow: hidden;
  }

  body {
    padding-bottom: 0;
  }

  section,
  .section,
  .booking-cta,
  .site-footer,
  .trust-strip,
  .hero,
  .site-header {
    max-width: 100%;
    box-sizing: border-box;
  }

  .section,
  section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  img,
  svg,
  video {
    max-width: 100%;
    height: auto;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    min-height: 74px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
  }

  .brand {
    max-width: min(180px, calc(100vw - 92px));
    padding: 4px;
    flex: 0 1 auto;
  }

  .brand img {
    width: 100%;
    max-width: 180px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle span {
    width: 22px;
    margin: 3px 0;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 180;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.58);
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  body.menu-open .menu-overlay {
    visibility: visible;
    opacity: 1;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    z-index: 200;
    display: flex;
    width: min(82vw, 340px);
    height: 100vh;
    max-width: 100%;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    overflow-y: auto;
    background: #0d0f12;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    box-shadow: -26px 0 56px rgba(0, 0, 0, 0.38);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .main-nav.is-open {
    display: flex;
    transform: translateX(0);
  }

  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 2px 0 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .drawer-head img {
    width: 190px;
    max-width: calc(100% - 54px);
  }

  .drawer-close {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font: inherit;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 4px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #f1f4f6;
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
  }

  .main-nav a:hover {
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffb29f;
  }

  .hero {
    width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    padding: 92px 20px 60px;
    overflow: hidden;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(10, 12, 15, 0.95), rgba(18, 20, 23, 0.68)),
      linear-gradient(0deg, rgba(10, 12, 15, 0.82), rgba(10, 12, 15, 0.2) 55%),
      url("https://images.unsplash.com/photo-1632823471565-1ecdf5c7ca93?auto=format&fit=crop&w=1200&q=78") center / cover;
  }

  .hero-content,
  .section-copy,
  .section-heading,
  .hero-copy,
  .hero-card {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 12vw, 64px);
    line-height: 1;
    word-break: normal;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .hero .slogan {
    max-width: 100%;
    margin-top: 16px;
    font-size: clamp(22px, 6.4vw, 30px);
    line-height: 1.15;
    text-wrap: balance;
  }

  .hero p,
  .hero-copy {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.5;
  }

  .eyebrow {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .hero-actions,
  .button-group,
  .cta-buttons,
  .cta-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 14px;
  }

  .btn,
  button,
  .cta-button {
    width: 100%;
    max-width: 340px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    border-radius: 12px;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .contact-form .btn {
    max-width: 100%;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle,
  .drawer-close {
    width: 44px;
    max-width: 44px;
    min-height: 44px;
    flex: 0 0 44px;
    padding: 8px;
    border-radius: 10px;
  }

  .drawer-close {
    font-size: 30px;
  }

  .hero-proof {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-proof span {
    width: 100%;
    min-height: auto;
  }

  .hero-card {
    align-self: stretch;
    padding: 22px;
  }

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

  .trust-strip span {
    min-width: 0;
    padding: 14px 8px;
    font-size: 0.82rem;
  }

  .split,
  .mot-band,
  .contact-layout,
  .booking-cta {
    grid-template-columns: 1fr;
  }

  .section-copy h2,
  .section-heading h2,
  .booking-cta h2 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.05;
  }

  .section-heading {
    text-align: left;
  }

  .service-grid,
  .services-grid,
  .pricing-grid,
  .reviews-grid,
  .gallery-grid,
  .cards-grid,
  .process-grid,
  .why-grid,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .service-card,
  .price-card,
  .review-card,
  .process-card,
  .feature-panel,
  .contact-card,
  .contact-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .gallery-card:first-child,
  .gallery-card:nth-child(7) {
    grid-column: auto;
  }

  .gallery-card {
    min-height: 210px;
  }

  .contact-form {
    padding: 20px;
  }

  .full-field {
    grid-column: 1;
  }

  input,
  select,
  textarea {
    min-width: 0;
    max-width: 100%;
  }

  .booking-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 54px 20px;
  }

  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-book {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand {
    max-width: min(168px, calc(100vw - 82px));
  }

  .brand img {
    max-width: 168px;
  }

  .hero {
    padding: 86px 20px 52px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 1;
  }

  .hero .slogan {
    font-size: clamp(21px, 6.2vw, 27px);
  }

  .hero p,
  .hero-copy {
    font-size: 16px;
  }

  .section,
  section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .btn,
  button,
  .cta-button {
    max-width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 190px;
  }

  .drawer-head img {
    width: 170px;
  }
}

/* Portfolio demo cleanup: remove decorative number chips and soften obvious pill shapes. */
.main-nav a,
.btn,
.hero-kicker,
.status-pill,
.quick-card,
.service-card,
.process-card,
.contact-card,
.faq-item,
.quote-panel,
.drawer,
input,
select,
textarea {
  border-radius: var(--radius);
}
