/* ==========================================================================
   TrueSet Concrete — styles.css
   Palette derived from the logo. No colors outside this set.
   ========================================================================== */

:root {
  --orange: #f45a24;
  --orange-dark: #d94a18;
  --charcoal: #303d45;
  --charcoal-deep: #202b31;
  --offwhite: #f7f7f5;
  --gray: #e8ebed;
  --white: #ffffff;

  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm:
    0 1px 2px rgba(32, 43, 49, 0.06), 0 2px 8px rgba(32, 43, 49, 0.05);
  --shadow-md: 0 8px 24px -10px rgba(32, 43, 49, 0.25);
  --shadow-lg: 0 24px 60px -28px rgba(32, 43, 49, 0.55);
  --shadow-orange: 0 10px 30px -12px rgba(244, 90, 36, 0.8);

  --wrap: 1350px;
  --header-h: 74px;

  --display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}
.wrap--narrow {
  max-width: 860px;
}

.section {
  padding: 80px 0;
  position: relative;
}
.section--white {
  background: var(--white);
}
.section--offwhite {
  background: var(--offwhite);
}
.section--gray {
  background: var(--gray);
}
.section--dark,
.section--dark-flat {
  background: var(--charcoal-deep);
  color: var(--gray);
}
.section--dark-flat {
  padding: 72px 0;
}

.section__head {
  max-width: 760px;
}
.section__head--center {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.texture {
  position: relative;
}
.texture::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    radial-gradient(rgba(32, 43, 49, 0.06) 1px, transparent 1px);
  background-size:
    22px 22px,
    14px 14px;
  background-position:
    0 0,
    7px 7px;
}
.texture > * {
  position: relative;
  z-index: 1;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
.hero__card-title,
.about__tagline,
.footer__tagline,
.process__num,
.state__abbr {
  font-family: var(--display);
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.4rem);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--charcoal-deep);
  margin-top: 22px;
}
h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.06;
  text-transform: uppercase;
  color: var(--charcoal-deep);
  margin-top: 18px;
}
.section--dark h2,
.section--dark h1 {
  color: var(--white);
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--charcoal-deep);
}

.lead {
  margin-top: 20px;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(48, 61, 69, 0.85);
  max-width: 62ch;
}
.section--dark .lead {
  color: rgba(232, 235, 237, 0.8);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow--center {
  justify-content: center;
}
.rule {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--orange);
}

/* ---------- Icons ---------- */
.ico {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ico--lg {
  width: 26px;
  height: 26px;
}
.ico--check {
  width: 21px;
  height: 21px;
  color: var(--orange);
}
.footer__social .ico {
  fill: currentColor;
  stroke: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.12s ease,
    box-shadow 0.2s ease;
}
.btn--sm {
  padding: 12px 20px;
  font-size: 0.8125rem;
}
.btn--block {
  display: flex;
  width: 100%;
  margin-top: 12px;
}
.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
}

.btn--outline-dark {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}
.btn--outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--outline-white {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
  background: transparent;
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--charcoal-deep);
}

.btn--charcoal {
  background: var(--charcoal-deep);
  color: var(--white);
}
.btn--charcoal:hover {
  background: var(--charcoal);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

/* ==========================================================================
   1. TRUST BAR
   ========================================================================== */
.trustbar {
  background: var(--charcoal-deep);
  color: var(--gray);
}
.trustbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 10px;
}
.trustbar__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
}
.trustbar__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.trustbar__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
}
.trustbar__mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.2s;
}
.trustbar__mail .ico {
  color: var(--orange);
  width: 16px;
  height: 16px;
}
.trustbar__mail:hover {
  color: var(--orange);
}
@media (max-width: 900px) {
  .trustbar {
    display: none;
  }
}
@media (max-width: 1180px) {
  .trustbar__mail {
    display: none;
  }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
}

