  :root {
    --sand: #F4EFE7;
    --sand-deep: #EAE1D2;
    --cedar: #B4502E;
    --cedar-dark: #9A4226;
    --cedar-soft: #C96A47;
    --walnut: #4A342A;
    --walnut-light: #6B5346;
    --cream: #FBF8F2;
    --line: #DAD0BF;
    --shadow: rgba(74, 52, 42, 0.10);
    --shadow-strong: rgba(74, 52, 42, 0.18);
    --serif: 'Bitter', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    color: var(--walnut);
    background: var(--sand);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: var(--serif);
    color: var(--walnut);
    line-height: 1.18;
    font-weight: 700;
  }

  a { color: var(--cedar); text-decoration: none; }
  a:hover { text-decoration: underline; }

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

  .wrap {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 22px;
  }

  .section { padding: 64px 0; }

  /* ===== Buttons ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    padding: 16px 26px;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    text-align: center;
    min-height: 52px;
  }
  .btn-primary {
    background: var(--cedar);
    color: #fff;
    box-shadow: 0 8px 20px rgba(180, 80, 46, 0.28);
  }
  .btn-primary:hover {
    background: var(--cedar-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(180, 80, 46, 0.36);
  }
  .btn-outline {
    background: transparent;
    color: var(--walnut);
    border: 2px solid var(--walnut);
  }
  .btn-outline:hover {
    background: var(--walnut);
    color: var(--cream);
    text-decoration: none;
    transform: translateY(-2px);
  }
  .btn-ghost-light {
    background: rgba(251, 248, 242, 0.14);
    color: #fff;
    border: 2px solid rgba(251, 248, 242, 0.55);
  }
  .btn-ghost-light:hover {
    background: var(--cream);
    color: var(--walnut);
    text-decoration: none;
    transform: translateY(-2px);
  }

  /* ===== Header ===== */
  header.site {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(244, 239, 231, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 14px var(--shadow);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 76px;
    padding: 10px 22px;
    max-width: 1240px;
    margin: 0 auto;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  .brand:hover { text-decoration: none; }
  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: linear-gradient(145deg, var(--cedar), var(--cedar-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--serif);
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(180, 80, 46, 0.3);
    flex-shrink: 0;
  }
  .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
  .brand-name {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 19px;
    color: var(--walnut);
  }
  .brand-sub {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cedar);
    font-weight: 600;
  }

  nav.primary { display: flex; align-items: center; gap: 26px; }
  nav.primary .links { display: flex; align-items: center; gap: 22px; }
  nav.primary .links a {
    color: var(--walnut);
    font-weight: 500;
    font-size: 15px;
    padding: 6px 2px;
    position: relative;
  }
  nav.primary .links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--cedar);
    transition: width .2s ease;
  }
  nav.primary .links a:hover { text-decoration: none; }
  nav.primary .links a:hover::after { width: 100%; }

  .header-cta { display: flex; align-items: center; gap: 14px; }
  .call-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 15px;
    color: var(--walnut);
    white-space: nowrap;
  }
  .call-link svg { width: 17px; height: 17px; }
  .header-cta .btn { padding: 13px 20px; min-height: 46px; font-size: 15px; }

  .hamburger {
    display: none;
    background: none;
    border: 2px solid var(--line);
    border-radius: 10px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--walnut);
  }
  .hamburger svg { width: 24px; height: 24px; }

  .mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    background: var(--cream);
    padding: 14px 22px 22px;
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a.m-link {
    display: block;
    padding: 13px 6px;
    font-weight: 600;
    font-size: 17px;
    color: var(--walnut);
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav a.m-link:hover { text-decoration: none; color: var(--cedar); }
  .mobile-nav .m-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
  .mobile-nav .m-actions .btn { width: 100%; }

  /* ===== Hero ===== */
  .hero {
    background:
      radial-gradient(circle at 85% 12%, rgba(201, 106, 71, 0.18), transparent 48%),
      linear-gradient(160deg, var(--sand) 0%, var(--sand-deep) 100%);
    padding: 70px 0 64px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cedar);
    background: rgba(180, 80, 46, 0.10);
    padding: 8px 15px;
    border-radius: 999px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(32px, 5vw, 50px);
    margin-bottom: 22px;
    letter-spacing: -0.01em;
  }
  .hero .subhead {
    font-size: 18px;
    color: var(--walnut-light);
    margin-bottom: 30px;
    max-width: 560px;
  }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
  .hero-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--walnut);
    font-size: 16px;
  }
  .hero-call svg { width: 18px; height: 18px; }

  /* Photo placeholders */
  .photo {
    position: relative;
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(251, 248, 242, 0.35), transparent 60%),
      linear-gradient(150deg, var(--cedar-soft) 0%, var(--cedar-dark) 55%, var(--walnut) 100%);
    box-shadow: 0 18px 40px var(--shadow-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
  }
  .photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 22px);
    opacity: 0.5;
  }
  .photo .label {
    position: relative;
    color: rgba(255,255,255,0.92);
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 24px;
  }
  .photo .label svg { width: 38px; height: 38px; opacity: 0.85; }
  .hero-photo { min-height: 420px; }

  /* ===== Trust strip ===== */
  .trust {
    background: var(--walnut);
    color: var(--cream);
  }
  .trust-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 30px 0;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--cream);
  }
  .trust-item .ic {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(201, 106, 71, 0.22);
    color: var(--cedar-soft);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .trust-item .ic svg { width: 22px; height: 22px; }

  /* ===== Section heads ===== */
  .sec-head { max-width: 720px; margin-bottom: 44px; }
  .sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .sec-head .kicker {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cedar);
    margin-bottom: 12px;
  }
  .sec-head h2 {
    font-size: clamp(27px, 3.6vw, 38px);
    margin-bottom: 16px;
  }
  .sec-head p { font-size: 17px; color: var(--walnut-light); }

  /* ===== Services ===== */
  .services { background: var(--cream); }
  .svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
  .svc-card {
    background: var(--sand);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px 28px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    position: relative;
    overflow: hidden;
  }
  .svc-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--cedar), var(--cedar-soft));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
  }
  .svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px var(--shadow);
    border-color: var(--cedar-soft);
  }
  .svc-card:hover::before { transform: scaleX(1); }
  .svc-icon {
    width: 54px;
    height: 54px;
    border-radius: 13px;
    background: linear-gradient(145deg, rgba(180, 80, 46, 0.14), rgba(201, 106, 71, 0.20));
    color: var(--cedar);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .svc-icon svg { width: 28px; height: 28px; }
  .svc-card h3 { font-size: 22px; margin-bottom: 12px; }
  .svc-card p { font-size: 15.5px; color: var(--walnut-light); margin-bottom: 18px; }
  .svc-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 15px;
    color: var(--cedar);
  }
  .svc-link svg { width: 16px; height: 16px; transition: transform .18s ease; }
  .svc-card:hover .svc-link svg { transform: translateX(4px); }

  .svc-photo { min-height: 300px; margin-top: 34px; border-radius: 18px; }

  /* ===== Why ===== */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .why-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 26px;
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .why-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px var(--shadow); }
  .why-num {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--cedar);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 16px;
    box-shadow: 0 5px 14px rgba(180, 80, 46, 0.3);
  }
  .why-card h3 { font-size: 19px; margin-bottom: 9px; }
  .why-card p { font-size: 15px; color: var(--walnut-light); }

  /* ===== Service area ===== */
  .area { background: var(--sand-deep); }
  .area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
  }
  .area-grid .copy p { font-size: 17px; color: var(--walnut-light); margin-bottom: 24px; }
  .area-photo { min-height: 340px; }

  /* ===== How we work ===== */
  .how { background: var(--cream); }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    counter-reset: step;
  }
  .step {
    position: relative;
    padding-top: 14px;
  }
  .step-num {
    font-family: var(--serif);
    font-weight: 800;
    font-size: 46px;
    color: rgba(180, 80, 46, 0.22);
    line-height: 1;
    margin-bottom: 8px;
  }
  .step-bar {
    width: 46px; height: 4px;
    border-radius: 4px;
    background: var(--cedar);
    margin-bottom: 16px;
  }
  .step h3 { font-size: 19px; margin-bottom: 9px; }
  .step p { font-size: 15px; color: var(--walnut-light); }

  /* ===== Testimonials ===== */
  .reviews { background: var(--walnut); color: var(--cream); }
  .reviews .sec-head h2 { color: var(--cream); }
  .reviews .sec-head .kicker { color: var(--cedar-soft); }
  .reviews .sec-head p { color: rgba(251, 248, 242, 0.82); }
  .quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .quote-card {
    background: rgba(251, 248, 242, 0.06);
    border: 1px solid rgba(251, 248, 242, 0.16);
    border-radius: 16px;
    padding: 30px 26px;
    position: relative;
  }
  .quote-mark {
    font-family: var(--serif);
    font-size: 64px;
    line-height: 0.6;
    color: var(--cedar-soft);
    display: block;
    height: 30px;
    margin-bottom: 8px;
  }
  .quote-card .stars { color: #E6A24B; letter-spacing: 3px; margin-bottom: 14px; font-size: 16px; }
  .quote-card p {
    font-size: 15.5px;
    color: rgba(251, 248, 242, 0.92);
    font-style: italic;
    font-family: var(--serif);
    line-height: 1.55;
  }

  /* ===== Final CTA ===== */
  .final {
    background:
      radial-gradient(circle at 15% 20%, rgba(201, 106, 71, 0.20), transparent 50%),
      linear-gradient(150deg, var(--cedar) 0%, var(--cedar-dark) 100%);
    color: #fff;
  }
  .final-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
    align-items: center;
  }
  .final h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
  .final p { color: rgba(255,255,255,0.92); font-size: 18px; margin-bottom: 28px; max-width: 540px; }
  .final-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
  .final-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #fff;
    font-size: 17px;
  }
  .final-call svg { width: 19px; height: 19px; }
  .final-photo { min-height: 320px; }
  .final-photo.alt {
    background:
      linear-gradient(135deg, rgba(251, 248, 242, 0.30), transparent 60%),
      linear-gradient(150deg, var(--walnut) 0%, #2f211a 100%);
  }

  /* ===== Footer ===== */
  footer.site {
    background: #3a2820;
    color: rgba(251, 248, 242, 0.78);
    padding: 56px 0 28px;
    font-size: 15px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(251, 248, 242, 0.12);
  }
  .footer-brand .brand-name { color: var(--cream); }
  footer .brand-mark { box-shadow: none; }
  .footer-brand p { margin-top: 16px; color: rgba(251, 248, 242, 0.7); max-width: 360px; }
  .footer-brand .lic { margin-top: 12px; font-size: 13.5px; color: rgba(251, 248, 242, 0.6); }
  .footer-col h4 {
    color: var(--cream);
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 700;
  }
  .footer-col a, .footer-col span {
    display: block;
    color: rgba(251, 248, 242, 0.78);
    padding: 5px 0;
  }
  .footer-col a:hover { color: var(--cedar-soft); text-decoration: none; }
  .footer-contact a { display: inline-flex; align-items: center; gap: 8px; }
  .footer-contact svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--cedar-soft); }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding-top: 24px;
    font-size: 13.5px;
    color: rgba(251, 248, 242, 0.6);
  }
  .footer-bottom a { color: rgba(251, 248, 242, 0.6); }
  .footer-bottom a:hover { color: var(--cedar-soft); }

  /* ===== Responsive ===== */
  @media (max-width: 960px) {
    nav.primary .links { display: none; }
    .header-cta .call-link { display: none; }
    .hamburger { display: flex; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-photo { min-height: 320px; order: -1; }
    .area-grid, .final-grid { grid-template-columns: 1fr; gap: 32px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
  }

  @media (max-width: 640px) {
    body { font-size: 16px; }
    .section { padding: 48px 0; }
    .svc-grid, .trust-inner, .why-grid, .quote-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero { padding: 48px 0 44px; }
    .hero-actions .btn, .final-actions .btn { width: 100%; }
    .hero-actions, .final-actions { gap: 16px; }
    .brand-sub { display: none; }
    .header-cta .btn span.long { display: none; }
  }
