:root {
  --charcoal: #211D18;
  --terracotta: #C1703F;
  --clay: #9C5730;
  --cream: #F4ECDC;
  --sand: #EAE0CB;
  --slate: #5B5142;
  --oak: #8B5E34;
  --offwhite: #FBF8F1;

  --font-heading: "Roboto Slab", Georgia, serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--cream);
  line-height: 1.6;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  line-height: 1.15;
  margin: 0 0 16px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--terracotta);
  margin-bottom: 12px;
}

a { color: var(--terracotta); }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--offwhite);
  border: 2px solid var(--terracotta);
}
.btn-primary:hover { background: var(--clay); border-color: var(--clay); }

.btn-outline {
  background: transparent;
  color: var(--offwhite);
  border: 2px solid var(--offwhite);
}
.btn-outline:hover { background: var(--offwhite); color: var(--charcoal); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  border-bottom: 3px solid var(--terracotta);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--offwhite);
}

.brand img {
  height: 48px;
  width: auto;
  border-radius: 6px;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.1;
  color: var(--offwhite);
}
.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
nav a {
  color: var(--offwhite);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
nav a:hover { color: var(--terracotta); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--offwhite);
  font-size: 1.6rem;
  cursor: pointer;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(251,248,241,0.3);
  border-radius: 6px;
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--sand);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 7px 12px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn + .lang-btn { border-left: 1px solid rgba(251,248,241,0.3); }

.lang-btn:hover { color: var(--offwhite); }

.lang-btn.active {
  background: var(--terracotta);
  color: var(--offwhite);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--charcoal) 0%, #2c261f 100%);
  color: var(--offwhite);
  padding: 88px 0 96px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  color: var(--offwhite);
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--sand);
  max-width: 46ch;
  margin-bottom: 32px;
}

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

.hero-visual {
  background: var(--offwhite);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.hero-visual img { margin: 0 auto; max-width: 280px; }

/* Sections */
section { padding: 80px 0; }
.section-alt { background: var(--sand); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head p { color: var(--slate); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--offwhite);
  border-radius: 8px;
  padding: 32px 28px;
  border-top: 4px solid var(--terracotta);
  box-shadow: 0 6px 18px rgba(33,29,24,0.06);
}

.service-card .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--terracotta);
}

.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { margin: 0; font-size: 0.95rem; }

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.why-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.why-list .num {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--offwhite);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.why-list h3 { font-size: 1.05rem; margin: 0 0 4px; }
.why-list p { margin: 0; font-size: 0.92rem; }

.why-panel {
  background: var(--charcoal);
  color: var(--offwhite);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}
.why-panel img { margin: 0 auto 20px; max-width: 160px; }
.why-panel p { color: var(--sand); font-size: 0.95rem; }

/* Areas served */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.areas-list span {
  background: var(--offwhite);
  border: 1px solid var(--sand);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 500;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info h2 { margin-bottom: 12px; }
.contact-info p { margin-bottom: 24px; }

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-detail .icon {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
  flex: none;
  margin-top: 3px;
}
.contact-detail a { color: var(--charcoal); text-decoration: none; font-weight: 600; }
.contact-detail a:hover { color: var(--terracotta); }

form.contact-form {
  background: var(--offwhite);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 6px 18px rgba(33,29,24,0.06);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--sand);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--charcoal);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--slate); margin-top: 10px; }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: var(--sand);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 {
  color: var(--offwhite);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin: 0 0 14px;
}
.footer-grid p, .footer-grid a {
  color: var(--sand);
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-grid a:hover { color: var(--terracotta); }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand img { height: 36px; border-radius: 4px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(251,248,241,0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--slate);
}

/* Responsive */
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 280px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  nav { position: fixed; inset: 64px 0 auto 0; background: var(--charcoal); padding: 12px 24px 24px; display: none; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 16px; }
  .nav-toggle { display: block; }
}