.logo {
  display: block;
  flex: none;
}
.logo img {
  width: 190px;
  height: auto;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  position: relative;
  display: block;
  padding: 6px 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav a:hover {
  color: var(--orange);
}
.nav a:hover::after {
  transform: scaleX(1);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.contact-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.contact-chip:hover {
  color: var(--orange);
}
.contact-chip__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--gray);
  color: var(--orange);
}
.contact-chip__text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}
.contact-chip__text small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(48, 61, 69, 0.6);
}

.header__mobile {
  display: none;
  gap: 8px;
}
.icon-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s;
}
.icon-btn--light {
  background: var(--gray);
  color: var(--orange);
}
.icon-btn--light:hover {
  background: #dfe3e6;
}
.icon-btn--dark {
  background: var(--charcoal);
  color: var(--white);
}
.icon-btn--dark:hover {
  background: var(--charcoal-deep);
}
.icon-btn .ico--close {
  display: none;
}
.icon-btn[aria-expanded="true"] .ico--menu {
  display: none;
}
.icon-btn[aria-expanded="true"] .ico--close {
  display: block;
}

/* Mobile drawer */
.drawer {
  border-top: 1px solid var(--gray);
  background: var(--white);
  padding: 8px 20px 28px;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  box-shadow: var(--shadow-md);
}
.drawer[hidden] {
  display: none;
}
.drawer__list li + li {
  border-top: 1px solid var(--gray);
}
.drawer__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}
.drawer__list a span {
  color: var(--orange);
}
.drawer__list a:hover {
  color: var(--orange);
}
.drawer__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 22px;
}
.drawer__points li {
  background: var(--offwhite);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .nav,
  .header__cta {
    display: none;
  }
  .header__mobile {
    display: flex;
  }
}

/* ==========================================================================
   2. HERO
   ========================================================================== */
.hero {
  background: var(--offwhite);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 88px;
}
.hero__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--gray);
}
.hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}

.contact-block {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  transition: color 0.2s;
}
.contact-block:hover {
  color: var(--orange);
}
.contact-block__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-sm);
  color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.contact-block small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(48, 61, 69, 0.6);
}
.contact-block strong {
  font-size: 1rem;
}

