:root {
  --black: #050505;
  --charcoal: #111111;
  --white: #ffffff;
  --off-white: #f7f4ee;
  --gold: #c79a3b;
  --gold-light: #e6c878;
  --green: #143d2b;
  --grey: #666666;
  --border: #e5e0d6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
}

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

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* HEADER */

.site-header {
  width: 100%;
  background: var(--black);
  z-index: 1000;
  border-bottom: 1px solid rgba(199, 154, 59, 0.35);
  position: relative;
}

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

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  height: 72px;
  width: auto;
  max-width: 340px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--gold-light);
}

/* HERO */

.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.58), rgba(0,0,0,0.18)),
    url("assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.eyebrow.dark {
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 800;
  margin-bottom: 22px;
}

.gold-line {
  width: 110px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 26px;
}

.hero-services {
  font-size: 1.18rem;
  color: #eee;
  margin-bottom: 34px;
}

.hero-services span {
  color: var(--gold-light);
  padding: 0 10px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 16px 26px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: #1d563b;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

/* SECTIONS */

section {
  padding: 92px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 44px;
}

.section-heading p {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.82rem;
  font-weight: 800;
}

.section-heading h2,
.about h2,
.area-content h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--black);
}

/* SERVICES */

.services {
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--black);
}

.service-card p {
  color: var(--grey);
  font-size: 0.95rem;
}

/* ABOUT */

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

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

.about-text p {
  margin-top: 18px;
  color: var(--grey);
}

.about-text ul {
  margin-top: 28px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.about-text li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  margin-right: 10px;
}

.about-image {
  min-height: 420px;
  border-radius: 10px;
  background:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)),
    url("assets/images/hood.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 50px rgba(0,0,0,0.14);
}

/* GALLERY */

.gallery {
  background: var(--black);
}

.light-heading h2 {
  color: var(--white);
}

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

.gallery-grid div {
  min-height: 240px;
  border: 1px solid rgba(199,154,59,0.45);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-weight: 800;
}

/* AREA */

.service-area {
  background: var(--off-white);
}

.area-content {
  max-width: 780px;
  text-align: center;
}

.area-content p {
  margin-top: 16px;
  color: var(--grey);
}

/* CONTACT */

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
}

.contact p {
  color: var(--grey);
  margin-top: 16px;
}

.contact-details {
  margin-top: 28px;
}

.contact-details a {
  color: var(--green);
  font-weight: 700;
}

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

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
}

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

button {
  padding: 17px 26px;
  border: none;
  border-radius: 4px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

button:hover {
  background: #1d563b;
}

/* FOOTER */

footer {
  background: var(--black);
  color: var(--white);
  padding: 42px 0;
  text-align: center;
}

footer p {
  color: #ccc;
  margin-bottom: 6px;
}

/* MOBILE */

@media (max-width: 960px) {
  .nav-wrapper {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    gap: 18px;
  }

  .logo-image {
    height: 62px;
    max-width: 300px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

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

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

@media (max-width: 600px) {
  .logo-image {
    height: 50px;
    max-width: 250px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  section {
    padding: 70px 0;
  }
}
