:root {
  --black: #050505;
  --charcoal: #151515;
  --charcoal-2: #222222;
  --steel: #8f969d;
  --steel-light: #d4d7da;
  --white: #ffffff;
  --off-white: #f5f3ef;
  --gold: #b88a2d;
  --gold-light: #d6ad53;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

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

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

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

.top-bar {
  background: #090909;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--steel-light);
  font-size: 0.92rem;
  padding: 10px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(214, 173, 83, 0.22));
  
}

.logo span {
  line-height: 1.05;
}

.logo small {
  display: block;
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  margin-top: 4px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  color: var(--steel-light);
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--gold-light);
}

.nav-cta {
  padding: 12px 18px;
  background: var(--gold);
  color: #111;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(184, 138, 45, 0.22);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  cursor: pointer;
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 25%, rgba(184,138,45,0.18), transparent 35%),
    linear-gradient(90deg, rgba(5,5,5,0.98), rgba(5,5,5,0.86), rgba(5,5,5,0.55)),
    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=80') center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(transparent, var(--black));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 46px;
  align-items: center;
  padding: 96px 0;
}

.hero-content {
  width: min(760px, 100%);
}

.hero-badge {
  justify-self: center;
  width: min(420px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.09), rgba(255,255,255,0.02) 58%, transparent 59%);
  border: 1px solid rgba(214,173,83,0.2);
  box-shadow: inset 0 0 65px rgba(214,173,83,0.09), 0 24px 80px rgba(0,0,0,0.45);
}

.hero-badge img {
  width: 88%;
  filter: drop-shadow(0 22px 24px rgba(0,0,0,0.42));
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 0.83rem;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  margin-bottom: 26px;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--steel-light);
  max-width: 690px;
  margin-bottom: 34px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
  font: inherit;
}

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

.btn-primary {
  background: var(--gold);
  color: #111;
  border: 1px solid var(--gold);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn-secondary:hover {
  border-color: var(--gold-light);
}

.brand-strip {
  position: relative;
  z-index: 4;
  margin-top: -64px;
}

.brand-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(214,173,83,0.25);
  box-shadow: var(--shadow);
  background: rgba(214,173,83,0.35);
}

.brand-value {
  background: #101010;
  padding: 26px;
  text-align: center;
}

.brand-value strong {
  color: var(--gold-light);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.brand-value span {
  color: var(--steel-light);
  font-size: 0.95rem;
}

section {
  padding: 96px 0;
}

.media-showcase {
  padding: 94px 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(184, 138, 45, 0.16), transparent 34%),
    linear-gradient(180deg, #050505, #101010 52%, #050505);
  border-top: 1px solid rgba(214, 173, 83, 0.16);
  border-bottom: 1px solid rgba(214, 173, 83, 0.16);
}

.media-showcase-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 38px;
  align-items: center;
}

.media-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 20px;
}

.media-copy p {
  color: var(--steel-light);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.media-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.media-points span {
  border: 1px solid rgba(214, 173, 83, 0.35);
  color: var(--gold-light);
  background: rgba(184, 138, 45, 0.08);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(214, 173, 83, 0.32);
  background: #070707;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 7;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.28), transparent 38%, rgba(5, 5, 5, 0.2)),
    linear-gradient(180deg, transparent 68%, rgba(5, 5, 5, 0.34));
}

.media-frame::after {
  content: "Faith Forged. Integrity Driven.";
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.66);
  border: 1px solid rgba(214, 173, 83, 0.35);
  border-radius: 999px;
  padding: 10px 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 900;
}

.media-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading p {
  color: var(--steel-light);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: linear-gradient(180deg, #1b1b1b, #101010);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 260px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 4px;
  background: var(--gold);
}

.service-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: rgba(184,138,45,0.14);
  color: var(--gold-light);
  font-size: 1.7rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-card p {
  color: var(--steel-light);
  font-size: 0.98rem;
}

.extra-services {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.extra-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.09);
  background: #0f0f0f;
  padding: 24px;
  color: var(--steel-light);
}

.extra-card strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 46px;
  align-items: center;
}

.about-panel {
  background: var(--off-white);
  color: #171717;
  border-radius: 28px;
  padding: clamp(30px, 5vw, 58px);
  box-shadow: var(--shadow);
}

.about-panel h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
}

