* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #09090b;
  color: #f5f5f4;
}

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

.hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.22), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(120, 53, 15, 0.28), transparent 30%),
    linear-gradient(135deg, #18181b, #09090b);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.nav,
.hero-content,
.section,
.cred-grid,
.materials-inner,
.contact-section,
footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand-main {
  color: #fcd34d;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.brand-sub {
  margin-top: 3px;
  color: #a8a29e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: #d6d3d1;
  font-size: 14px;
}

.nav-links a:hover {
  color: #fcd34d;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: end;
  padding: 90px 0 110px;
}

.eyebrow,
.section-label,
.project-type {
  display: inline-block;
  color: #fcd34d;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.eyebrow {
  margin-bottom: 26px;
  padding: 12px 18px;
  border: 1px solid rgba(252, 211, 77, 0.28);
  border-radius: 999px;
  background: rgba(252, 211, 77, 0.1);
  color: #fde68a;
  letter-spacing: 0;
  text-transform: none;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.hero-copy p {
  max-width: 720px;
  color: #d6d3d1;
  font-size: 19px;
  line-height: 1.75;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: #fbbf24;
  color: #09090b;
}

.button.primary:hover {
  background: #fcd34d;
}

.button.secondary {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.button.secondary:hover {
  background: rgba(255,255,255,0.12);
}

.feature-card {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 36px;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.feature-image {
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(160deg, rgba(245,158,11,.28), rgba(39,39,42,.58)),
    url("https://images.unsplash.com/photo-1485846234645-a62644f84728?q=80&w=1459&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.award-pill {
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.78);
  color: #fde68a;
  font-size: 14px;
}

.feature-caption {
  padding: 24px;
  border-radius: 26px;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(8px);
}

.feature-caption span {
  color: #fcd34d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.feature-caption h2 {
  margin: 10px 0;
  font-size: 36px;
}

.feature-caption p {
  color: #d6d3d1;
  line-height: 1.65;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 64px 0 34px;
}

.cred-card,
.project-card,
.about-card,
.service-list div,
.materials-grid div {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  border-radius: 28px;
}

.cred-card {
  padding: 24px;
  color: #f5f5f4;
  font-weight: 800;
}

.section {
  padding: 64px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.section-heading h2,
.about-card h2,
.materials-section h2,
.contact-section h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.section-heading p {
  max-width: 560px;
  color: #a8a29e;
  line-height: 1.7;
}

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

.project-card {
  padding: 30px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}

.project-card h3 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: 34px;
  font-weight: 950;
}

.project-card h4 {
  margin-bottom: 18px;
  color: #d6d3d1;
  font-size: 15px;
}

.project-card p {
  color: #d6d3d1;
  line-height: 1.72;
}

.status {
  margin-top: 24px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: rgba(9,9,11,0.5);
  color: #d6d3d1;
  font-size: 14px;
}

.status strong {
  color: #fcd34d;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.about-card {
  padding: 38px;
  background: linear-gradient(160deg, rgba(120,53,15,.35), rgba(24,24,27,.9));
}

.about-card p {
  margin-top: 24px;
  color: #d6d3d1;
  line-height: 1.75;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-list div {
  padding: 22px;
  color: #f5f5f4;
  font-size: 18px;
  font-weight: 800;
}

.materials-section {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.035);
}

.materials-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  padding: 68px 0;
}

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

.materials-grid div {
  padding: 22px;
  background: rgba(9,9,11,0.52);
  color: #e7e5e4;
}

.contact-section {
  max-width: 920px;
  padding: 94px 0;
  text-align: center;
}

.contact-section p {
  max-width: 730px;
  margin: 24px auto 0;
  color: #d6d3d1;
  font-size: 18px;
  line-height: 1.75;
}

.contact-buttons {
  justify-content: center;
}

footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #78716c;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-content,
  .about-section,
  .materials-inner,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-content {
    padding-top: 50px;
  }

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

  .feature-image {
    min-height: 430px;
  }
}

@media (max-width: 520px) {
  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 43px;
  }

  .project-card,
  .about-card {
    padding: 24px;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #09090b;
  color: #f5f5f4;
}

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

.hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.22), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(120, 53, 15, 0.28), transparent 30%),
    linear-gradient(135deg, #18181b, #09090b);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.nav,
.hero-content,
.section,
.cred-grid,
.materials-inner,
.contact-section,
footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand-main {
  color: #fcd34d;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.brand-sub {
  margin-top: 3px;
  color: #a8a29e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: #d6d3d1;
  font-size: 14px;
}

.nav-links a:hover {
  color: #fcd34d;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: end;
  padding: 90px 0 110px;
}

.eyebrow,
.section-label,
.project-type {
  display: inline-block;
  color: #fcd34d;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.eyebrow {
  margin-bottom: 26px;
  padding: 12px 18px;
  border: 1px solid rgba(252, 211, 77, 0.28);
  border-radius: 999px;
  background: rgba(252, 211, 77, 0.1);
  color: #fde68a;
  letter-spacing: 0;
  text-transform: none;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.hero-copy p {
  max-width: 720px;
  color: #d6d3d1;
  font-size: 19px;
  line-height: 1.75;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: #fbbf24;
  color: #09090b;
}

.button.primary:hover {
  background: #fcd34d;
}

.button.secondary {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.button.secondary:hover {
  background: rgba(255,255,255,0.12);
}

.feature-card {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 36px;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.feature-image {
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(160deg, rgba(245,158,11,.28), rgba(39,39,42,.58)),
    url("https://images.unsplash.com/photo-1485846234645-a62644f84728?q=80&w=1459&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.award-pill {
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.78);
  color: #fde68a;
  font-size: 14px;
}

.feature-caption {
  padding: 24px;
  border-radius: 26px;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(8px);
}

.feature-caption span {
  color: #fcd34d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.feature-caption h2 {
  margin: 10px 0;
  font-size: 36px;
}

.feature-caption p {
  color: #d6d3d1;
  line-height: 1.65;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 64px 0 34px;
}

.cred-card,
.project-card,
.about-card,
.service-list div,
.materials-grid div {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  border-radius: 28px;
}

.cred-card {
  padding: 24px;
  color: #f5f5f4;
  font-weight: 800;
}

.section {
  padding: 64px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.section-heading h2,
.about-card h2,
.materials-section h2,
.contact-section h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.section-heading p {
  max-width: 560px;
  color: #a8a29e;
  line-height: 1.7;
}

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

.project-card {
  padding: 30px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}

.project-card h3 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: 34px;
  font-weight: 950;
}

.project-card h4 {
  margin-bottom: 18px;
  color: #d6d3d1;
  font-size: 15px;
}

.project-card p {
  color: #d6d3d1;
  line-height: 1.72;
}

.status {
  margin-top: 24px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: rgba(9,9,11,0.5);
  color: #d6d3d1;
  font-size: 14px;
}

.status strong {
  color: #fcd34d;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.about-card {
  padding: 38px;
  background: linear-gradient(160deg, rgba(120,53,15,.35), rgba(24,24,27,.9));
}

.about-card p {
  margin-top: 24px;
  color: #d6d3d1;
  line-height: 1.75;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-list div {
  padding: 22px;
  color: #f5f5f4;
  font-size: 18px;
  font-weight: 800;
}

.materials-section {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.035);
}

.materials-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  padding: 68px 0;
}

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

.materials-grid div {
  padding: 22px;
  background: rgba(9,9,11,0.52);
  color: #e7e5e4;
}

.contact-section {
  max-width: 920px;
  padding: 94px 0;
  text-align: center;
}

.contact-section p {
  max-width: 730px;
  margin: 24px auto 0;
  color: #d6d3d1;
  font-size: 18px;
  line-height: 1.75;
}

.contact-buttons {
  justify-content: center;
}

footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #78716c;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-content,
  .about-section,
  .materials-inner,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-content {
    padding-top: 50px;
  }

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

  .feature-image {
    min-height: 430px;
  }
}

@media (max-width: 520px) {
  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 43px;
  }

  .project-card,
  .about-card {
    padding: 24px;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #09090b;
  color: #f5f5f4;
}

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

.hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.22), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(120, 53, 15, 0.28), transparent 30%),
    linear-gradient(135deg, #18181b, #09090b);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.nav,
.hero-content,
.section,
.cred-grid,
.materials-inner,
.contact-section,
footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand-main {
  color: #fcd34d;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.brand-sub {
  margin-top: 3px;
  color: #a8a29e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: #d6d3d1;
  font-size: 14px;
}

.nav-links a:hover {
  color: #fcd34d;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: end;
  padding: 90px 0 110px;
}

.eyebrow,
.section-label,
.project-type {
  display: inline-block;
  color: #fcd34d;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.eyebrow {
  margin-bottom: 26px;
  padding: 12px 18px;
  border: 1px solid rgba(252, 211, 77, 0.28);
  border-radius: 999px;
  background: rgba(252, 211, 77, 0.1);
  color: #fde68a;
  letter-spacing: 0;
  text-transform: none;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.hero-copy p {
  max-width: 720px;
  color: #d6d3d1;
  font-size: 19px;
  line-height: 1.75;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: #fbbf24;
  color: #09090b;
}

.button.primary:hover {
  background: #fcd34d;
}

.button.secondary {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.button.secondary:hover {
  background: rgba(255,255,255,0.12);
}

.feature-card {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 36px;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.feature-image {
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(160deg, rgba(245,158,11,.28), rgba(39,39,42,.58)),
    url("https://images.unsplash.com/photo-1485846234645-a62644f84728?q=80&w=1459&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.award-pill {
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.78);
  color: #fde68a;
  font-size: 14px;
}

.feature-caption {
  padding: 24px;
  border-radius: 26px;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(8px);
}

.feature-caption span {
  color: #fcd34d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.feature-caption h2 {
  margin: 10px 0;
  font-size: 36px;
}

.feature-caption p {
  color: #d6d3d1;
  line-height: 1.65;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 64px 0 34px;
}

.cred-card,
.project-card,
.about-card,
.service-list div,
.materials-grid div {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  border-radius: 28px;
}

.cred-card {
  padding: 24px;
  color: #f5f5f4;
  font-weight: 800;
}

.section {
  padding: 64px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.section-heading h2,
.about-card h2,
.materials-section h2,
.contact-section h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.section-heading p {
  max-width: 560px;
  color: #a8a29e;
  line-height: 1.7;
}

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

.project-card {
  padding: 30px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}

.project-card h3 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: 34px;
  font-weight: 950;
}

.project-card h4 {
  margin-bottom: 18px;
  color: #d6d3d1;
  font-size: 15px;
}

.project-card p {
  color: #d6d3d1;
  line-height: 1.72;
}

.status {
  margin-top: 24px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: rgba(9,9,11,0.5);
  color: #d6d3d1;
  font-size: 14px;
}

.status strong {
  color: #fcd34d;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.about-card {
  padding: 38px;
  background: linear-gradient(160deg, rgba(120,53,15,.35), rgba(24,24,27,.9));
}

.about-card p {
  margin-top: 24px;
  color: #d6d3d1;
  line-height: 1.75;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-list div {
  padding: 22px;
  color: #f5f5f4;
  font-size: 18px;
  font-weight: 800;
}

.materials-section {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.035);
}

.materials-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  padding: 68px 0;
}

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

.materials-grid div {
  padding: 22px;
  background: rgba(9,9,11,0.52);
  color: #e7e5e4;
}

.contact-section {
  max-width: 920px;
  padding: 94px 0;
  text-align: center;
}

.contact-section p {
  max-width: 730px;
  margin: 24px auto 0;
  color: #d6d3d1;
  font-size: 18px;
  line-height: 1.75;
}

.contact-buttons {
  justify-content: center;
}

footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #78716c;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-content,
  .about-section,
  .materials-inner,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-content {
    padding-top: 50px;
  }

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

  .feature-image {
    min-height: 430px;
  }
}

@media (max-width: 520px) {
  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 43px;
  }

  .project-card,
  .about-card {
    padding: 24px;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #09090b;
  color: #f5f5f4;
}

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

.hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.22), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(120, 53, 15, 0.28), transparent 30%),
    linear-gradient(135deg, #18181b, #09090b);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.nav,
.hero-content,
.section,
.cred-grid,
.materials-inner,
.contact-section,
footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand-main {
  color: #fcd34d;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.brand-sub {
  margin-top: 3px;
  color: #a8a29e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: #d6d3d1;
  font-size: 14px;
}

.nav-links a:hover {
  color: #fcd34d;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: end;
  padding: 90px 0 110px;
}

.eyebrow,
.section-label,
.project-type {
  display: inline-block;
  color: #fcd34d;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.eyebrow {
  margin-bottom: 26px;
  padding: 12px 18px;
  border: 1px solid rgba(252, 211, 77, 0.28);
  border-radius: 999px;
  background: rgba(252, 211, 77, 0.1);
  color: #fde68a;
  letter-spacing: 0;
  text-transform: none;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.hero-copy p {
  max-width: 720px;
  color: #d6d3d1;
  font-size: 19px;
  line-height: 1.75;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: #fbbf24;
  color: #09090b;
}

.button.primary:hover {
  background: #fcd34d;
}

.button.secondary {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.button.secondary:hover {
  background: rgba(255,255,255,0.12);
}

.feature-card {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 36px;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.feature-image {
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(160deg, rgba(245,158,11,.28), rgba(39,39,42,.58)),
    url("https://images.unsplash.com/photo-1485846234645-a62644f84728?q=80&w=1459&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.award-pill {
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.78);
  color: #fde68a;
  font-size: 14px;
}

.feature-caption {
  padding: 24px;
  border-radius: 26px;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(8px);
}

.feature-caption span {
  color: #fcd34d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.feature-caption h2 {
  margin: 10px 0;
  font-size: 36px;
}

.feature-caption p {
  color: #d6d3d1;
  line-height: 1.65;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 64px 0 34px;
}

.cred-card,
.project-card,
.about-card,
.service-list div,
.materials-grid div {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  border-radius: 28px;
}

.cred-card {
  padding: 24px;
  color: #f5f5f4;
  font-weight: 800;
}

.section {
  padding: 64px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.section-heading h2,
.about-card h2,
.materials-section h2,
.contact-section h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.section-heading p {
  max-width: 560px;
  color: #a8a29e;
  line-height: 1.7;
}

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

.project-card {
  padding: 30px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}

.project-card h3 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: 34px;
  font-weight: 950;
}

.project-card h4 {
  margin-bottom: 18px;
  color: #d6d3d1;
  font-size: 15px;
}

.project-card p {
  color: #d6d3d1;
  line-height: 1.72;
}

.status {
  margin-top: 24px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: rgba(9,9,11,0.5);
  color: #d6d3d1;
  font-size: 14px;
}

.status strong {
  color: #fcd34d;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.about-card {
  padding: 38px;
  background: linear-gradient(160deg, rgba(120,53,15,.35), rgba(24,24,27,.9));
}

.about-card p {
  margin-top: 24px;
  color: #d6d3d1;
  line-height: 1.75;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-list div {
  padding: 22px;
  color: #f5f5f4;
  font-size: 18px;
  font-weight: 800;
}

.materials-section {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.035);
}

.materials-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  padding: 68px 0;
}

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

.materials-grid div {
  padding: 22px;
  background: rgba(9,9,11,0.52);
  color: #e7e5e4;
}

.contact-section {
  max-width: 920px;
  padding: 94px 0;
  text-align: center;
}

.contact-section p {
  max-width: 730px;
  margin: 24px auto 0;
  color: #d6d3d1;
  font-size: 18px;
  line-height: 1.75;
}

.contact-buttons {
  justify-content: center;
}

footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #78716c;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-content,
  .about-section,
  .materials-inner,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-content {
    padding-top: 50px;
  }

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

  .feature-image {
    min-height: 430px;
  }
}

@media (max-width: 520px) {
  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 43px;
  }

  .project-card,
  .about-card {
    padding: 24px;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #09090b;
  color: #f5f5f4;
}

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

.hero {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.22), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(120, 53, 15, 0.28), transparent 30%),
    linear-gradient(135deg, #18181b, #09090b);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.nav,
.hero-content,
.section,
.cred-grid,
.materials-inner,
.contact-section,
footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand-main {
  color: #fcd34d;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.brand-sub {
  margin-top: 3px;
  color: #a8a29e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: #d6d3d1;
  font-size: 14px;
}

.nav-links a:hover {
  color: #fcd34d;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: end;
  padding: 90px 0 110px;
}

.eyebrow,
.section-label,
.project-type {
  display: inline-block;
  color: #fcd34d;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.eyebrow {
  margin-bottom: 26px;
  padding: 12px 18px;
  border: 1px solid rgba(252, 211, 77, 0.28);
  border-radius: 999px;
  background: rgba(252, 211, 77, 0.1);
  color: #fde68a;
  letter-spacing: 0;
  text-transform: none;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 950;
}

.hero-copy p {
  max-width: 720px;
  color: #d6d3d1;
  font-size: 19px;
  line-height: 1.75;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  background: #fbbf24;
  color: #09090b;
}

.button.primary:hover {
  background: #fcd34d;
}

.button.secondary {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.button.secondary:hover {
  background: rgba(255,255,255,0.12);
}

.feature-card {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 36px;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.feature-image {
  min-height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(160deg, rgba(245,158,11,.28), rgba(39,39,42,.58)),
    url("https://images.unsplash.com/photo-1485846234645-a62644f84728?q=80&w=1459&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.award-pill {
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.78);
  color: #fde68a;
  font-size: 14px;
}

.feature-caption {
  padding: 24px;
  border-radius: 26px;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(8px);
}

.feature-caption span {
  color: #fcd34d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.feature-caption h2 {
  margin: 10px 0;
  font-size: 36px;
}

.feature-caption p {
  color: #d6d3d1;
  line-height: 1.65;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 64px 0 34px;
}

.cred-card,
.project-card,
.about-card,
.service-list div,
.materials-grid div {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  border-radius: 28px;
}

.cred-card {
  padding: 24px;
  color: #f5f5f4;
  font-weight: 800;
}

.section {
  padding: 64px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.section-heading h2,
.about-card h2,
.materials-section h2,
.contact-section h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.section-heading p {
  max-width: 560px;
  color: #a8a29e;
  line-height: 1.7;
}

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

.project-card {
  padding: 30px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}

.project-card h3 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: 34px;
  font-weight: 950;
}

.project-card h4 {
  margin-bottom: 18px;
  color: #d6d3d1;
  font-size: 15px;
}

.project-card p {
  color: #d6d3d1;
  line-height: 1.72;
}

.status {
  margin-top: 24px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: rgba(9,9,11,0.5);
  color: #d6d3d1;
  font-size: 14px;
}

.status strong {
  color: #fcd34d;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.about-card {
  padding: 38px;
  background: linear-gradient(160deg, rgba(120,53,15,.35), rgba(24,24,27,.9));
}

.about-card p {
  margin-top: 24px;
  color: #d6d3d1;
  line-height: 1.75;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-list div {
  padding: 22px;
  color: #f5f5f4;
  font-size: 18px;
  font-weight: 800;
}

.materials-section {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.035);
}

.materials-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  padding: 68px 0;
}

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

.materials-grid div {
  padding: 22px;
  background: rgba(9,9,11,0.52);
  color: #e7e5e4;
}

.contact-section {
  max-width: 920px;
  padding: 94px 0;
  text-align: center;
}

.contact-section p {
  max-width: 730px;
  margin: 24px auto 0;
  color: #d6d3d1;
  font-size: 18px;
  line-height: 1.75;
}

.contact-buttons {
  justify-content: center;
}

footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #78716c;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-content,
  .about-section,
  .materials-inner,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-content {
    padding-top: 50px;
  }

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

  .feature-image {
    min-height: 430px;
  }
}

@media (max-width: 520px) {
  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 43px;
  }

  .project-card,
  .about-card {
    padding: 24px;
  }
}
