:root {
  --dark-navy: #0f172a;
  --charcoal: #1f2933;
  --concrete-gray: #e5e7eb;
  --warm-gray: #f5f5f4;
  --white: #ffffff;
  --accent: #d97706;
  --accent-hover: #f59e0b;
  --ink: #111827;
  --muted: #5b6677;
  --line: rgba(15, 23, 42, 0.14);
  --shadow-hard: 14px 14px 0 rgba(15, 23, 42, 0.12);
  --header-height: 84px;
  --edge: 2px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    var(--warm-gray);
  background-size: 28px 28px;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 108px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--dark-navy);
  font-family: "Arial Black", "Segoe UI Black", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
}

h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading-left {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.65fr);
  gap: 46px;
  align-items: end;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.26) 43% 48%, transparent 49% 100%);
  content: "";
  transform: translateX(-120%);
  transition: transform 360ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-3px, -3px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.button-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 7px 7px 0 rgba(245, 158, 11, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-hover);
  box-shadow: 10px 10px 0 rgba(245, 158, 11, 0.24);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent-hover);
  background: rgba(217, 119, 6, 0.12);
}

.button-large {
  min-height: 58px;
  padding: 0 34px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 10px clamp(18px, 3vw, 38px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 42%),
    var(--charcoal);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo {
  width: clamp(58px, 6vw, 70px);
  height: clamp(58px, 6vw, 70px);
  padding: 5px;
  background: rgba(255, 255, 255, 0.94);
  object-fit: contain;
}

.brand-fallback {
  max-width: 220px;
  font-size: 0.88rem;
  line-height: 1.08;
}

/* Hide failed logo images while keeping nearby text available as a fallback. */
.brand-logo:not([src]),
.brand-logo[src=""],
img.is-missing {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 clamp(13px, 1.65vw, 24px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 12px;
  bottom: 19px;
  left: 12px;
  height: 3px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  color: var(--white);
  background: var(--accent);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent-hover);
}

.menu-toggle {
  display: none;
  width: 54px;
  min-height: var(--header-height);
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: var(--charcoal);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background: var(--dark-navy);
  isolation: isolate;
}

.hero-bg,
.blueprint-grid {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(45deg, rgba(255, 255, 255, 0.018) 25%, transparent 25%) 0 0 / 26px 26px,
    linear-gradient(120deg, #070b13 0%, var(--dark-navy) 42%, #222a34 100%);
}

.hero-bg::before {
  position: absolute;
  inset: -20%;
  background:
    repeating-linear-gradient(115deg, transparent 0 74px, rgba(217, 119, 6, 0.13) 75px 77px, transparent 78px 132px),
    repeating-linear-gradient(25deg, transparent 0 110px, rgba(255, 255, 255, 0.055) 111px 112px, transparent 113px 176px);
  content: "";
  opacity: 0.6;
  animation: diagonalSlide 28s linear infinite;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(217, 119, 6, 0.28), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(245, 158, 11, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(7, 11, 19, 0.92), rgba(7, 11, 19, 0.5) 52%, rgba(7, 11, 19, 0.78));
  content: "";
}

.blueprint-grid {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(229, 231, 235, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(245, 158, 11, 0.16) 2px, transparent 2px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.16) 2px, transparent 2px);
  background-size: 42px 42px, 42px 42px, 168px 168px, 168px 168px;
  animation: blueprintMove 24s linear infinite;
}

.glow {
  position: absolute;
  width: 360px;
  height: 360px;
  filter: blur(58px);
  opacity: 0.36;
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.glow-one {
  top: 10%;
  right: 14%;
  background: rgba(217, 119, 6, 0.48);
  clip-path: polygon(0 12%, 100% 0, 88% 100%, 12% 82%);
}

.glow-two {
  bottom: 9%;
  left: 8%;
  background: rgba(245, 158, 11, 0.2);
  clip-path: polygon(18% 0, 100% 18%, 82% 100%, 0 78%);
  animation-delay: 2s;
}

.shape {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.14);
  opacity: 0.8;
  animation: drift 12s ease-in-out infinite alternate;
}

.shape-one {
  top: 17%;
  right: 31%;
  width: 118px;
  height: 38px;
  border-color: rgba(245, 158, 11, 0.35);
  transform: rotate(-18deg);
}

.shape-two {
  bottom: 19%;
  left: 8%;
  width: 148px;
  height: 26px;
  background: rgba(217, 119, 6, 0.12);
  transform: rotate(24deg);
  animation-delay: 1.5s;
}

.shape-three {
  right: 7%;
  bottom: 30%;
  width: 84px;
  height: 84px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  border-color: rgba(255, 255, 255, 0.2);
  animation-delay: 3s;
}

.particle-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 12px;
  border-radius: 0;
  background: linear-gradient(var(--accent-hover), rgba(245, 158, 11, 0));
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.5);
  animation: riseParticle linear infinite;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding: 86px 0;
}

