:root {
  color-scheme: light;
  --ink: #12151b;
  --ink-2: #1e252f;
  --steel: #344352;
  --muted: #687382;
  --line: #dfe5ec;
  --soft-line: rgba(255, 255, 255, 0.18);
  --paper: #f4f7fa;
  --paper-2: #eef3f7;
  --white: #ffffff;
  --amber: #ffb423;
  --amber-2: #ffda82;
  --teal: #1fb6a6;
  --red: #e64a35;
  --shadow-sm: 0 10px 30px rgba(18, 21, 27, 0.08);
  --shadow-md: 0 22px 70px rgba(18, 21, 27, 0.16);
  --shadow-glow: 0 22px 90px rgba(255, 180, 35, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shell: min(1220px, calc(100% - 40px));
  --section-y: clamp(72px, 9vw, 136px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-dark {
  position: relative;
  background: var(--ink);
  color: var(--white);
}

.section-light {
  background: linear-gradient(180deg, #f7fafc, #edf3f8);
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(31, 182, 166, 0.08), rgba(255, 180, 35, 0.12)),
    var(--paper);
}

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

.eyebrow {
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 850px;
  padding-bottom: 34px;
}

.section-heading h2,
.section-copy h2,
.contact-copy h2,
.team-head h2,
.clients-head h2,
.project-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 0.96;
}

.section-heading p,
.section-copy p,
.contact-copy p,
.team-head p,
.clients-head p,
.project-intro p {
  max-width: 720px;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: var(--shell);
  min-height: 76px;
  margin-inline: auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(16, 19, 25, 0.62);
  color: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(22px) saturate(130%);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(16, 19, 25, 0.9);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, var(--amber), #ff7b28);
  color: var(--ink);
  box-shadow: var(--shadow-glow);
  font-weight: 950;
}

.brand-copy {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.98rem;
  font-weight: 900;
  white-space: nowrap;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 22px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 12px 2px;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-call {
  display: grid;
  justify-items: end;
  padding-right: 8px;
}

.header-call span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-call strong {
  color: var(--amber);
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber), #ff7b28);
  color: var(--ink);
  box-shadow: var(--shadow-glow);
}

.btn-header {
  min-height: 44px;
  padding-inline: 18px;
  background: var(--white);
  color: var(--ink);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-outline-dark {
  border-color: rgba(18, 21, 27, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("assets/images/steel-hero.jpg") center / cover;
  transform: scale(1.02);
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 16, 22, 0.95), rgba(13, 16, 22, 0.78) 47%, rgba(13, 16, 22, 0.5)),
    linear-gradient(180deg, rgba(13, 16, 22, 0.16), #12151b 98%),
    radial-gradient(circle at 74% 22%, rgba(255, 180, 35, 0.18), transparent 34%),
    radial-gradient(circle at 28% 90%, rgba(31, 182, 166, 0.18), transparent 42%);
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 180, 35, 0.18) 48% 52%, transparent 52% 100%);
  background-size: 54px 54px, 54px 54px, 320px 320px;
}

.hero::before,
.conversion-section::before,
.process-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(31, 182, 166, 0.12));
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  min-height: calc(100svh - 70px);
  padding: clamp(132px, 17vw, 210px) 0 clamp(82px, 10vw, 136px);
}

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

.hero h1 {
  max-width: 960px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.05rem, 8vw, 6.4rem);
  line-height: 0.88;
  font-weight: 750;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-dashboard {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(24px) saturate(130%);
}

