:root {
  --accent: #c29b33;
  --accent-dark: #9a7923;
  --bg-main: #ece8de;
  --bg-section: #e3e0d6;
  --card-bg: #22292f;
  --card-fg: #fff7e1;
  --text-main: #232323;
  --text-muted: #6a6a6a;
  --highlight: #b8922d;
  --overlay-bg: rgba(236, 232, 222, 0.89);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Base Styles */
html, body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.2rem 1.2rem;
}

/* Header & Navbar */
.site-header {
  background: var(--card-bg);
  color: var(--card-fg);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  box-shadow: 0 2px 14px rgba(40,40,40,0.10);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 38px;
  margin-right: 0.8rem;
}
.navbar-links a {
  color: var(--card-fg);
  text-decoration: none;
  font-size: 1rem;
  margin: 0 1.1rem;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border 0.18s, color 0.18s;
}
.navbar-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Hero Section */
.hero-img-container {
  position: relative;
  background: var(--bg-section);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3.2rem;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  max-width: 1100px;
  border-radius: 1.2rem;
  box-shadow: 0 2px 24px rgba(212,160,23,0.08);
  object-fit: cover;
  height: 340px;
  min-height: 180px;
  filter: brightness(0.89) blur(0.3px);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 1rem 2.2rem;
  background: var(--overlay-bg);
  z-index: 2;
  border-radius: 1.2rem;
  pointer-events: none;
}
.main-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.4rem;
  letter-spacing: -1px;
}
.hero-tagline {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--text-main);
  margin-bottom: 1.6rem;
}
.cta-btn {
  background: var(--accent);
  color: #fff;
  padding: 0.95rem 2.3rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.13rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.9rem;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 1px 7px rgba(50,50,50,0.07);
  pointer-events: auto;
}
.cta-btn:hover {
  background: #fff;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

/* Section Background */
.section-bg {
  padding: 2.3rem 2.2rem;
  border-radius: 1.3rem;
  background: var(--bg-section);
  margin-bottom: 2.5rem;
}

/* Staggered Rows */
.staggered-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.7rem;
}
.staggered-row.reverse {
  flex-direction: row-reverse;
}
.staggered-img {
  flex: 1 1 350px;
  max-width: 320px;
  min-width: 160px;
  border-radius: 1.1rem;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(68,68,68,0.09);
  margin: 0 1.1rem;
}
.staggered-content {
  flex: 2 1 470px;
  padding: 0.4rem 1.3rem;
}
.staggered-content h2 {
  color: var(--highlight);
  margin-top: 0;
}

/* Testimonials */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.testimonial {
  background: var(--bg-section);
  color: var(--text-main);
  border-left: 4px solid var(--accent);
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  max-width: 390px;
  font-style: italic;
  margin: 0.7rem 0;
}
.testimonial-author { font-weight: 700; }

/* Lists & Process */
.skills-list, .why-us-list, .contact-list, .footer-links {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0;
}
.skills-list li, .why-us-list li {
  margin-bottom: 0.55rem;
  color: var(--text-main);
  font-size: 1.06rem;
  padding-left: 1.2em;
  position: relative;
}
.skills-list li::before, .why-us-list li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
}
.process-list {
  margin: 1.1rem 0 0 1.4em;
  color: var(--text-main);
  font-size: 1.06rem;
}
.faq dt {
  font-weight: bold;
  color: var(--accent);
  margin-top: 1.2rem;
}
.faq dd {
  margin-left: 1.5em;
  margin-bottom: 0.7rem;
  color: var(--text-main);
}

/* Footer */
.site-footer {
  text-align: center;
  font-size: 1rem;
  color: #7c7c7c;
  margin-top: 3.5rem;
  padding-bottom: 3.5rem;
  border-top: 1.5px solid #dad8ce;
  background: var(--bg-section);
}
.footer-links a {
  color: var(--accent-dark);
  margin: 0 0.6em;
  text-decoration: none;
  font-weight: 500;
}
.footer-links a:hover { text-decoration: underline; }
.footer-meta { margin-top: 0.6em; color: #888; }
.footer-socials a {
  margin-left: 1.2em;
  color: var(--highlight);
  text-decoration: none;
}
.footer-socials a:hover { color: var(--accent); }
.footer-padding { height: 2.8em; }

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  display: block;
  width: 100%;
  margin-bottom: 0.75rem;
}
.contact-form textarea { min-height: 150px; }
.contact-form button {
  padding: 0.75rem;
  border-radius: 0.375rem;
  background: var(--accent);
  color: var(--card-fg);
  font-weight: 700;
  cursor: pointer;
  border: none;
}
.contact-form button:hover { background: var(--accent-dark); }

/* Responsive tweaks */
@media (max-width: 900px) {
  .staggered-row, .staggered-row.reverse { flex-direction: column; gap: 1rem; }
  .staggered-img { max-width: 95vw; margin-bottom: 1.2rem; }
  .hero-img { height: 180px; max-height: 220px; min-height: unset; }
}
@media (max-width: 700px) {
  .testimonial-list { flex-direction: column; gap: 1rem; }
  .testimonial { margin: 0 auto; width: 96%; }
  .hero-overlay { padding: 2rem 0.4rem 1.2rem 0.4rem; }
  .container { padding: 1.2rem 0.4rem; }
}
