:root {
  color-scheme: light;
  --white: #ffffff;
  --soft-white: #f8fafc;
  --paper: #f1f5f9;
  --ink: #101828;
  --secondary-dark: #1d2939;
  --muted: #667085;
  --gold: #d9ae28;
  --gold-strong: #bc8f12;
  --silver: #e4e7ec;
  --silver-strong: #98a2b3;
  --teal: #00897b;
  --line: #e4e7ec;
  --shadow: 0 20px 48px rgba(16, 24, 40, 0.14);
  --shadow-soft: 0 8px 24px rgba(16, 24, 40, 0.07);
  --radius: 16px;
  --container: 1180px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.modal-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

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

svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.7);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(228, 231, 236, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 18px rgba(16, 24, 40, 0.06);
}

.top-strip {
  background: var(--secondary-dark);
  color: var(--white);
  font-size: 0.88rem;
}

.top-strip-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip span,
.top-strip a,
.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-copy strong {
  color: #064c9e;
  background: linear-gradient(100deg, #082f6b 0%, #0877dc 30%, #7f8791 57%, #b88916 76%, #082f6b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.0625rem;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

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

.site-nav > a,
.site-nav > .nav-mega > button {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  font-weight: 650;
  transition: color 200ms ease, background-color 200ms ease;
}

.site-nav > a:hover,
.site-nav > .nav-mega > button:hover,
.site-nav .active {
  background: rgba(212, 175, 55, 0.14);
  color: #6f520b;
}

.nav-cta,
.button,
.sticky-enquiry {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta,
.button.primary {
  background: var(--gold);
  color: #181301;
  box-shadow: 0 12px 28px rgba(183, 137, 24, 0.24);
}

.button.ghost {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.button.light {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.hero-content .button.light,
.service-area-section .button.light,
.cta-section .button.light {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
}

.nav-cta:hover,
.button:hover,
.sticky-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(21, 23, 28, 0.18);
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
}

.mobile-menu-button {
  display: none;
}

.nav-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: -120px;
  width: min(980px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(200, 204, 210, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-mega:hover .mega-menu,
.nav-mega.open .mega-menu,
.nav-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu h3 {
  margin: 0 0 10px;
  color: #6f520b;
  font-size: 0.96rem;
}

.mega-menu a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.mega-menu a:hover {
  color: var(--ink);
}

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.home-hero {
  aspect-ratio: 16 / 9;
  min-height: 540px;
  max-height: 760px;
}

.page-hero {
  aspect-ratio: 16 / 9;
  min-height: 480px;
  max-height: 680px;
  display: grid;
  align-items: end;
  padding: 0;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 1;
  transform: translateX(100%);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide.active {
  z-index: 2;
  transform: translateX(0);
}

.hero-slide.was-active {
  z-index: 1;
  transform: translateX(-100%);
}

.hero-image,
.page-hero-image,
.image-band-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 24, 40, 0.9) 0%, rgba(16, 24, 40, 0.64) 50%, rgba(16, 24, 40, 0.18) 100%),
    linear-gradient(0deg, rgba(16, 24, 40, 0.46), transparent 48%);
}

.hero-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(16px, calc((100vw - var(--container)) / 2));
  z-index: 2;
  width: min(760px, calc(100vw - 32px));
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(76px, 8vw, 112px);
  padding-bottom: clamp(84px, 8vw, 112px);
  max-width: 760px;
}

.page-hero .hero-content {
  padding-top: 96px;
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.7rem, 5vw, 4rem);
  font-weight: 780;
  max-width: 720px;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 750;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 720;
}

.hero-content > p:not(.eyebrow) {
  margin: 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.65;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
}

.hero-dots button.active {
  background: var(--gold);
}

.quick-contact-band {
  background: var(--soft-white);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: transparent;
}

.quick-contact-grid a {
  min-width: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(16, 24, 40, 0.04);
  font-weight: 700;
  transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.quick-contact-grid a svg {
  width: 36px;
  height: 36px;
  padding: 9px;
  color: var(--gold-strong);
  background: rgba(217, 174, 40, 0.12);
  border-radius: 50%;
}

.quick-contact-grid a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.quick-contact-grid a:hover {
  color: var(--gold-strong);
}

.section {
  padding: clamp(72px, 7vw, 92px) 0;
}

.breadcrumb-section {
  padding: 18px 0 0;
}

.section-silver {
  background: var(--soft-white);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-card-grid,
.feature-grid,
.process-grid,
.testimonial-grid,
.industry-grid,
.value-grid,
.service-link-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.service-card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card-grid.compact {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card a {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}

.service-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card-body {
  padding: 20px;
}

.service-card-body p {
  margin: 0 0 6px;
  color: var(--gold-strong);
  font-weight: 750;
  font-size: 0.84rem;
}

.service-card-body h3 {
  min-height: 46px;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.service-card-body span {
  color: var(--ink);
  font-weight: 700;
}

.service-card-body span::after {
  content: " \2192";
  color: var(--gold-strong);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.split-copy p:not(.eyebrow) {
  color: var(--muted);
}

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

.feature-card,
.process-step,
.testimonial,
.value-card,
.detail-block,
.spec-list,
.pricing-list,
.contact-panel,
.contact-details,
.cta-panel,
.service-link-card,
.sitemap-block,
.legal-copy {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.process-step,
.value-card,
.detail-block,
.spec-list,
.pricing-list,
.contact-panel,
.contact-details,
.cta-panel,
.service-link-card,
.sitemap-block {
  padding: 24px;
}

.legal-copy {
  padding: 30px;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #6f520b;
  background: rgba(212, 175, 55, 0.16);
  margin-bottom: 16px;
}

.feature-card p,
.process-step p,
.detail-block p,
.spec-list p,
.testimonial blockquote,
.cta-panel p,
.service-link-card small {
  margin: 0;
  color: var(--muted);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: process;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold-strong);
  font-size: 1.7rem;
  font-weight: 900;
}

.image-band {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 14, 0.82), rgba(8, 10, 14, 0.32));
}

.image-band-photo {
  position: absolute;
  inset: 0;
}

.image-band-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list svg {
  color: var(--gold);
  margin-top: 4px;
}

.industry-grid {
  grid-template-columns: repeat(6, 1fr);
}

.industry-pill {
  min-height: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  background: var(--white);
  font-weight: 850;
  box-shadow: var(--shadow-soft);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial {
  margin: 0;
  padding: 24px;
}

.testimonial span {
  color: var(--gold);
  display: inline-flex;
  margin-bottom: 14px;
}

.testimonial figcaption {
  margin-top: 18px;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 18px 56px 18px 20px;
  font-weight: 720;
  cursor: pointer;
  position: relative;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(217, 174, 40, 0.16);
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.service-area-section {
  background: linear-gradient(135deg, var(--ink), #303743);
  color: var(--white);
}

.service-area-section p,
.service-area-section .cta-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.service-area-section .cta-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumb a {
  color: var(--gold-strong);
  font-weight: 800;
}

.two-column-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pricing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  box-shadow: none;
}

.pricing-list span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.12);
  padding: 8px 12px;
  color: #6f520b;
  font-weight: 800;
}

.related-section {
  padding-top: 24px;
}

.cta-section {
  background: var(--ink);
  color: var(--white);
}

.cta-section .cta-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  text-align: center;
}

.cta-section .action-row {
  justify-content: center;
}

.service-group {
  margin-top: 38px;
}

.service-group-heading {
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
}

.group-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-link-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-link-card {
  display: grid;
  gap: 10px;
}

.service-link-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #6f520b;
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.15);
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.gallery-toolbar button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--white);
  font-weight: 800;
}

.gallery-toolbar button.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

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

.gallery-item {
  position: relative;
  min-width: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  background: var(--ink);
  color: var(--white);
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.gallery-item[hidden] {
  display: none;
}

.gallery-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.04);
  opacity: 0.72;
}

