/* =========================
   Base Reset
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  color: #f5f1e8;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* =========================
   Layout
========================= */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

section {
  padding: 88px 0;
}

/* =========================
   Typography
========================= */
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: #d5d0c7;
}

.eyebrow {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

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

.section-heading h2 {
  margin-bottom: 14px;
}

.section-heading p {
  font-size: 1rem;
}

/* =========================
   Buttons
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: #d4af37;
  color: #111;
}

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

.btn-secondary {
  background: transparent;
  border: 1px solid #d4af37;
  color: #f5f1e8;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.text-link {
  color: #d4af37;
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

/* =========================
   Header
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #d4af37;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: rgba(60, 60, 60, 0.78);
  flex-shrink: 0;
}

.shovel-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.logo-name {
  font-family: Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.04em;
}

.logo-underline {
  display: block;
  width: 100%;
  height: 4px;
  background: #111;
  margin-top: 4px;
}

.site-logo {
  display: none;
}

.menu-toggle,
.close-menu {
  background: transparent;
  border: none;
  color: #111;
  font-size: 2rem;
  cursor: pointer;
}

/* =========================
   Side Menu
========================= */
.side-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 90%;
  height: 100vh;
  background: #141414;
  z-index: 1200;
  padding: 30px 24px;
  transition: right 0.3s ease;
  border-left: 1px solid rgba(212, 175, 55, 0.18);

  display: flex;
  flex-direction: column;
}

.side-menu.active {
  right: 0;
}

.close-menu {
  display: block;
  margin-left: auto;
  margin-bottom: 24px;
  color: #f5f1e8;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.side-nav a {
  font-size: 1.1rem;
  color: #f5f1e8;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.side-nav a:hover {
  color: #d4af37;
}

.menu-credit {
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: 8px;
}

.menu-credit a {
  display: inline-block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.menu-credit a:hover {
  color: rgba(255, 255, 255, 0.32);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 1100;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================
   Hero
========================= */
.hero {
  padding: 100px 0 80px;
  background:
    linear-gradient(rgba(10,10,10,0.72), rgba(10,10,10,0.82)),
    url("../assets/images/hero-placeholder.jpg") center/cover no-repeat;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: 56px;
  align-items: center;
}

.hero-text {
  max-width: 640px;
}

.hero-text h1 {
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 1.05rem;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 22px;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

/* =========================
   Cards / Grids
========================= */
.service-grid,
.document-grid {
  display: grid;
  gap: 24px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.document-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.document-card {
  background: #171717;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.25s ease;
}

.service-card:hover,
.document-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 14px 34px rgba(0,0,0,0.25);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card-content,
.document-card {
  padding: 22px;
}

.service-card-content h3,
.document-card h3 {
  margin-bottom: 10px;
  color: #f8f4ec;
}

.section-action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 38px;
}

/* =========================
   Split Section
========================= */
.split-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 52px;
  align-items: center;
}

.split-image {
  display: flex;
  justify-content: center;
}

.split-image img {
  width: 100%;
  max-width: 540px;
  border-radius: 22px;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.split-text {
  max-width: 560px;
}

.split-text h2 {
  margin-bottom: 18px;
}

.split-text p {
  margin-bottom: 18px;
}

.reverse-split .split-image {
  order: 2;
}

.reverse-split .split-text {
  order: 1;
  margin-left: auto;
}

/* =========================
   Quote CTA
========================= */
.quote-cta-box {
  background: linear-gradient(135deg, #171717, #1f1b16);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.quote-cta-box > div {
  max-width: 700px;
}

.quote-cta-box h2 {
  margin-bottom: 12px;
}

/* =========================
   Footer
========================= */
.site-footer {
  background: #000;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 34px;
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.footer-nav-column,
.footer-contact-column,
.footer-policy-column {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 30px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 14px;
  color: #f5f1e8;
}

.footer-grid li {
  margin-bottom: 10px;
  color: #d5d0c7;
}

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

.footer-brand p {
  margin-bottom: 18px;
  max-width: 280px;
}

.footer-logo {
  width: 160px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 18px 0 24px;
}

.footer-bottom p {
  font-size: 0.95rem;
  color: #aaa39a;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 24px;
  }

  .footer-nav-column,
  .footer-contact-column,
  .footer-policy-column {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 24px;
    border-top: none;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 18px;
  }

  .footer-nav-column,
  .footer-contact-column,
  .footer-policy-column {
    padding-left: 18px;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-grid h3,
  .footer-grid h4 {
    font-size: 0.95rem;
  }

  .footer-grid li,
  .footer-grid a,
  .footer-brand p {
    font-size: 0.85rem;
  }
}

/* =========================
   Utility Section Backgrounds
========================= */
.services-preview,
.documents-section,
.split-section,
.quote-cta {
  background: #0f0f0f;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
  .hero-content,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .quote-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-text,
  .split-text,
  .quote-cta-box > div {
    max-width: 100%;
  }

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

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

  .reverse-split .split-image,
  .reverse-split .split-text {
    order: unset;
    margin-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 24px;
  }

  .footer-nav-column,
  .footer-contact-column {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 24px;
    border-top: none;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  section {
    padding: 64px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .logo-icon {
    width: 52px;
    height: 52px;
  }

  .logo-name {
    font-size: 2.3rem;
  }

  .logo-underline {
    height: 3px;
  }

  .hero {
    padding: 70px 0 50px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }

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

  .hero-image img,
  .split-image img {
    min-height: 280px;
  }

  .quote-cta-box {
    padding: 26px;
  }

  .quote-cta-box .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 18px;
  }

  .footer-nav-column,
  .footer-contact-column {
    padding-left: 18px;
  }

  .footer-logo {
    width: 120px;
  }
}

/* =========================
   Visual Digital Quote Form
========================= */
.quote-form-section {
  background: #0f0f0f;
}

.quote-form {
  max-width: 920px;
  margin: 0 auto;
  background: #171717;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 10px;
  font-weight: 700;
  color: #f5f1e8;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f5f1e8;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

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

.form-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.form-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

@media (max-width: 640px) {
  .quote-form {
    padding: 24px;
  }

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