.hero__media {
  position: relative;
}
.hero__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    140deg,
    var(--charcoal),
    var(--charcoal-deep) 55%,
    #0f171c
  );
  box-shadow: var(--shadow-lg);
}
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__frame {
  position: relative;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(32, 43, 49, 0.85),
    rgba(32, 43, 49, 0.22) 55%,
    transparent
  );
}
.hero__corner {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 62px;
  height: 62px;
  border-left: 4px solid var(--orange);
  border-top: 4px solid var(--orange);
}
.hero__card {
  position: relative;
  z-index: 2;
  margin: -56px 44px 0 26px;
  background: var(--orange);
  color: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__card-title {
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
}
.hero__card p:last-child {
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
    padding-block: 56px;
  }
  .hero__content,
  .hero__media {
    min-width: 0;
  }
  .contact-block {
    min-width: 0;
    max-width: 100%;
  }
  .contact-block > span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .contact-block__icon {
    flex-shrink: 0;
  }
  .hero__frame {
    aspect-ratio: 5 / 4;
  }
  .hero__points {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   3. SERVICES
   ========================================================================== */
.grid {
  display: grid;
  gap: 22px;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.cards {
  margin-top: 52px;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  background: var(--offwhite);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  background: var(--white);
  border-color: rgba(244, 90, 36, 0.4);
  box-shadow: var(--shadow-md);
}
.card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--charcoal);
  color: var(--orange);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.card__icon .ico {
  width: 26px;
  height: 26px;
}
.card:hover .card__icon {
  background: var(--orange);
  color: var(--white);
}
.card h3 {
  margin-top: 24px;
}
.card p {
  margin-top: 12px;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(48, 61, 69, 0.82);
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange);
}
.card__link .ico {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}
.card:hover .card__link .ico {
  transform: translateX(4px);
}

/* ==========================================================================
   4. PROJECTS
   ========================================================================== */
.project {
  height: 100%;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.project:hover {
  border-color: rgba(244, 90, 36, 0.55);
  transform: translateY(-3px);
}
.project__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(140deg, #3d4c56, var(--charcoal-deep));
}
.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project:hover .project__media img {
  transform: scale(1.1);
}
.project__loc {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 10px;
  background: rgba(32, 43, 49, 0.85);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
}
.project__loc .ico {
  width: 14px;
  height: 14px;
  color: var(--orange);
}
.project__body {
  padding: 24px;
  border-top: 2px solid var(--orange);
}
.project__body h3 {
  color: var(--white);
  font-size: 1.15rem;
}
.project__type {
  margin-top: 8px;
  font-size: 0.875rem;
  color: rgba(232, 235, 237, 0.75);
}
.project__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange);
  transition: color 0.2s;
}
.project__link:hover {
  color: var(--white);
}
.project__link .ico {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.project:hover .project__link .ico {
  transform: translate(3px, -3px);
}

/* ==========================================================================
   5. WHY TRUESET / SPLIT LAYOUTS
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--sticky {
  align-items: start;
}
.split__sticky {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.split__media {
  position: relative;
}

.framed {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--charcoal), var(--charcoal-deep));
  box-shadow: var(--shadow-lg);
}
.framed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.framed--tall {
  aspect-ratio: 4 / 5;
}
.framed--wide {
  aspect-ratio: 4 / 3;
  margin-top: 30px;
}
.framed__accent {
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 108px;
  height: 108px;
  border: 6px solid var(--orange);
  border-radius: var(--radius-lg);
}

.benefits {
  margin-top: 38px;
}
.benefit {
  padding: 20px 22px;
  background: var(--offwhite);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
}
.benefit .ico {
  color: var(--orange);
  width: 23px;
  height: 23px;
}
.benefit h3 {
  margin-top: 12px;
  font-size: 1.0625rem;
}
.benefit p {
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(48, 61, 69, 0.82);
}
.split .btn--primary {
  margin-top: 38px;
}

@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .split__sticky {
    position: static;
  }
  .framed--tall {
    aspect-ratio: 4 / 3;
  }
  .framed__accent {
    display: none;
  }
}

/* ==========================================================================
   6. PROCESS
   ========================================================================== */
.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.process::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 56px;
  height: 2px;
  background: rgba(48, 61, 69, 0.16);
}
.process__step {
  position: relative;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.process__step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.process__num {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
}
.process__step h3 {
  margin-top: 16px;
  font-size: 1.0625rem;
}
.process__step p {
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(48, 61, 69, 0.82);
}

@media (max-width: 1024px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .process::before {
    display: none;
  }
}
@media (max-width: 640px) {
  .process {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   7. SPECIFICATIONS
   ========================================================================== */
.specs {
  gap: 18px;
}
.spec {
  padding: 26px;
  background: var(--offwhite);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.spec:hover {
  border-color: rgba(244, 90, 36, 0.4);
  box-shadow: var(--shadow-md);
}
.spec__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(244, 90, 36, 0.12);
  color: var(--orange);
}
.spec h3 {
  margin-top: 20px;
  font-size: 1.0625rem;
}
.spec p {
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(48, 61, 69, 0.82);
}

.notice {
  margin-top: 22px;
  padding: 20px 22px;
  background: var(--gray);
  border-left: 4px solid var(--charcoal);
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ==========================================================================
   8. METAL BUILDING PANEL
   ========================================================================== */
.panel-orange {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  padding: 60px;
  background: var(--orange);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  align-items: center;
}
.panel-orange h2 {
  color: var(--white);
  margin-top: 22px;
}
.panel-orange__lead {
  margin-top: 18px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 54ch;
}
.tag-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--charcoal-deep);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tag-dark .ico {
  width: 16px;
  height: 16px;
}
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(32, 43, 49, 0.25);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}
.checklist .ico {
  color: var(--white);
}

@media (max-width: 1024px) {
  .panel-orange {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 28px;
  }
}
@media (max-width: 560px) {
  .checklist {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   9. SERVICE AREAS
   ========================================================================== */
.states {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.state:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 90, 36, 0.5);
  box-shadow: var(--shadow-md);
}
.state__abbr {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gray);
  transition: color 0.2s ease;
}
.state:hover .state__abbr {
  color: rgba(244, 90, 36, 0.28);
}
.state__name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--charcoal-deep);
}
.state__name .ico {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

.areas-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 36px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
}
.areas-note__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--charcoal);
  color: var(--orange);
}
.areas-note__icon .ico {
  width: 26px;
  height: 26px;
}
.areas-note p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(48, 61, 69, 0.85);
}

