@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@400;500&display=swap');

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

:root {
  --black:  #111111;
  --yellow: #F0C000;
  --green:  #4B6741;
  --sand:   #F5F5F5;
  --text:   #1A1A1A;
  --mid:    #555555;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 60px;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav-logo span {
  color: #fff;
  font-size: 0.7rem;
  display: block;
  letter-spacing: 0.12em;
  font-weight: 400;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: #d4c4b0;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--yellow); }

.nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  font-weight: 500 !important;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 680px;
  margin-left: 6vw;
  margin-top: 60px;
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  color: var(--yellow);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero p {
  color: #e8ddd0;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  font-weight: 600;
}

.btn-primary:hover { background: #d4aa00; }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  margin-left: 1rem;
}

.btn-outline:hover { border-color: #fff; }

/* SECTION BASICS */
section { padding: 5rem 1.5rem; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'Oswald', sans-serif;
  color: var(--yellow);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-body {
  color: #555;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  display: block;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  background: var(--sand);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e0e0e0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.service-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.service-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.service-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.service-card-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.service-card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--yellow);
  font-weight: 500;
}

/* DIRT CALLOUT BAND */
.dirt-band {
  background: var(--black);
  padding: 4rem 1.5rem;
  text-align: center;
}

.dirt-band h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.dirt-band h2 em {
  font-style: normal;
  color: var(--yellow);
}

.dirt-band p {
  color: #c8c8c8;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ABOUT STRIP */
.about-strip {
  background: var(--sand);
}

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

.about-grid img {
  width: 100%;
  border-radius: 6px;
  display: block;
  filter: saturate(0.9);
}

.about-text .section-title { margin-bottom: 1rem; }

.stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* CONTACT */
.contact-section { background: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info p { color: #555; margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
}

.contact-detail svg { flex-shrink: 0; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.8rem 1rem;
  border: 1.5px solid #d4d4d4;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--sand);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--yellow); }

.contact-form textarea { min-height: 120px; resize: vertical; }

/* FOOTER */
footer {
  background: var(--black);
  color: #888;
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

footer a { color: var(--yellow); text-decoration: none; }

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--yellow);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* SERVICE PAGE HERO */
.service-hero {
  padding-top: 60px;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}

.service-hero-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.service-hero-content .hero-eyebrow { margin-bottom: 0.5rem; }

.service-hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
}

.service-hero-subtitle {
  font-family: 'Oswald', sans-serif;
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 0.12em;
  margin-top: 0.5rem;
  text-transform: uppercase;
}

/* SERVICE CONTENT */
.service-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.service-body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--black);
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
}

.service-body h2:first-child { margin-top: 0; }

.service-body p { color: #555; margin-bottom: 1rem; }

.service-body ul {
  padding-left: 1.25rem;
  color: #555;
}

.service-body ul li { margin-bottom: 0.4rem; }

.service-sidebar {
  background: var(--sand);
  border-radius: 6px;
  padding: 1.75rem;
  border: 1px solid #e0e0e0;
  position: sticky;
  top: 80px;
}

.service-sidebar h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-sidebar .contact-detail {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.other-services { list-style: none; margin-top: 1.5rem; }

.other-services li { border-top: 1px solid #d4d4d4; }

.other-services a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.other-services a:hover { color: var(--yellow); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .about-grid, .contact-grid, .service-content { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .hero-content { margin-left: 1.5rem; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; display: block; width: fit-content; }
}
