@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@500;600;700&family=Public+Sans:wght@400;500;600&display=swap');

:root {
  --forest: #1F3325;
  --forest-light: #2A4030;
  --bark: #4A2E1F;
  --rust: #B5502C;
  --rust-dark: #8C3B1E;
  --cream: #F3EEE1;
  --paper: #FBF9F3;
  --charcoal: #23201B;
  --gold: #C89B3C;
  --line: rgba(35,32,27,0.12);

  --font-display: 'Zilla Slab', Georgia, 'Times New Roman', serif;
  --font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.55;
}

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

a { color: inherit; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--forest);
}

p { margin: 0 0 1em; max-width: 62ch; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: var(--rust);
  color: var(--paper);
}
.btn-primary:hover { background: var(--rust-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn-ghost:hover { background: rgba(243,238,225,0.12); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--forest);
  border-bottom: 3px solid var(--gold);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 42px; height: 42px; }
.brand-text {
  font-family: var(--font-display);
  color: var(--paper);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
}
.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--gold); }
.header-phone {
  color: var(--paper) !important;
  font-weight: 600 !important;
  border-left: 1px solid rgba(243,238,225,0.25);
  padding-left: 24px;
}

@media (max-width: 760px) {
  .main-nav .nav-links { display: none; }
  .header-phone { border-left: none; padding-left: 0; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero-copy .kicker {
  font-family: var(--font-body);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.hero h1 {
  color: var(--paper);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  max-width: 14ch;
}
.hero p.lead {
  color: rgba(243,238,225,0.86);
  font-size: 1.1rem;
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero-figure { border-radius: 6px; overflow: hidden; box-shadow: 0 30px 60px rgba(15,20,15,0.35); }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-figure { order: -1; }
}

/* ---------- Section basics ---------- */
section { padding: 84px 0; }
.section-topo {
  background-image: url('../images/texture-topo.svg');
  background-repeat: repeat;
  background-size: 400px 400px;
}
.section-head { max-width: 58ch; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.section-head p { color: #4a463d; }

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--rust);
  padding: 30px 26px;
}
.service-card img { width: 40px; height: 40px; margin-bottom: 18px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: #4a463d; font-size: 0.97rem; margin-bottom: 0; }

@media (max-width: 860px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ---------- About / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split .figure-frame {
  background: var(--forest);
  padding: 18px;
  border-radius: 6px;
}
.stat-row {
  display: flex;
  gap: 36px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--rust);
  line-height: 1;
}
.stat span { font-size: 0.85rem; color: #4a463d; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- Fleet & authority strip ---------- */
.authority {
  background: var(--bark);
  color: var(--cream);
}
.authority .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.authority-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.authority-item span { font-size: 0.9rem; color: rgba(243,238,225,0.82); }

@media (max-width: 760px) {
  .authority .wrap { grid-template-columns: 1fr 1fr; }
}

/* ---------- Testimonials ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.quote-card {
  background: var(--cream);
  padding: 32px;
  border-radius: 4px;
  position: relative;
}
.quote-card p.quote-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 18px;
  max-width: none;
}
.quote-card .who { font-size: 0.88rem; color: #4a463d; font-weight: 600; }

@media (max-width: 760px) {
  .quote-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact / footer ---------- */
.contact {
  background: var(--forest);
  color: var(--cream);
}
.contact .wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}
.contact h2 { color: var(--paper); }
.contact-details { list-style: none; margin: 26px 0 0; padding: 0; }
.contact-details li {
  padding: 14px 0;
  border-top: 1px solid rgba(243,238,225,0.16);
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.contact-details b { color: var(--gold); min-width: 96px; font-weight: 600; font-size: 0.85rem; }
.contact-details span, .contact-details a { color: var(--cream); text-decoration: none; font-size: 1.02rem; }
.contact-details a:hover { color: var(--gold); }

.contact-form {
  background: var(--paper);
  color: var(--charcoal);
  padding: 32px;
  border-radius: 6px;
}
.contact-form h3 { font-size: 1.15rem; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  background: #fff;
}
.field textarea { resize: vertical; min-height: 90px; }

.site-footer {
  background: #16211A;
  color: rgba(243,238,225,0.6);
  font-size: 0.85rem;
  padding: 22px 0;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 760px) {
  .contact .wrap { grid-template-columns: 1fr; }
}