@media (max-width: 1024px) {
  .states {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .states {
    grid-template-columns: 1fr;
  }
  .areas-note {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   10. ABOUT
   ========================================================================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: var(--offwhite);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
}
.about__logo {
  width: min(320px, 100%);
  height: auto;
}
.about__tagline {
  margin-top: 30px;
  padding-left: 20px;
  border-left: 4px solid var(--orange);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--charcoal-deep);
}
.about .btn--primary {
  margin-top: 34px;
}
@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 34px 26px;
  }
}

/* ==========================================================================
   11. FAQ
   ========================================================================== */
.faq {
  margin-top: 48px;
  display: grid;
  gap: 14px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}
.faq__item:hover,
.faq__item.is-open {
  border-color: rgba(244, 90, 36, 0.45);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal-deep);
  border-radius: var(--radius-lg);
}
.faq__sign {
  display: grid;
  place-items: center;
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(244, 90, 36, 0.12);
  color: var(--orange);
  transition: transform 0.2s ease;
}
.faq__item.is-open .faq__sign {
  transform: rotate(45deg);
}
.faq__a {
  display: none;
  padding: 0 24px 24px;
}
.faq__item.is-open .faq__a {
  display: block;
}
.faq__a p {
  padding-top: 18px;
  border-top: 1px solid var(--gray);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(48, 61, 69, 0.85);
}

/* ==========================================================================
   12. CONTACT
   ========================================================================== */
.mail-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease;
}
.mail-card:hover {
  border-color: rgba(244, 90, 36, 0.6);
}
.mail-card .ico {
  color: var(--orange);
}
.mail-card small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 235, 237, 0.6);
}
.mail-card strong {
  font-size: 1rem;
  color: var(--white);
  word-break: break-word;
}

.form-card {
  background: var(--white);
  color: var(--charcoal);
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.form-card h3 {
  font-size: 1.35rem;
}
.form-card__note {
  margin-top: 8px;
  font-size: 0.875rem;
  color: rgba(48, 61, 69, 0.75);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal-deep);
}
.req {
  color: var(--orange);
  margin-left: 3px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 15px;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--offwhite);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.field textarea {
  resize: vertical;
  min-height: 116px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(48, 61, 69, 0.45);
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(48, 61, 69, 0.32);
  outline: none !important;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  outline: none !important;
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--orange);
  background: rgba(244, 90, 36, 0.06);
}
.field-error {
  margin-top: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange-dark);
}
.form-card .btn--block {
  margin-top: 22px;
}
.form-status {
  margin-top: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal-deep);
}

@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 26px 22px;
  }
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.footer {
  background: var(--charcoal);
  color: var(--gray);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__logo {
  display: block;
  width: 210px;
  padding: 10px;
  background: var(--white);
  border-radius: var(--radius-sm);
}
.footer__tagline {
  margin-top: 20px;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
}
.footer__about {
  margin-top: 14px;
  max-width: 42ch;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(232, 235, 237, 0.75);
}
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.footer__social a:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.footer__title {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.footer__links {
  margin-top: 18px;
  display: grid;
  gap: 11px;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(232, 235, 237, 0.8);
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--orange);
}
.footer__muted {
  padding-top: 6px;
  font-size: 0.8125rem;
  color: rgba(232, 235, 237, 0.55);
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 52px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(232, 235, 237, 0.6);
}
.footer__bottom a {
  font-weight: 600;
  transition: color 0.2s;
}
.footer__bottom a:hover {
  color: var(--orange);
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   RESPONSIVE — GLOBAL
   ========================================================================== */
@media (max-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 64px 0;
  }
}
@media (max-width: 700px) {
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 56px 0;
  }
  .btn {
    width: 100%;
  }
  .btn-row {
    flex-direction: column;
  }
  .logo img {
    width: 158px;
  }
  .faq__q {
    font-size: 1.05rem;
    padding: 18px 20px;
  }
}