.about-panel p {
  color: #383838;
  margin-bottom: 16px;
  font-size: 1.06rem;
}

.about-image {
  min-height: 540px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(184,138,45,0.09), rgba(0,0,0,0.56)),
    url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1200&q=80') center/cover;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: "Faith Forged. Integrity Driven. Excellence Delivered.";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(214,173,83,0.45);
  background: rgba(0,0,0,0.7);
  color: var(--gold-light);
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  font-size: 0.9rem;
}

.why {
  background: #0c0c0c;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.why-item {
  border: 1px solid rgba(255,255,255,0.1);
  background: #171717;
  border-radius: 16px;
  padding: 22px;
  color: var(--steel-light);
  font-weight: 900;
}

.why-item span {
  display: block;
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 240px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.gallery-card:nth-child(1) { background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.78)), url('https://images.unsplash.com/photo-1604014237800-1c9102c219da?auto=format&fit=crop&w=900&q=80') center/cover; }
.gallery-card:nth-child(2) { background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.78)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=900&q=80') center/cover; }
.gallery-card:nth-child(3) { background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.78)), url('https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=900&q=80') center/cover; }
.gallery-card:nth-child(4) { background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.78)), url('https://images.unsplash.com/photo-1620626011761-996317b8d101?auto=format&fit=crop&w=900&q=80') center/cover; }
.gallery-card:nth-child(5) { background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.78)), url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?auto=format&fit=crop&w=900&q=80') center/cover; }
.gallery-card:nth-child(6) { background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.78)), url('https://images.unsplash.com/photo-1598228723793-52759bba239c?auto=format&fit=crop&w=900&q=80') center/cover; }
.gallery-card:nth-child(7) { background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.78)), url('https://images.unsplash.com/photo-1560185127-6ed189bf02f4?auto=format&fit=crop&w=900&q=80') center/cover; }

.gallery-card h3 {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  font-size: 1.2rem;
}

.gallery-card.featured {
  grid-column: span 2;
  min-height: 310px;
}

.cta-banner {
  padding: 72px 0;
  background: linear-gradient(90deg, #0b0b0b, #19130a, #0b0b0b);
  border-top: 1px solid rgba(214,173,83,0.24);
  border-bottom: 1px solid rgba(214,173,83,0.24);
}

.cta-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.contact {
  background:
    linear-gradient(90deg, rgba(5,5,5,0.98), rgba(5,5,5,0.85)),
    url('https://images.unsplash.com/photo-1531834685032-c34bf0d84c77?auto=format&fit=crop&w=1800&q=80') center/cover;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: rgba(20,20,20,0.82);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.contact-card h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}

.contact-card p {
  color: var(--steel-light);
  margin-bottom: 28px;
  font-size: 1.08rem;
}

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

.contact-person {
  padding: 22px;
  border-radius: 18px;
  background: #101010;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-person strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.contact-person a {
  color: var(--gold-light);
  font-weight: 900;
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

form {
  display: grid;
  gap: 14px;
}

input, textarea, select {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 14px;
  padding: 15px 16px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid rgba(184,138,45,0.55);
  border-color: var(--gold);
}

.form-status {
  color: var(--steel-light);
  min-height: 24px;
}

.form-status.success {
  color: var(--gold-light);
}

.form-status.error {
  color: #ffb0b0;
}

footer {
  padding: 34px 0;
  background: #050505;
  color: var(--steel);
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 1100px) {
  .services-grid,
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .extra-services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .section-heading,
  .about-wrap,
  .media-showcase-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    display: none;
  }
}

@media (max-width: 860px) {
  .mobile-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #070707;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: none;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
  }

  nav a {
    display: block;
    padding: 10px 0;
  }

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

  .gallery-card.featured {
    grid-column: span 1;
  }

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

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .top-bar .container {
    font-size: 0.82rem;
  }

  .logo span {
    font-size: 0.82rem;
  }

  .hero {
    min-height: 650px;
  }

  .button-row .btn {
    width: 100%;
  }

  .services-grid,
  .why-grid,
  .gallery-grid,
  .brand-strip-inner {
    grid-template-columns: 1fr;
  }

  section {
    padding: 72px 0;
  }

  .media-frame {
    aspect-ratio: 4 / 3;
  }

  .media-frame::after {
    font-size: 0.62rem;
    left: 12px;
    right: 12px;
    text-align: center;
  }
}

