:root {
  --green-dark: #6b0a0a;
  --green-mid: #8b1010;
  --green-accent: #a01515;
  --green-light: #c04040;
  --gold: #c8a84b;
  --gold-light: #e2c76a;
  --gold-dark: #a07828;
  --cream: #f5f0e4;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(107,10,10,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,168,75,0.2);
}

.nav-logo {
  text-decoration: none;
  line-height: 1.2;
}

.nav-logo-primary {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-logo-secondary {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-service-menu { position: relative; padding: 1.6rem 0; }
.nav-service-menu > a::after { content: ' ▾'; font-size: 0.7em; }
.nav-dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: -1rem;
  width: 250px;
  padding: 0.6rem;
  list-style: none;
  background: #560707;
  border: 1px solid rgba(200,168,75,0.25);
  box-shadow: 0 16px 35px rgba(58,5,5,0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.nav-service-menu:hover .nav-dropdown,
.nav-service-menu:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.72rem 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible { background: rgba(255,255,255,0.05); }

.nav-cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 2px;
  font-weight: 500 !important;
}

.nav-cta:hover { background: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  padding: 1.5rem 5%;
  background: var(--green-dark);
  border-top: 1px solid rgba(200,168,75,0.15);
  flex-direction: column;
  gap: 0.3rem;
}

.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu .mobile-label {
  color: var(--gold);
  padding-top: 0.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.mobile-menu .mobile-service { padding-left: 1rem; }
.mobile-menu .mobile-cta {
  border: 0;
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-weight: 500;
  border-radius: 2px;
  margin-top: 0.5rem;
}

.service-hero {
  min-height: 680px;
  padding: 132px 5% 80px;
  display: flex;
  align-items: center;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 45%, rgba(160,21,21,0.34), transparent 56%),
    repeating-linear-gradient(45deg, rgba(192,64,64,0.035) 0, rgba(192,64,64,0.035) 1px, transparent 0, transparent 50%);
  background-size: auto, 24px 24px;
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow { color: var(--gold); margin-bottom: 1.2rem; }
.eyebrow::before,
.section-label::before { content: ''; display: block; width: 28px; height: 1px; background: currentColor; }

h1,
h2,
h3 { font-family: 'Playfair Display', serif; }

h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2.65rem, 5.4vw, 5rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero-intro {
  max-width: 620px;
  color: rgba(255,255,255,0.67);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.7rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.btn-primary { background: var(--gold); color: var(--green-dark); border: 2px solid var(--gold); font-weight: 500; }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-outline { color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

.service-hero-figure {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 0 0 1.2rem 1.2rem;
}
.service-hero-figure::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;
  height: 70%;
  background: var(--gold);
}
.service-hero-figure img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 24px 55px rgba(58,5,5,0.38);
}

.trust-bar {
  padding: 1rem 5%;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  background: var(--gold);
}
.trust-item {
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

section { padding: 90px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { color: var(--green-accent); margin-bottom: 1rem; }
h2 {
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section-desc {
  max-width: 660px;
  color: var(--text-mid);
  font-size: 1.03rem;
  font-weight: 300;
  line-height: 1.75;
}

.process-section { background: var(--cream); }
.process-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}
.process-list { list-style: none; border-top: 1px solid rgba(107,10,10,0.14); }
.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(107,10,10,0.14);
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}
.process-list strong { display: block; color: var(--green-dark); font-weight: 500; margin-bottom: 0.15rem; }
.process-number { color: var(--gold-dark); font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; }

.trust-section { background: var(--white); }
.trust-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid rgba(107,10,10,0.12);
}
.trust-copy { padding: clamp(2rem, 5vw, 4rem); background: var(--green-dark); color: var(--white); }
.trust-copy h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 0.8rem; }
.trust-copy p { color: rgba(255,255,255,0.68); line-height: 1.7; font-weight: 300; }
.trust-copy p + h3 { margin-top: 2.2rem; }
.service-area { padding: clamp(2rem, 5vw, 4rem); background: var(--cream); }
.service-area h3 { color: var(--green-dark); font-size: 1.5rem; margin-bottom: 0.8rem; }
.service-area > p { color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.area-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem 1.3rem; list-style: none; }
.area-list li { color: var(--text-mid); font-size: 0.9rem; padding-bottom: 0.6rem; border-bottom: 1px solid rgba(107,10,10,0.1); }
.area-list li::before { content: '—'; color: var(--gold-dark); margin-right: 0.5rem; }

.service-cta { background: var(--green-mid); text-align: center; }
.service-cta h2 { max-width: 760px; margin: 0 auto 1rem; color: var(--white); }
.service-cta p { max-width: 650px; margin: 0 auto 2rem; color: rgba(255,255,255,0.66); font-weight: 300; line-height: 1.7; }
.service-cta .hero-actions { justify-content: center; }

.related-services { background: var(--cream); }
.related-links {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(107,10,10,0.12);
  border: 1px solid rgba(107,10,10,0.12);
}
.related-links a {
  padding: 1.7rem;
  background: var(--white);
  color: var(--green-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.related-links a:hover { background: #faf7f0; }
.related-links span { display: block; margin-top: 0.5rem; color: var(--gold-dark); font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }

footer { background: #3a0505; padding: 3rem 5% 2rem; color: rgba(255,255,255,0.4); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; }
.footer-logo span { display: block; margin-top: 2px; color: var(--gold); font-family: 'DM Sans', sans-serif; font-size: 0.68rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.82rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.78rem; }
.legal-links { width: 100%; margin-bottom: 0.25rem; }
.legal-links a { color: rgba(200,168,75,0.8); text-decoration: none; margin-right: 1.2rem; font-size: 0.82rem; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .service-hero { min-height: auto; }
  .service-hero-inner { grid-template-columns: 1fr; }
  .service-hero-figure { max-width: 560px; }
  .process-layout,
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  section { padding: 64px 5%; }
  .service-hero { padding-top: 112px; }
  .service-hero-figure { padding: 0 0 0.75rem 0.75rem; }
  .trust-bar { gap: 1rem 1.5rem; justify-content: flex-start; }
  .area-list,
  .related-links { grid-template-columns: 1fr; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}