.dashboard-top,
.dashboard-metric {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-top span,
.dashboard-metric span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-top strong,
.dashboard-metric strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.dashboard-metric:nth-child(2) strong {
  color: var(--amber);
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker-track span {
  padding: 16px clamp(22px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.stats-band {
  padding: 22px 0;
  background: var(--ink);
}

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

.stat-card {
  min-height: 132px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  margin-bottom: 8px;
  color: var(--amber);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.68);
}

.about-section,
.products-section,
.services-section,
.process-section,
.projects-section,
.clients-section,
.testimonials-section,
.team-section,
.conversion-section,
.contact-section {
  padding: var(--section-y) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.blueprint-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 460px;
  padding: 18px;
  border: 1px solid rgba(18, 21, 27, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(31, 182, 166, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 182, 166, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #10212b, #182632 58%, #141820);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.blueprint-visual::before {
  content: "";
  position: absolute;
  inset: 42px 12% auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 180, 35, 0.82), transparent);
}

.blueprint-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.blueprint-main {
  grid-column: 1 / -1;
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(255, 180, 35, 0.28), rgba(31, 182, 166, 0.18)),
    rgba(255, 255, 255, 0.08);
}

.blueprint-card span {
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blueprint-card strong {
  font-size: clamp(1rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(32px, 5vw, 58px);
}

.highlight-card,
.product-card,
.service-card,
.process-step,
.testimonial-card,
.enquiry-form {
  border: 1px solid rgba(18, 21, 27, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
}

.highlight-card {
  min-height: 250px;
  padding: 28px;
}

.card-icon,
.product-icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--amber);
  font-weight: 950;
}

.highlight-card h3,
.product-card h3,
.service-card h3,
.process-step h3,
.testimonial-card h3,
.gallery-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.highlight-card p,
.product-card p,
.gallery-card p,
.process-step p {
  margin-bottom: 0;
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 80px;
  height: 80px;
  border-right: 2px solid rgba(255, 180, 35, 0.35);
  border-bottom: 2px solid rgba(255, 180, 35, 0.35);
}

.product-card:hover,
.service-card:hover,
.gallery-card:hover,
.team-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 180, 35, 0.46);
  box-shadow: var(--shadow-md);
}

.product-card-featured {
  background:
    linear-gradient(135deg, rgba(255, 180, 35, 0.18), rgba(31, 182, 166, 0.12)),
    var(--white);
}

.product-card p {
  margin-bottom: 26px;
}

.product-card button {
  margin-top: auto;
  padding: 0;
  border: 0;
  border-bottom: 2px solid var(--amber);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 190px;
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card span,
.process-step span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.process-section {
  overflow: hidden;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
  opacity: 0.7;
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.process-step h3 {
  color: var(--white);
}

.process-step p {
  color: rgba(255, 255, 255, 0.66);
}

.project-intro,
.clients-head,
.team-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding-bottom: 34px;
}

.project-intro h2 {
  max-width: 820px;
  font-size: clamp(2.05rem, 4vw, 4.15rem);
}

.project-intro p,
.clients-head p {
  max-width: 520px;
  padding: 22px;
  border: 1px solid rgba(18, 21, 27, 0.08);
  border-radius: var(--radius-md);
  background: rgba(244, 247, 250, 0.78);
  box-shadow: var(--shadow-sm);
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 16px;
}

.project-feature,
.mosaic-card,
.gallery-card,
.project-cta {
  overflow: hidden;
  border: 1px solid rgba(18, 21, 27, 0.08);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.project-feature {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(430px, 56vw, 680px);
  color: var(--white);
}

.project-feature img,
.mosaic-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-feature::after,
.mosaic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 21, 27, 0.06), rgba(18, 21, 27, 0.84));
}

.project-feature:hover img,
.mosaic-card:hover img,
.gallery-card:hover img {
  transform: scale(1.06);
}

.project-feature div {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: clamp(24px, 4vw, 42px);
}

.project-feature span,
.mosaic-card span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-feature h3 {
  margin: 12px 0;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.92;
}

.project-feature p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.project-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mosaic-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 260px;
  color: var(--white);
}

.mosaic-card span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 20px;
  color: var(--white);
}

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

.gallery-card {
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card h3,
.gallery-card p {
  padding-inline: 16px;
}

.gallery-card h3 {
  margin: 18px 0 8px;
  font-size: 1rem;
}

.gallery-card p {
  margin-bottom: 18px;
  font-size: 0.88rem;
}

.project-cta {
  display: grid;
  grid-template-columns: 1fr 230px auto;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 180, 35, 0.18), rgba(31, 182, 166, 0.12)),
    var(--ink);
  color: var(--white);
}

.project-cta strong,
.project-cta span {
  display: block;
}

.project-cta strong {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.project-cta span {
  color: rgba(255, 255, 255, 0.66);
}

.project-cta img {
  width: 230px;
  height: 106px;
  border-radius: 18px;
  object-fit: cover;
}

.client-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.client-wall span {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(18, 21, 27, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
  font-weight: 900;
  line-height: 1.24;
}

.client-wall span::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 34px;
  margin-right: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amber), var(--teal));
}

