:root {
  --brown: #6e4632;
  --brown-dark: #3b2419;
  --cream: #fffded;
  --cream-2: #f6efd9;
  --green: #536f45;
  --gold: #c69642;
  --ink: #241710;
  --muted: #706259;
  --line: rgba(110, 70, 50, 0.18);
  --shadow: 0 22px 70px rgba(59, 36, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 237, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: min(290px, 58vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--brown-dark);
  font-weight: 600;
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--brown);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--brown);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 98px) clamp(20px, 5vw, 72px) clamp(38px, 7vw, 78px);
  background:
    linear-gradient(120deg, rgba(255, 253, 237, 0.98), rgba(246, 239, 217, 0.88)),
    radial-gradient(circle at 12% 12%, rgba(198, 150, 66, 0.18), transparent 34%);
}

.hero h1,
.page-hero h1 {
  margin: 12px 0 18px;
  color: var(--brown-dark);
  font-size: clamp(2.15rem, 4.4vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--brown);
  color: #fff;
}

.btn-secondary {
  background: #fffaf0;
  color: var(--brown);
  border-color: var(--line);
}

.hero-media,
.image-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fffaf0;
}

.hero-media img {
  width: 100%;
  height: min(590px, 62vw);
  min-height: 380px;
  object-fit: cover;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section-muted {
  background: var(--cream-2);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 10px 0 16px;
  color: var(--brown-dark);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--brown-dark);
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.reverse .content-block {
  order: 1;
}

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

.content-block p {
  margin-bottom: 18px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.stats-row div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.stats-row strong {
  display: block;
  color: var(--brown);
  font-size: 1.45rem;
}

.stats-row span,
.footer-grid span,
.testimonial span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  color: var(--brown);
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.service-grid,
.testimonial-grid,
.values-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.testimonial,
.values-grid article,
.process-grid div,
.services-detail article,
.contact-panel,
.contact-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.86);
}

.service-card {
  min-height: 190px;
}

.service-card p,
.testimonial p,
.values-grid p,
.process-grid p {
  margin-bottom: 0;
}

.check-list,
.timeline {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li,
.timeline li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before,
.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(198, 150, 66, 0.16);
}

.testimonial strong {
  display: block;
  color: var(--brown);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

summary {
  cursor: pointer;
  color: var(--brown-dark);
  font-weight: 700;
}

details p {
  margin-bottom: 0;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--brown-dark);
}

.contact-band h2,
.contact-band p {
  color: #fff;
}

.contact-band .eyebrow {
  color: var(--cream-2);
}

.page-hero {
  padding: clamp(52px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, var(--cream), var(--cream-2));
  border-bottom: 1px solid var(--line);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.service-hero img {
  border-radius: 8px;
  height: 360px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.timeline strong {
  display: block;
  color: var(--brown-dark);
}

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

.services-detail article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--brown);
  color: #fff;
  font-weight: 700;
}

.services-detail h2 {
  font-size: 1.42rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-item {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item strong {
  color: var(--brown-dark);
}

.contact-item a,
.contact-item span {
  color: var(--muted);
}

.contact-panel .btn {
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--brown-dark);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.map-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
  background: var(--cream-2);
}

.map-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(59, 36, 25, 0.88), rgba(110, 70, 50, 0.7)),
    url("../images/generated-process-image.png") center/cover;
  box-shadow: var(--shadow);
}

.map-card span {
  color: var(--cream-2);
}

.map-card strong {
  font-size: 1.8rem;
  line-height: 1.1;
}

.site-footer {
  padding: 48px clamp(20px, 5vw, 72px) 22px;
  background: #25160f;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.9fr 1fr;
  gap: 30px;
}

.footer-logo {
  width: min(260px, 78vw);
  filter: brightness(0) invert(1);
}

.footer-grid h3 {
  color: #fff;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffaf0;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .hero,
  .split,
  .intro-grid,
  .service-hero,
  .contact-layout,
  .map-section {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 430px;
    min-height: 0;
  }

  .reverse .content-block,
  .reverse .image-frame {
    order: initial;
  }

  .service-grid,
  .testimonial-grid,
  .values-grid,
  .process-grid,
  .services-detail,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: min(235px, 68vw);
  }

  .hero,
  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.05rem;
  }

  .hero-media img,
  .image-frame img,
  .service-hero img {
    height: 300px;
    min-height: 0;
  }

  .service-grid,
  .testimonial-grid,
  .values-grid,
  .process-grid,
  .services-detail,
  .stats-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn,
  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .map-card strong {
    font-size: 1.45rem;
  }
}
/* @vn-deploy:1784883898706 */