/* Scroll offset for anchored sections under the sticky header */
[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.card__media img {
  height: 270px;
  object-fit: cover;
}
/* ===================================================================
   Banner (hero) V2 — ported from v2 design.
   Wide cinematic image with a floating content panel.
   Scoped to .hero--v2 so only the banner is affected.
   =================================================================== */
.hero--v2 {
  padding: 28px 0 64px;
}
.hero--v2 .hero__grid {
  position: relative;
  display: block;
  min-height: 730px;
  padding-block: 0;
}
.hero--v2 .hero__media {
  position: absolute;
  inset: 0;
}
.hero--v2 .hero__frame {
  aspect-ratio: auto;
  height: 100%;
  border-radius: 30px;
}
.hero--v2 .hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(32, 43, 49, 0.96) 0%,
    rgba(32, 43, 49, 0.82) 42%,
    rgba(32, 43, 49, 0.28) 72%,
    rgba(32, 43, 49, 0.08) 100%
  );
}
.hero--v2 .hero__corner {
  left: auto;
  right: 28px;
  top: 28px;
}
.hero--v2 .hero__content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: clamp(50px, 7vw, 94px);
  color: var(--white);
}
.hero--v2 h1 {
  color: var(--white);
  font-size: clamp(3.1rem, 7vw, 5rem);
  /* max-width: 11ch; */
}
.hero--v2 .lead {
  color: rgba(255, 255, 255, 0.86);
  max-width: 58ch;
}
.hero--v2 .btn--outline-dark {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}
.hero--v2 .btn--outline-dark:hover {
  background: var(--white);
  color: var(--charcoal-deep);
}
.hero--v2 .contact-block {
  color: var(--white);
}
.hero--v2 .contact-block__icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}
.hero--v2 .contact-block small {
  color: rgba(255, 255, 255, 0.55);
}
.hero--v2 .hero__points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top-color: rgba(255, 255, 255, 0.18);
}
.hero--v2 .hero__card {
  position: absolute;
  right: 38px;
  bottom: 38px;
  z-index: 4;
  width: min(360px, 36%);
  margin: 0;
}

@media (max-width: 1100px) {
  .hero--v2 .hero__grid {
    min-height: auto;
    display: grid;
  }
  .hero--v2 .hero__media {
    position: relative;
    order: 2;
  }
  .hero--v2 .hero__content {
    padding: 52px 30px;
    background: var(--charcoal-deep);
    border-radius: 28px;
    max-width: none;
  }
  .hero--v2 .hero__frame {
    border-radius: 15px;
    min-height: 200px;
  }
  .hero--v2 .hero__overlay{
    background: none !important;
  }
  /* .hero--v2 .hero__card {
    right: 24px;
    bottom: 24px;
    width: min(360px, calc(100% - 48px));
  } */
       .hero--v2 .hero__card {
        position: relative;
        right: auto;
        bottom: auto;
        width: auto;
        margin: 50px 0px 0 !important;
    }
}

@media (max-width: 760px) {
  .hero--v2 .hero__points {
    grid-template-columns: 1fr;
  }
  .hero--v2 .hero__card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -32px 18px 0;
  }
}