.gallery-item span {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  display: grid;
  gap: 2px;
}

.gallery-item small {
  color: rgba(255, 255, 255, 0.82);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8, 10, 14, 0.86);
  display: grid;
  place-items: center;
  padding: 28px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  width: min(100%, 1120px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 301;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
}

.lead-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details a,
.contact-details p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.contact-details a {
  color: var(--ink);
  font-weight: 850;
}

.map-embed {
  height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.sitemap-columns {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
}

.sitemap-block {
  display: grid;
  gap: 10px;
}

.sitemap-block a {
  color: var(--muted);
  font-weight: 750;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.4fr 0.8fr 1fr;
  gap: 34px;
}

.brand-footer .brand-copy small,
.site-footer p,
.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  margin: 20px 0;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 0 12px;
}

.site-footer h2 {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.service-footer-list {
  grid-template-columns: repeat(2, 1fr);
}

.footer-list a:hover,
.footer-social a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 42px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 800;
  transition: color 180ms ease;
}

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

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 120;
  display: grid;
  gap: 10px;
}

.float-button {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 0;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

/* Use familiar, filled quick-action symbols instead of the generic outline icons. */
.float-button svg {
  display: none;
}

.float-button::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: var(--float-icon) center / contain no-repeat;
  mask: var(--float-icon) center / contain no-repeat;
}

