:root {
  --brown: #55320c;
  --brown-2: #784b18;
  --gold: #fcb619;
  --gold-soft: #fff3cf;
  --ink: #1f1a14;
  --muted: #6d6257;
  --line: #e8ddcf;
  --paper: #fffaf2;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(85, 50, 12, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown);
}

.site-nav a { padding: 8px 0; border-bottom: 2px solid transparent; }
.site-nav a.active, .site-nav a:hover { border-color: var(--gold); }

.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
}

.header-cta {
  background: var(--brown);
  color: var(--white);
  font-size: 0.9rem;
}

.btn.primary { background: var(--brown); color: var(--white); }
.btn.secondary { background: var(--gold-soft); color: var(--brown); border: 1px solid #f3d67c; }
.btn.light { background: var(--white); color: var(--brown); }
.btn:hover, .header-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background: linear-gradient(115deg, #fffaf0 0%, #ffffff 54%, #fff6dc 100%);
}

.hero-copy { max-width: 610px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--brown-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3 { color: var(--brown); line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2rem, 4vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.55rem); }
h3 { font-size: 1.1rem; }

.hero p, .page-hero p, .section-heading p, .section-copy p { color: var(--muted); font-size: 1.03rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-media img, .page-hero img, .section-media img, .process-layout img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-strip div {
  background: var(--white);
  padding: 24px clamp(18px, 3vw, 36px);
}

.trust-strip strong { display: block; color: var(--brown); font-size: 1.45rem; }
.trust-strip span { color: var(--muted); font-size: 0.93rem; }

.section { padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px); }
.muted { background: var(--paper); }

.split, .page-hero, .process-layout, .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.reverse { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr); }
.section-copy { max-width: 680px; }
.text-link { color: var(--brown); font-weight: 900; border-bottom: 2px solid var(--gold); }

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.service-grid, .testimonial-grid, .three-column {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-grid article, .testimonial-grid blockquote, .three-column article, .service-list article, .values-card, .contact-card, .address-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(85, 50, 12, 0.07);
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brown);
  font-weight: 900;
  border-bottom: 3px solid var(--gold);
}

.service-grid p, .service-list p, .three-column p, .process-list p, blockquote p { color: var(--muted); margin-bottom: 0; }
.center-action { text-align: center; margin-top: 30px; }

.process-list {
  display: grid;
  gap: 18px;
}

.process-list div {
  padding: 18px 0 18px 18px;
  border-left: 4px solid var(--gold);
}

.process-list strong { color: var(--brown); font-size: 1.05rem; }

.testimonials .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
blockquote { margin: 0; }
cite { display: block; margin-top: 16px; color: var(--brown); font-style: normal; font-weight: 900; }

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: var(--white);
}

summary { cursor: pointer; color: var(--brown); font-weight: 900; }
details p { color: var(--muted); margin-bottom: 0; }

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(56px, 6vw, 82px);
  padding: clamp(28px, 5vw, 48px);
  background: var(--brown);
  color: var(--white);
  border-radius: 8px;
}

.contact-band h2, .contact-band .eyebrow { color: var(--white); }
.contact-band p { color: rgba(255,255,255,0.82); max-width: 720px; }

.page-hero {
  padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.page-hero div { max-width: 690px; }
.values-card ul { columns: 2; padding-left: 18px; color: var(--muted); }
.values-card li { margin-bottom: 10px; }
.three-column { grid-template-columns: repeat(3, 1fr); }

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-list article h2 { font-size: 1.25rem; }
.contact-hero { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr); }
.contact-card p { display: grid; gap: 4px; margin: 0 0 18px; color: var(--muted); }
.contact-card strong { color: var(--brown); }

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-form label { color: var(--brown); font-weight: 800; }
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.address-panel iframe {
  width: 100%;
  height: 340px;
  margin-top: 22px;
  border: 0;
  border-radius: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.2fr 0.8fr;
  gap: 28px;
  padding: 44px clamp(18px, 5vw, 72px);
  background: #2c1b0a;
  color: rgba(255,255,255,0.78);
}

.site-footer img { width: 260px; max-width: 100%; filter: brightness(0) invert(1); opacity: 0.95; }
.site-footer h3 { color: var(--gold); font-size: 1rem; margin-bottom: 10px; }
.site-footer p { margin: 0 0 8px; }
.site-footer a:hover { color: var(--gold); }

@media (max-width: 980px) {
  .site-header { gap: 14px; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav {
    position: absolute;
    inset: 100% 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .header-cta { display: none; }
  .hero, .split, .page-hero, .process-layout, .contact-grid, .reverse { grid-template-columns: 1fr; }
  .trust-strip, .service-grid, .testimonials .testimonial-grid, .three-column, .service-list, .site-footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .brand img { width: 230px; }
  .hero { padding-top: 34px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
  .trust-strip, .service-grid, .testimonials .testimonial-grid, .three-column, .service-list, .site-footer { grid-template-columns: 1fr; }
  .hero-actions, .contact-band { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .values-card ul { columns: 1; }
}
/* @vn-deploy:1784884946124 */