/* Structure showcase: masonry rhythm (ported from v3) */
.showcase-v3 .cards {
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
}
.showcase-v3 .card {
  grid-column: span 5;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
}
.showcase-v3 .card:nth-child(2),
.showcase-v3 .card:nth-child(3) {
  grid-column: span 7;
}
.showcase-v3 .card__media img {
  height: 340px;
}
.showcase-v3 .card:nth-child(2) .card__media img,
.showcase-v3 .card:nth-child(3) .card__media img {
  height: 430px;
}
.showcase-v3 .card__body {
  padding: 30px;
}

@media (max-width: 1050px) {
  .showcase-v3 .card,
  .showcase-v3 .card:nth-child(2),
  .showcase-v3 .card:nth-child(3) {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  .showcase-v3 .cards {
    display: grid;
    grid-template-columns: 1fr;
  }
  .showcase-v3 .card,
  .showcase-v3 .card:nth-child(2),
  .showcase-v3 .card:nth-child(3) {
    grid-column: auto;
  }
  .showcase-v3 .card__media img,
  .showcase-v3 .card:nth-child(2) .card__media img,
  .showcase-v3 .card:nth-child(3) .card__media img {
    height: 280px;
  }
}


/* FAQ view more */
.faq__item--extra {
  display: none;
}
.faq.show-all .faq__item--extra {
  display: block;
}
.faq__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.faq__more-btn {
  min-width: 170px;
}


/* ==========================================================================
   SERVICES — LARGE BACKGROUND ICON
   Scoped to #servicesGrid so showcase cards are not affected.
   ========================================================================== */
#servicesGrid .service-card {
  position: relative;
  isolation: isolate;
  min-height: 270px;
  overflow: hidden;
}

#servicesGrid .service-card > *:not(.service-card__bg-icon) {
  position: relative;
  z-index: 2;
}

#servicesGrid .service-card__bg-icon {
  position: absolute;
  right: -34px;
  bottom: -42px;
  z-index: 0;
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  color: var(--orange);
  opacity: 0.055;
  pointer-events: none;
  transform: rotate(-8deg);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

#servicesGrid .service-card__bg-icon .ico {
  width: 100%;
  height: 100%;
  stroke-width: 1.25;
}

#servicesGrid .service-card:hover .service-card__bg-icon {
  opacity: 0.11;
  transform: rotate(-4deg) scale(1.08);
}

@media (max-width: 700px) {
  #servicesGrid .service-card {
    min-height: 250px;
  }

  #servicesGrid .service-card__bg-icon {
    right: -24px;
    bottom: -30px;
    width: 175px;
    height: 175px;
  }
}

/* ==========================================================================
   PROJECT DETAILS POPUP
   ========================================================================== */

.project__link {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.project-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.project-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(15, 23, 28, 0.84);
  backdrop-filter: blur(7px);
  cursor: pointer;
}

.project-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.25s ease;
}

.project-modal.is-open .project-modal__dialog {
  transform: translateY(0) scale(1);
}

.project-modal__media {
  min-height: 540px;
  background: var(--charcoal-deep);
}

.project-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
  overflow-y: auto;
}

.project-modal__content h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.project-modal__type {
  margin-top: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  font-weight: 700;
  color: var(--charcoal);
}

.project-modal__description {
  margin-top: 22px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(48, 61, 69, 0.82);
}

.project-modal__content .btn {
  align-self: flex-start;
  margin-top: 30px;
}

.project-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--charcoal-deep);
  color: var(--white);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.project-modal__close:hover {
  background: var(--orange);
  transform: rotate(90deg);
}

@media (max-width: 850px) {
  .project-modal {
    padding: 14px;
  }

  .project-modal__dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 28px);
    overflow-y: auto;
  }

  .project-modal__media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .project-modal__content {
    overflow: visible;
    padding: 30px 24px 34px;
  }
}

@media (max-width: 560px) {
  .project-modal {
    padding: 10px;
  }

  .project-modal__dialog {
    max-height: calc(100vh - 20px);
    border-radius: 18px;
  }

  .project-modal__content .btn {
    width: 100%;
  }

  .project-modal__close {
    top: 10px;
    right: 10px;
  }
}