.float-button.whatsapp {
  background: #25d366;
  --float-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.074-.297-.148-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.52.149-.174.198-.298.297-.497.1-.198.05-.371-.025-.52-.074-.149-.669-1.612-.916-2.208-.242-.579-.487-.5-.669-.51-.173-.009-.371-.011-.57-.011-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.095 3.2 5.076 4.487.709.306 1.262.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347M12.004 2a9.84 9.84 0 0 0-8.36 15.03L2 22l5.13-1.61A9.91 9.91 0 0 0 12 21.67h.004A9.84 9.84 0 0 0 12.004 2m0 17.84h-.003a8.16 8.16 0 0 1-4.16-1.14l-.299-.177-3.045.956.988-2.969-.195-.304a8.01 8.01 0 1 1 6.714 3.634'/%3E%3C/svg%3E");
}

.float-button.call {
  background: var(--gold-strong);
  --float-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.46 15.46 0 0 0 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02z'/%3E%3C/svg%3E");
}

.float-button.mail,
.float-button.top {
  background: var(--ink);
}

.float-button.mail {
  --float-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4a2 2 0 0 0-1.99 2L2 18a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6c0-1.1-.9-2-2-2m0 4-8 5-8-5V6l8 5 8-5z'/%3E%3C/svg%3E");
}

.float-button.top {
  border: 0;
  --float-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m7.41 15.41 4.59-4.58 4.59 4.58L18 14l-6-6-6 6z'/%3E%3C/svg%3E");
}

.sticky-enquiry {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 120;
  background: var(--gold);
  color: #181301;
  box-shadow: var(--shadow);
  display: none;
}

.sticky-enquiry:hover {
  transform: translate(-50%, -2px);
}

@media (hover: hover) {
  .service-card:hover {
    border-color: rgba(217, 174, 40, 0.45);
    box-shadow: 0 14px 34px rgba(16, 24, 40, 0.11);
  }

  .service-card:hover .service-card-image {
    transform: scale(1.035);
  }

  .service-card-image {
    transition: transform 220ms ease;
  }
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(8, 10, 14, 0.72);
  display: grid;
  place-items: center;
  padding: 20px;
}

.quote-modal[hidden] {
  display: none;
}

