/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #0b0b0b;
  color: #fff;
  line-height: 1.6;
}

/* BACKGROUND */
.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.16), transparent 35%),
    linear-gradient(180deg, #0b0b0b 0%, #111 100%);
  z-index: -1;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TOP BAR */
.top-bar {
  background: #d4af37;
  color: #000;
  font-size: 0.95rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.top-bar a {
  color: #000;
  text-decoration: none;
  font-weight: 800;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* HEADER */
.header {
  background: rgba(0, 0, 0, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
}

.brand-sub {
  font-style: italic;
  color: #d4af37;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}

.nav a:hover,
.nav .active {
  color: #d4af37;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: 0.3s;
}

.nav a:hover::after,
.nav .active::after {
  width: 100%;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 3px;
}

/* HERO */
.hero {
  padding: 90px 0 80px;
}

.hero-simple {
  padding-top: 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 24px;
  color: #d0d0d0;
  font-size: 1.03rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.hero-contact-strip div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 14px;
  padding: 14px 16px;
  min-width: 220px;
}

.hero-contact-strip .label {
  display: block;
  color: #d4af37;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-weight: 800;
}

.hero-contact-strip a,
.hero-contact-strip span:last-child {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 24px;
  padding: 32px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-card-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
}

.hero-logo {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

/* PAGE HERO */
.page-hero {
  padding: 90px 0 46px;
  text-align: center;
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #ccc;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

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

.btn-gold {
  background: #d4af37;
  color: #000;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}

.btn-gold:hover {
  background: #e3bf4a;
}

.btn-dark {
  background: #161616;
  color: #fff;
  border-color: #2a2a2a;
}

.btn-dark:hover {
  border-color: #d4af37;
  color: #d4af37;
}

/* SECTION */
.section {
  padding: 84px 0;
}

.section h2 {
  margin-bottom: 16px;
}

.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 42px;
}

.section-heading p {
  color: #cfcfcf;
}

.section-button {
  text-align: center;
  margin-top: 30px;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.service-card {
  background: linear-gradient(180deg, #131313 0%, #0f0f0f 100%);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #242424;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.6);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  color: #c8c8c8;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 16px;
}

/* MATERIALS */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.material-card {
  background: linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
  border: 1px solid #242424;
  border-radius: 18px;
  padding: 24px;
  transition: 0.3s ease;
}

.material-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.6);
}

.material-card h3 {
  margin-bottom: 10px;
  color: #d4af37;
}

.material-card p {
  color: #cccccc;
}

/* BAND SECTION */
.band-section {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.04), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.band-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.band-card,
.stats-card,
.about-card,
.contact-card,
.cta-box {
  background: linear-gradient(180deg, #131313 0%, #101010 100%);
  border: 1px solid #242424;
  border-radius: 20px;
  padding: 28px;
}

.band-card p,
.about-card p,
.contact-card p {
  color: #d0d0d0;
}

.stats-card {
  display: grid;
  gap: 18px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 16px;
  padding: 18px;
}

.stat-box span {
  display: block;
  color: #d4af37;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 800;
}

.stat-box strong {
  display: block;
  font-size: 1.08rem;
}

/* ABOUT */
.about-grid {
  display: grid;
  gap: 22px;
}

.about-card h2 {
  margin-bottom: 12px;
}

/* CHECK LIST */
.check-list {
  list-style: none;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #e3e3e3;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: #d4af37;
  font-size: 1.3rem;
  line-height: 1;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card h2 {
  margin-bottom: 18px;
}

.contact-info {
  margin-bottom: 20px;
}

.contact-info a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 700;
}

.contact-info a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  margin-top: 4px;
  background: #0d0d0d;
  color: #fff;
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #909090;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

/* CTA */
.cta-section {
  padding-bottom: 90px;
}

.cta-box {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-box p {
  color: #d0d0d0;
  margin-bottom: 18px;
}

/* FOOTER */
.footer {
  background: #000;
  padding: 44px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 24px;
}

.footer h3,
.footer h4 {
  margin-bottom: 12px;
}

.footer p,
.footer a {
  color: #c9c9c9;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer a:hover {
  color: #d4af37;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-grid,
  .band-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 5%;
    width: 220px;
    background: #0d0d0d;
    border: 1px solid #252525;
    border-radius: 14px;
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    margin: 0 0 12px 0;
  }

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

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

  .hero {
    padding: 72px 0 64px;
  }

  .section,
  .cta-section {
    padding: 70px 0;
  }

  .brand-logo {
    height: 48px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero-contact-strip div {
    min-width: 100%;
  }
}

@media (max-width: 520px) {
  .container {
    width: 92%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  margin-top: 4px;
  background: #0d0d0d;
  color: #fff;
  font-family: inherit;
}

select:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.materials-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.material-photo-card {
  background: linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
  border: 1px solid #242424;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.material-photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.6);
}

.material-photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.material-photo-content {
  padding: 18px;
}

.material-photo-content h3 {
  margin-bottom: 8px;
  color: #d4af37;
  font-size: 1.1rem;
}

.material-photo-content p {
  color: #d7d7d7;
  font-weight: 600;
}
.project-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-photo-card {
  background: linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
  border: 1px solid #242424;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition: 0.3s ease;
}

.project-photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.6);
}

.project-photo-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.featured-job {
  position: relative;
  background: url("rockhaul.jpeg") center/cover no-repeat;
  min-height: 420px;
  margin: 30px 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.featured-job-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 55%, rgba(0, 0, 0, 0.4) 100%);
  width: 100%;
  height: 100%;
}

.featured-job-content {
  padding: 100px 0;
  max-width: 700px;
}

.featured-job-content h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.featured-job-content p {
  color: #d4d4d4;
  font-size: 1.02rem;
}

@media (max-width: 768px) {
  .project-photo-grid {
    grid-template-columns: 1fr;
  }

  .project-photo-card img {
    height: 260px;
  }

  .featured-job-content {
    padding: 72px 0;
  }
}
.about-owner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-owner-image img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #242424;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  object-fit: cover;
}

.about-owner-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.about-owner-content p {
  color: #d4d4d4;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .about-owner-grid {
    grid-template-columns: 1fr;
  }
}