.hero-content {
  position: relative;
  padding-left: 24px;
  border-left: 6px solid var(--accent);
  min-width: 0;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-kicker span {
  width: 74px;
  height: 3px;
  background: var(--accent);
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 22px 40px rgba(0, 0, 0, 0.26);
  overflow-wrap: normal;
}

.hero-subtitle {
  max-width: 650px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.hero-metrics div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metrics div:last-child {
  border-right: 0;
}

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

.hero-metrics strong {
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.hero-metrics span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.82rem;
}

.hero-build-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.hero-build-panel::before {
  position: absolute;
  inset: 32px 24px 38px 48px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  transform: skewY(-6deg);
}

.panel-rail {
  position: absolute;
  top: 22px;
  bottom: 28px;
  left: 16px;
  width: 14px;
  background:
    repeating-linear-gradient(0deg, var(--accent) 0 18px, #111827 18px 30px);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.28);
}

.panel-card {
  position: absolute;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.17);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(15, 23, 42, 0.74);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.panel-card-main {
  top: 84px;
  right: 0;
  left: 70px;
  display: grid;
  min-height: 282px;
  padding: 36px;
  place-items: center;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 88% 100%, 0 100%);
}

.hero-logo {
  width: clamp(110px, 16vw, 188px);
  height: clamp(110px, 16vw, 188px);
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.34));
}

.hero-logo-fallback {
  display: none;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-logo.is-missing + .hero-logo-fallback {
  display: block;
}

.panel-card-main p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-card-small {
  z-index: 4;
  right: 32px;
  bottom: 58px;
  width: min(280px, 72%);
  padding: 22px;
}

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

.panel-card-small span {
  color: var(--accent-hover);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-card-small strong {
  margin-top: 8px;
  color: var(--white);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1.22rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.beam {
  position: absolute;
  z-index: 1;
  height: 16px;
  background: var(--accent);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.24);
}

.beam-one {
  top: 54px;
  right: 42px;
  width: 210px;
  transform: rotate(-18deg);
}

.beam-two {
  bottom: 114px;
  left: 40px;
  width: 165px;
  transform: rotate(22deg);
}

.services-section {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.035) 25%, transparent 25%) 0 0 / 22px 22px,
    var(--white);
}

.services-section::before,
.projects-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 42px, var(--dark-navy) 42px 84px);
  content: "";
}

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

.service-card {
  position: relative;
  min-height: 270px;
  padding: 30px 28px;
  overflow: hidden;
  border: 2px solid var(--line);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.035), transparent 34%),
    var(--warm-gray);
  box-shadow: 8px 8px 0 rgba(15, 23, 42, 0.08);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease, background 190ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 7px;
  background: var(--accent);
  content: "";
}

.service-card::after {
  position: absolute;
  right: -36px;
  bottom: -32px;
  width: 128px;
  height: 128px;
  border: 2px solid rgba(15, 23, 42, 0.08);
  content: "";
  transform: rotate(45deg);
  transition: border-color 190ms ease, transform 190ms ease;
}

.service-card:hover {
  border-color: rgba(217, 119, 6, 0.48);
  background: var(--white);
  box-shadow: 12px 12px 0 rgba(217, 119, 6, 0.18);
  transform: translate(-4px, -4px);
}

.service-card:hover::after {
  border-color: rgba(217, 119, 6, 0.28);
  transform: rotate(45deg) scale(1.08);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 44px;
  margin-bottom: 26px;
  color: var(--white);
  background: var(--dark-navy);
  font-size: 1.08rem;
  font-weight: 900;
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}

.service-card h3 {
  max-width: 270px;
}

.service-card p {
  margin-top: 16px;
  color: var(--muted);
}

.why-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%) 0 0 / 20px 20px,
    linear-gradient(120deg, #070b13, var(--dark-navy) 50%, var(--charcoal));
}

.why-section::before {
  position: absolute;
  inset: -15%;
  opacity: 0.48;
  background:
    repeating-linear-gradient(115deg, transparent 0 92px, rgba(245, 158, 11, 0.14) 93px 95px, transparent 96px 160px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  content: "";
}

.why-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: center;
}

.why-section h2,
.why-section p:not(.eyebrow) {
  color: var(--white);
}

.why-section p:not(.eyebrow) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

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

.trust-item {
  position: relative;
  min-height: 92px;
  padding: 20px 18px 18px 56px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 800;
}

.trust-item::before {
  position: absolute;
  top: 22px;
  left: 20px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  box-shadow: 6px 6px 0 rgba(245, 158, 11, 0.18);
  content: "";
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.projects-section {
  background:
    linear-gradient(rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.04)),
    var(--concrete-gray);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 1fr;
  gap: 18px;
}

.project-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 2px solid rgba(15, 23, 42, 0.18);
  background:
    linear-gradient(140deg, rgba(15, 23, 42, 0.96), rgba(31, 41, 51, 0.78)),
    linear-gradient(45deg, rgba(217, 119, 6, 0.22), transparent 52%);
  box-shadow: var(--shadow-hard);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.project-card:nth-child(even) {
  margin-top: 36px;
}

.project-card::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
}

