:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #25304b;
  --muted: #8c93a3;
  --line: #e7eaee;
  --brand: #74d4ef;
  --brand-deep: #182f5c;
  --brand-soft: #f4fbfe;
  --shadow: 0 18px 36px rgba(24, 47, 92, 0.08);
  --radius: 20px;
  --radius-sm: 10px;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
li {
  overflow-wrap: anywhere;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #efefef;
}

.header-note-wrap,
.header-wrap,
.hero-inner,
.section,
.footer-grid,
.footer-nav-shell,
.footer-utility {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.header-note-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 34px;
}

.header-note {
  margin: 0;
  color: #b4b1b1;
  font-size: 0.75rem;
}

.header-wrap {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 68px;
  border-top: 1px solid #f3f3f3;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.site-nav a {
  padding: 1rem 1.35rem;
  font-family: "Lora", Georgia, serif;
  font-size: 0.95rem;
  color: #6d7480;
  border-top: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #6bcbe9;
  border-color: var(--brand);
}

.nav-ghost {
  margin-left: 1rem;
  border: 1px solid #cfd4dc;
  color: var(--brand-deep) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(24, 49, 91, 0.12);
  background: #fff;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--brand-deep);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: 470px;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-home {
  background-image: url("/assets/img/hero-bg.jpg");
}

.hero-office,
.hero-products,
.hero-textile,
.hero-carwash {
  background-image: url("/assets/img/office-hero.png");
}

.hero-carwash::after,
.hero-textile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 30, 64, 0.88), rgba(13, 30, 64, 0.63));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 35, 76, 0.92), rgba(17, 35, 76, 0.78));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 3rem;
  padding: 4.5rem 0 4rem;
}

.hero-copy {
  max-width: 430px;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.62rem;
  font-weight: 700;
}

.hero h1,
.section h2,
.quote-block blockquote,
.contact-card h2,
.detail-card h3,
.faq-item summary,
.step-card h3,
.site-footer h2 {
  font-family: "Lora", Georgia, serif;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.hero p:last-of-type {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.button-link,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.6rem 1rem;
  border: 1px solid var(--brand);
  background: transparent;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button-link:hover,
button:hover {
  transform: translateY(-1px);
  background: var(--brand);
  color: var(--brand-deep);
}

.hero-art img {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.breadcrumb span:last-child {
  color: #fff;
}

.section {
  padding: 3.9rem 0;
}

.section-mark {
  width: 76px;
  height: 8px;
  margin-bottom: 1.35rem;
  background: url("/assets/img/accent-line.png") center / contain no-repeat;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.15;
}

.section-intro h2 {
  max-width: none;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
}

.section-intro .eyebrow {
  margin-bottom: 0.7rem;
  color: #86d8ef;
  font-size: 0.7rem;
}

.card-grid,
.values-grid,
.three-col,
.product-grid,
.detail-grid,
.steps-grid,
.gallery-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid,
.values-grid,
.product-grid,
.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-col,
.detail-grid,
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.detail-card,
.product-card,
.step-card,
.gallery-card,
.contact-card,
.faq-item,
.aside-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid #edf0f3;
  box-shadow: none;
}

.info-card,
.detail-card,
.contact-card,
.step-card,
.aside-card {
  padding: 1.7rem 1.35rem;
}

.info-card h3,
.detail-card h3,
.product-card h3,
.contact-card h2,
.step-card h3 {
  margin: 0.8rem 0 0.9rem;
  font-size: 1.1rem;
}

.split-grid,
.profile-grid,
.enquiry-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.profile-grid {
  grid-template-columns: 1.1fr 1.1fr 0.9fr;
  align-items: start;
}

.profile-photo img,
.media-frame img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame,
.gallery-card {
  overflow: clip;
  border-radius: 0;
}

.quote-block blockquote {
  margin: 0;
  padding: 2rem 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  text-align: center;
  color: var(--brand-deep);
}

.values-panel {
  background:
    linear-gradient(180deg, rgba(209, 147, 137, 0.72), rgba(24, 47, 92, 0.52)),
    url("/assets/img/footer-bg.jpg") center/cover;
  color: #182f5c;
  margin-block: 0;
  padding-block: 4.8rem;
}

.values-grid article,
.three-col article {
  padding: 0;
}

.product-card img,
.gallery-card img {
  aspect-ratio: 1 / 1;
}

.product-card,
.gallery-card {
  border-radius: var(--radius-sm);
}

.product-card h3,
.gallery-card figcaption {
  padding: 1rem 1rem 1.2rem;
}

.detail-card a,
.footer-links a,
.footer-meta a {
  color: var(--brand-deep);
}

.logo-strip-section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo-strip {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
  color: #50607d;
  text-align: center;
  font-family: "Lora", Georgia, serif;
  font-size: 1rem;
}

.contact-icon,
.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.3rem;
}

.enquiry-form {
  display: grid;
  gap: 1rem;
}

.enquiry-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(36, 48, 75, 0.14);
  background: #fff;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
}