.client-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.client-metrics div {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.client-metrics strong,
.client-metrics span {
  display: block;
}

.client-metrics strong {
  margin-bottom: 6px;
  color: var(--amber);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.client-metrics span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

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

.testimonial-card {
  min-height: 270px;
  padding: 28px;
}

.testimonial-card::before {
  content: "“";
  display: block;
  height: 52px;
  color: var(--amber);
  font-size: 5rem;
  line-height: 0.75;
  font-weight: 950;
}

.testimonial-card p {
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 750;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-section {
  overflow: hidden;
}

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

.team-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.92) contrast(1.04);
}

.team-card div {
  padding: 20px;
}

.team-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.28rem;
}

.team-card a {
  display: block;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
}

.conversion-section {
  overflow: hidden;
}

.conversion-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 180, 35, 0.18), rgba(31, 182, 166, 0.13)),
    rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-md);
}

.conversion-panel h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.96), rgba(237, 243, 248, 0.96)),
    url("assets/images/steel-hero.jpg") center / cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a {
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(18, 21, 27, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  backdrop-filter: blur(18px);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 950;
}

.enquiry-form label:nth-child(3),
.enquiry-form label:nth-child(4),
.form-status,
.enquiry-form button,
.enquiry-form a {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: #107c5f;
}

.form-status[data-state="error"] {
  color: var(--red);
}

.enquiry-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 21, 27, 0.1);
  border-radius: 16px;
  background: rgba(244, 247, 250, 0.9);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.enquiry-form input,
.enquiry-form select {
  height: 52px;
  padding: 0 14px;
}

.enquiry-form textarea {
  min-height: 138px;
  resize: vertical;
  padding: 14px;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: rgba(255, 180, 35, 0.8);
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(255, 180, 35, 0.14);
}

.site-footer {
  padding: 70px 0 28px;
  background: #0e1218;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.65fr 0.82fr 0.9fr;
  gap: 32px;
}

.footer-grid p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid h3 {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.34);
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

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

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 28px;
    background: rgba(16, 19, 25, 0.96);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease, padding 0.22s ease, border-color 0.22s ease;
  }

  .main-nav.is-open {
    max-height: 520px;
    padding: 12px 14px;
    border-color: rgba(255, 255, 255, 0.12);
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    display: none;
  }

  .hero-shell,
  .about-grid,
  .service-grid,
  .project-intro,
  .project-showcase,
  .clients-head,
  .team-head,
  .conversion-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-dashboard {
    max-width: 560px;
  }

  .product-grid,
  .highlight-grid,
  .process-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid::before {
    display: none;
  }

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

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

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1220px);
    --section-y: clamp(64px, 16vw, 96px);
  }

  .site-header {
    top: 10px;
    min-height: 68px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .brand small {
    display: none;
  }

  .hero-shell {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 96px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14.4vw, 4.25rem);
  }

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

  .stats-grid,
  .highlight-grid,
  .product-grid,
  .service-cards,
  .process-grid,
  .project-mosaic,
  .gallery-grid,
  .client-wall,
  .client-metrics,
  .testimonial-grid,
  .team-grid,
  .enquiry-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .blueprint-visual {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .blueprint-main {
    grid-column: auto;
  }

  .product-card,
  .highlight-card,
  .service-card,
  .process-step,
  .testimonial-card {
    min-height: auto;
  }

  .project-feature,
  .mosaic-card {
    min-height: 360px;
  }

  .project-cta {
    grid-template-columns: 1fr;
  }

  .project-cta img {
    width: 100%;
    height: 190px;
  }

  .client-wall span {
    min-height: 72px;
  }

  .footer-bottom {
    flex-direction: column;
  }

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

  .floating-whatsapp {
    display: none;
  }
}

@media (max-width: 380px) {
  :root {
    --shell: min(100% - 22px, 1220px);
  }

  .site-header {
    padding: 8px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 15vw, 3.3rem);
  }

  .hero-dashboard,
  .blueprint-visual,
  .product-card,
  .highlight-card,
  .service-card,
  .process-step,
  .testimonial-card,
  .enquiry-form {
    border-radius: 22px;
  }
}