.project-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(128deg, transparent 0 42%, rgba(245, 158, 11, 0.2) 43% 45%, transparent 46% 100%),
    radial-gradient(circle at 76% 24%, rgba(245, 158, 11, 0.34), transparent 19%);
  content: "";
  transition: transform 220ms ease;
}

.project-card:hover {
  border-color: rgba(217, 119, 6, 0.52);
  box-shadow: 18px 18px 0 rgba(217, 119, 6, 0.18);
  transform: translate(-5px, -5px);
}

.project-card:hover::after {
  transform: scale(1.08);
}

.project-lines {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
}

.project-card span {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.48);
  font-size: 2.6rem;
  font-weight: 900;
}

.project-card h3 {
  position: absolute;
  right: 22px;
  bottom: 28px;
  left: 22px;
  z-index: 2;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  overflow-wrap: break-word;
}

.project-kitchen {
  background-color: #151f30;
}

.project-bath {
  background-color: #202b38;
}

.project-interior {
  background-color: #172033;
}

.project-exterior {
  background-color: #111827;
}

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

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.1fr);
  gap: 62px;
  align-items: center;
}

.about-media {
  position: relative;
  display: grid;
  min-height: 420px;
  padding: 46px;
  border: 2px solid rgba(15, 23, 42, 0.18);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(31, 41, 51, 0.94));
  box-shadow: var(--shadow-hard);
  place-items: center;
}

.about-media::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 120px;
  height: 120px;
  border-right: 12px solid var(--accent);
  border-bottom: 12px solid var(--accent);
  content: "";
}

.about-media img {
  width: min(280px, 82%);
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.3));
}

.about-copy {
  padding-left: 28px;
  border-left: 6px solid var(--accent);
}

.about-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%) 0 0 / 24px 24px,
    var(--charcoal);
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 7vw, 80px);
  border: 2px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 16% 24%, rgba(217, 119, 6, 0.28), transparent 26%),
    linear-gradient(135deg, #070b13, var(--dark-navy));
  box-shadow: 16px 16px 0 rgba(217, 119, 6, 0.18);
}

.contact-card::after {
  position: absolute;
  top: -50px;
  right: -80px;
  width: 280px;
  height: 220px;
  border: 2px solid rgba(245, 158, 11, 0.28);
  content: "";
  transform: rotate(28deg);
}

.contact-card h2 {
  max-width: 760px;
  color: var(--white);
}

.contact-card p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

address {
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-style: normal;
}

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #070b13;
  border-top: 8px solid var(--accent);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.94);
  object-fit: contain;
}

.site-footer p {
  margin-top: 12px;
}

.footer-info {
  max-width: 430px;
  text-align: right;
}

.footer-info a {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent-hover);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes blueprintMove {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 42px 42px, 42px 42px, 168px 168px, 168px 168px;
  }
}

@keyframes diagonalSlide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(120px, 60px, 0);
  }
}

@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  to {
    transform: translate3d(28px, 34px, 0) rotate(8deg);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) rotate(-18deg);
  }

  to {
    transform: translate3d(20px, -24px, 0) rotate(-10deg);
  }
}

@keyframes riseParticle {
  from {
    opacity: 0;
    transform: translateY(38px) rotate(10deg);
  }

  20%,
  80% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateY(-130px) rotate(10deg);
  }
}

/* Keep the full layout usable from tablet down to narrow phones. */
@media (max-width: 1040px) {
  .hero-layout,
  .why-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero-build-panel {
    min-height: 420px;
    max-width: 560px;
  }

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

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

  .project-card:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    align-items: center;
    min-height: var(--header-height);
  }

  .brand {
    align-self: stretch;
    padding: 8px 18px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-fallback {
    max-width: 170px;
    font-size: 0.74rem;
  }

  .menu-toggle {
    display: block;
    min-height: var(--header-height);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 54px;
    padding: 0 22px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .hero-layout {
    min-height: auto;
    padding: 78px 0;
  }

  .section-heading-left {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-metrics,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .footer-layout {
    display: grid;
    text-align: left;
  }

  .footer-info {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(1.85rem, 9vw, 2.25rem);
    line-height: 1.04;
    overflow-wrap: normal;
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
    line-height: 1.04;
  }

  h3 {
    line-height: 1.1;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
    line-height: 1.45;
  }

  .hero-content {
    padding-left: 12px;
    border-left-width: 4px;
  }

  .hero-kicker span {
    width: 42px;
  }

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

  .hero-build-panel {
    min-height: 350px;
  }

  .panel-card-main {
    top: 58px;
    left: 46px;
    right: 10px;
    min-height: 220px;
    padding: 26px;
  }

  .panel-card-small {
    right: 14px;
    bottom: 28px;
    width: min(250px, 74%);
  }

  .beam-one {
    width: 150px;
  }

  .beam-two {
    width: 120px;
  }

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

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

  .project-card {
    min-height: 250px;
  }

  .about-copy {
    padding-left: 18px;
    border-left-width: 4px;
  }

  .about-media {
    min-height: 300px;
    padding: 32px;
  }
}

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