.check-list,
.list-columns ul {
  padding-left: 1.2rem;
}

.faq-shell {
  max-width: 860px;
}

.faq-item {
  padding: 0;
  border-radius: var(--radius-sm);
  overflow: clip;
}

.faq-item + .faq-item {
  margin-top: 1rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.4rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.4rem 1.3rem;
}

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

.step-card {
  border-radius: var(--radius-sm);
}

.step-number {
  margin-bottom: 1rem;
}

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

.narrow {
  max-width: 860px;
}

.site-footer {
  margin-top: 0;
  color: #fff;
  background: #fff;
}

.footer-band {
  min-height: 170px;
  background:
    linear-gradient(180deg, rgba(214, 145, 136, 0.68), rgba(35, 49, 84, 0.45)),
    url("/assets/img/footer-bg.jpg") center/cover;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding: 3.2rem 0 2.8rem;
}

.footer-grid h2 {
  margin: 0 0 0.65rem;
  color: var(--brand-deep);
  font-size: 1.15rem;
}

.footer-grid p {
  margin: 0;
  color: rgba(24, 47, 92, 0.92);
  font-size: 0.92rem;
}

.footer-nav-shell {
  padding: 1rem 0 0.75rem;
}

.footer-nav,
.footer-utility {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-site-nav {
  justify-content: center;
  border-top: 1px solid #f0f0f0;
  margin-top: 0.8rem;
}

.footer-utility {
  padding: 0 0 2rem;
  color: #7b8391;
}

.footer-meta,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
}

.info-card img {
  width: 30px;
  height: auto;
}

.info-card p,
.split-grid p,
.values-grid p {
  color: #6b7482;
  font-size: 0.92rem;
}

.values-grid h3 {
  margin: 0 0 0.55rem;
  color: var(--brand-deep);
  font-size: 1.05rem;
}

.split-grid {
  align-items: start;
}

.split-grid .button-link {
  margin-top: 0.8rem;
  color: var(--brand-deep);
}

.split-grid .media-frame {
  max-width: 380px;
}

.contact-grid,
.card-grid {
  align-items: start;
}

@media (max-width: 1024px) {
  .card-grid,
  .values-grid,
  .footer-grid,
  .contact-grid,
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner,
  .split-grid,
  .enquiry-shell,
  .list-columns {
    grid-template-columns: 1fr;
  }

  .three-col,
  .detail-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header-note-wrap {
    display: none;
  }

  .header-wrap {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.25rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid rgba(36, 48, 75, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .nav-ghost {
    margin: 0;
    border-top: 0;
    border-left: 3px solid transparent;
    width: 100%;
  }

  .site-nav a[aria-current="page"] {
    border-left-color: var(--brand);
  }

  .hero {
    min-height: 420px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 2.75rem 0 3rem;
  }

  .hero-art {
    order: -1;
    max-width: 150px;
    margin: 0;
  }

  .card-grid,
  .values-grid,
  .three-col,
  .product-grid,
  .detail-grid,
  .gallery-grid,
  .contact-grid,
  .footer-grid,
  .steps-grid,
  .logo-strip {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .section {
    padding: 2.9rem 0;
  }

  .quote-block blockquote {
    font-size: 2rem;
  }

  .footer-nav,
  .footer-utility,
  .footer-meta,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 414px) {
  .header-note-wrap,
  .header-wrap,
  .hero-inner,
  .section,
  .footer-grid,
  .footer-nav-shell,
  .footer-utility {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .button-link,
  button {
    width: auto;
  }
}