.quote-panel {
  position: relative;
  width: min(100%, 520px);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1200px) {
  .service-card-grid,
  .service-card-grid.compact,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 992px) {
  :root {
    --header-height: 76px;
  }

  .top-strip {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
    flex: 0 0 44px;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100dvh - var(--header-height) - 28px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow);
    align-items: stretch;
    flex-direction: column;
  }

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

  .site-nav > a,
  .site-nav > .nav-mega > button,
  .nav-cta {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
  }

  .mega-menu {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 6px;
    box-shadow: none;
    padding: 14px;
  }

  .nav-mega.open .mega-menu {
    display: grid;
  }

  .section {
    padding: 64px 0;
  }

  .split-layout,
  .contact-layout,
  .two-column-details,
  .sitemap-columns {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .process-grid,
  .testimonial-grid,
  .service-link-grid,
  .service-card-grid,
  .service-card-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-group-heading {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .home-hero,
  .page-hero {
    aspect-ratio: auto;
    min-height: 430px;
    height: 430px;
  }

  .hero-content,
  .page-hero .hero-content {
    left: 16px;
    width: calc(100vw - 32px);
    max-width: 650px;
    justify-content: flex-end;
    padding: 56px 0 70px;
  }

  .hero-image,
  .page-hero-image {
    object-position: center center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(16, 24, 40, 0.94) 0%, rgba(16, 24, 40, 0.66) 58%, rgba(16, 24, 40, 0.22) 100%);
  }

  .hero-content h1 {
    max-width: 620px;
    font-size: clamp(2.15rem, 7vw, 3rem);
  }

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

  .quick-contact-grid a:last-child {
    grid-column: 1 / -1;
  }

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

  .image-band {
    min-height: 560px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 76px;
  }

  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-shell {
    gap: 10px;
  }

  .brand {
    gap: 10px;
    max-width: calc(100% - 54px);
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    max-width: 230px;
    white-space: normal;
    font-size: 0.7rem;
    line-height: 1.25;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .site-nav {
    right: 12px;
    left: 12px;
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .page-hero {
    min-height: 400px;
    height: 400px;
  }

  .hero-content,
  .page-hero .hero-content {
    left: 16px;
    width: calc(100vw - 32px);
    padding: 44px 0 58px;
  }

  .hero-content .eyebrow {
    margin-bottom: 6px;
    font-size: 0.75rem;
  }

  .hero-content h1 {
    margin-bottom: 10px;
    font-size: clamp(1.875rem, 9vw, 2.375rem);
    line-height: 1.08;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 38rem;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .hero-content .action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .hero-content .action-row > :nth-child(n + 3) {
    display: none;
  }

  .hero-content .button {
    min-width: 0;
    min-height: 46px;
    padding-inline: 10px;
    font-size: 0.9rem;
  }

  .hero-dots {
    bottom: 20px;
    gap: 7px;
  }

  .hero-dots button {
    width: 22px;
  }

  .quick-contact-band {
    padding: 12px 0;
  }

  .quick-contact-grid {
    gap: 10px;
  }

  .quick-contact-grid a {
    min-height: 56px;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px;
    font-size: 0.82rem;
  }

  .quick-contact-grid a svg {
    width: 32px;
    height: 32px;
    padding: 8px;
  }

  .section {
    padding: 50px 0;
  }

  .breadcrumb-section {
    padding-top: 14px;
  }

  .section-intro {
    margin-bottom: 24px;
  }

  .service-card-grid,
  .service-card-grid.compact,
  .feature-grid,
  .process-grid,
  .testimonial-grid,
  .industry-grid,
  .gallery-grid,
  .service-link-grid {
    grid-template-columns: 1fr;
  }

  .service-card-body h3 {
    min-height: 0;
  }

  .action-row,
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .feature-card,
  .process-step,
  .value-card,
  .detail-block,
  .spec-list,
  .pricing-list,
  .contact-panel,
  .contact-details,
  .cta-panel,
  .service-link-card,
  .sitemap-block {
    padding: 20px;
  }

  .image-band {
    min-height: 540px;
  }

  .footer-grid,
  .service-footer-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 52px;
  }

  .footer-bottom {
    margin-top: 32px;
    padding-bottom: 28px;
    flex-direction: column;
  }

  .floating-actions {
    right: 12px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    gap: 8px;
  }

  .float-button {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .float-button.mail,
  .float-button.top {
    display: none;
  }

  .sticky-enquiry {
    display: inline-flex;
    left: 50%;
    right: auto;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: calc(100% - 32px);
    max-width: 420px;
    min-height: 56px;
    transform: translateX(-50%);
  }

  .sticky-enquiry:hover {
    transform: translate(-50%, -2px);
  }

  .quote-panel {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .brand-copy small {
    max-width: 190px;
  }

  .home-hero,
  .page-hero {
    min-height: 380px;
    height: 380px;
  }

  .hero-content,
  .page-hero .hero-content {
    padding-bottom: 52px;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 8.5vw, 2.125rem);
  }

  .hero-content > p:not(.eyebrow) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .hero-content .action-row {
    margin-top: 14px;
  }

  .quick-contact-grid a {
    font-size: 0.76rem;
  }
}
