  :root {
    --timber-bark: #2C1A0E;
    --forest-dark: #1A2E1A;
    --golden-grain: #C8882A;
    --cream-canvas: #FAF6EF;
    --sage-mist: #7A9E7E;
    --warm-stone: #B5A492;
    --charcoal-ink: #1C1C1C;
    --white-clean: #FFFFFF;
    --rust-accent: #A64B2A;
    --rust-hover: #8B3C22;
    --light-sage: #EEF4EE;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--cream-canvas);
    color: var(--charcoal-ink);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(250,246,239,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(44,26,14,0.1);
    transition: background 0.3s;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-mark {
    height: 42px;
    width: auto;
    color: var(--timber-bark);
    display: block;
  }

  .nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--timber-bark);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .nav-logo-text span {
    display: block;
    font-size: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--warm-stone);
    margin-top: 1px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal-ink);
    text-decoration: none;
    letter-spacing: 0.01em;
    opacity: 0.8;
    transition: opacity 0.2s;
  }

  .nav-links a:hover { opacity: 1; }

  .nav-cta {
    background: var(--rust-accent);
    color: white !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 1 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--rust-hover) !important; }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
  }

  .hero-photo {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(26,46,26,0.15) 0%, rgba(44,26,14,0.75) 65%, rgba(44,26,14,0.9) 100%),
      url('https://images.unsplash.com/photo-1625602812206-5ec545ca1231?w=1800&q=85') center/cover no-repeat;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 760px;
    animation: heroFadeUp 0.9s ease-out both;
  }

  @keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-overline {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--golden-grain);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .hero-overline::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--golden-grain);
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 6vw, 78px);
    font-weight: 700;
    color: var(--cream-canvas);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--golden-grain);
  }

  .hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(250,246,239,0.82);
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 40px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
  }

  .btn-primary {
    background: var(--rust-accent);
    color: white;
    padding: 15px 32px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover {
    background: var(--rust-hover);
    transform: translateY(-1px);
  }

  .btn-ghost {
    background: transparent;
    color: var(--cream-canvas);
    padding: 14px 30px;
    border-radius: 4px;
    border: 1.5px solid rgba(250,246,239,0.45);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-ghost:hover {
    border-color: rgba(250,246,239,0.85);
    background: rgba(250,246,239,0.08);
  }

  .hero-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }

  .trust-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(250,246,239,0.72);
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .trust-icon {
    width: 15px;
    height: 15px;
    opacity: 0.85;
    flex-shrink: 0;
  }

  .trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(250,246,239,0.22);
  }

  /* ─── SECTION COMMONS ─── */
  section {
    padding: 100px 80px;
  }

  .section-overline {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--golden-grain);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .section-overline::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--golden-grain);
  }

  .section-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    color: var(--timber-bark);
    letter-spacing: -0.025em;
    line-height: 1.12;
    max-width: 620px;
    margin-bottom: 16px;
  }

  .section-sub {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #5C4F44;
    max-width: 540px;
    line-height: 1.65;
    margin-bottom: 56px;
  }

  /* ─── SERVICES ─── */
  .services-section {
    background: var(--cream-canvas);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
  }

  .service-card {
    background: white;
    border: 1px solid rgba(181,164,146,0.25);
    border-radius: 4px;
    padding: 40px 36px;
    transition: box-shadow 0.25s, transform 0.2s;
    cursor: pointer;
  }

  .service-card:hover {
    box-shadow: 0 12px 40px rgba(44,26,14,0.1);
    transform: translateY(-3px);
  }

  .service-icon {
    width: 52px;
    height: 52px;
    background: rgba(200,136,42,0.10);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }

  .service-icon svg {
    width: 26px;
    height: 26px;
    color: var(--rust-accent);
  }

  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--timber-bark);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.2;
  }

  .service-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #5C4F44;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .service-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rust-accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }

  .service-link:hover { gap: 10px; }

  /* ─── PROJECTS ─── */
  .projects-section {
    background: var(--timber-bark);
    padding: 100px 80px;
  }

  .projects-section .section-h2 {
    color: var(--cream-canvas);
  }

  .projects-section .section-sub {
    color: rgba(250,246,239,0.65);
  }

  .projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }

  .project-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
  }

  .project-card.featured {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .project-card.tall {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .project-photo {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .project-card.featured .project-photo { height: 380px; }
  .project-card:not(.featured):not(.tall) .project-photo { height: 260px; }
  .project-card.tall .project-photo { height: 100%; min-height: 656px; }

  .project-card:hover .project-photo { transform: scale(1.03); }

  .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,46,26,0.85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .project-card:hover .project-overlay { opacity: 1; }

  .project-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 24px 16px;
    background: linear-gradient(to top, rgba(44,26,14,0.9), transparent);
  }

  .project-label h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.01em;
  }

  .project-label p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin-top: 3px;
  }

  .projects-cta {
    text-align: center;
    margin-top: 48px;
  }

  .btn-outline-cream {
    background: transparent;
    color: var(--cream-canvas);
    padding: 14px 36px;
    border-radius: 4px;
    border: 1.5px solid rgba(250,246,239,0.4);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-outline-cream:hover {
    border-color: rgba(250,246,239,0.85);
    background: rgba(250,246,239,0.08);
  }

  /* ─── WHY US ─── */
  .whyus-section {
    background: var(--white-clean);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 80px;
  }

  .whyus-photo-stack {
    position: relative;
    height: 540px;
  }

  .photo-main {
    width: 78%;
    height: 420px;
    border-radius: 4px;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=900&q=80') center/cover;
  }

  .photo-secondary {
    width: 52%;
    height: 260px;
    border-radius: 4px;
    object-fit: cover;
    position: absolute;
    bottom: 0; right: 0;
    background: url('https://images.unsplash.com/photo-1556912172-45b7abe8b7e1?w=700&q=80') center/cover;
    border: 6px solid var(--white-clean);
  }

  .stat-badge {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    background: var(--golden-grain);
    color: white;
    border-radius: 4px;
    padding: 18px 22px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 8px 30px rgba(200,136,42,0.35);
  }

  .stat-badge .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    display: block;
  }

  .stat-badge .stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
  }

  .whyus-content .section-h2 { max-width: 100%; }

  .whyus-body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #4A3F36;
    line-height: 1.75;
    margin-bottom: 44px;
  }

  .differentiators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .diff-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .diff-icon {
    width: 44px;
    height: 44px;
    background: rgba(200,136,42,0.10);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
  }

  .diff-icon svg {
    width: 22px;
    height: 22px;
    color: var(--rust-accent);
  }

  .diff-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--timber-bark);
    letter-spacing: -0.01em;
  }

  .diff-item p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #5C4F44;
    line-height: 1.65;
  }

  /* ─── PROCESS ─── */
  .process-section {
    background: var(--forest-dark);
    padding: 100px 80px;
  }

  .process-section .section-h2 { color: var(--cream-canvas); }
  .process-section .section-sub { color: rgba(250,246,239,0.6); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 16px;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: rgba(200,136,42,0.3);
    z-index: 0;
  }

  .process-step {
    position: relative;
    z-index: 1;
    padding: 0 16px;
    text-align: center;
  }

  .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--golden-grain);
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
  }

  .process-step h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--cream-canvas);
    letter-spacing: 0.02em;
    margin-bottom: 10px;
  }

  .process-step p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(250,246,239,0.55);
    line-height: 1.65;
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials-section {
    background: var(--cream-canvas);
    padding: 100px 80px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    background: white;
    border: 1px solid rgba(181,164,146,0.2);
    border-radius: 4px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .stars {
    color: var(--golden-grain);
    font-size: 16px;
    letter-spacing: 2px;
  }

  .testimonial-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-style: italic;
    color: var(--timber-bark);
    line-height: 1.65;
    flex: 1;
  }

  .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 16px;
    border-top: 1px solid rgba(181,164,146,0.2);
  }

  .author-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal-ink);
  }

  .author-detail {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--warm-stone);
  }

  .reviews-link {
    text-align: center;
    margin-top: 44px;
  }

  .google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--timber-bark);
    text-decoration: none;
    border: 1px solid rgba(44,26,14,0.15);
    padding: 12px 24px;
    border-radius: 4px;
    transition: border-color 0.2s;
  }

  .google-badge:hover { border-color: rgba(44,26,14,0.4); }
  .google-stars { color: var(--golden-grain); }

  /* ─── SERVICE AREA ─── */
  .area-section {
    background: var(--light-sage);
    padding: 80px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }

  .area-map {
    background: #C5D9C1;
    border-radius: 4px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .area-map-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=800&q=70') center/cover;
    opacity: 0.3;
  }

  .area-map-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .map-pin {
    font-size: 42px;
    display: block;
    margin-bottom: 8px;
  }

  .map-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest-dark);
  }

  .area-section .section-h2 { color: var(--timber-bark); }

  .area-body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #3A4A3A;
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
  }

  .city-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--forest-dark);
    background: rgba(26,46,26,0.1);
    padding: 6px 14px;
    border-radius: 3px;
    letter-spacing: 0.02em;
  }

  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .trust-badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #3A4A3A;
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 8px 14px;
    border-radius: 4px;
    border: 1px solid rgba(26,46,26,0.15);
  }

  /* ─── FINAL CTA ─── */
  .cta-section {
    position: relative;
    padding: 120px 80px;
    text-align: center;
    overflow: hidden;
  }

  .cta-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(44,26,14,0.88), rgba(26,46,26,0.92)),
      url('https://images.unsplash.com/photo-1416331108676-a22ccb276e35?w=1600&q=80') center/cover no-repeat;
  }

  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
  }

  .cta-section .section-overline {
    justify-content: center;
    color: var(--golden-grain);
  }

  .cta-section .section-overline::before { display: none; }

  .cta-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 700;
    color: var(--cream-canvas);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .cta-body {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(250,246,239,0.7);
    line-height: 1.65;
    margin-bottom: 44px;
  }

  .cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
  }

  .btn-primary-lg {
    background: var(--rust-accent);
    color: white;
    padding: 18px 42px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary-lg:hover {
    background: var(--rust-hover);
    transform: translateY(-2px);
  }

  .cta-fine {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(250,246,239,0.45);
    font-style: italic;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--charcoal-ink);
    color: rgba(255,255,255,0.7);
    padding: 72px 80px 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 48px;
    margin-bottom: 56px;
  }

  .footer-brand .nav-logo-text { color: white; font-size: 20px; }
  .footer-brand .nav-logo-text span { color: var(--warm-stone); }

  .footer-logo {
    height: 120px;
    width: auto;
    color: var(--cream-canvas);
    display: block;
    margin-bottom: 12px;
  }

  .footer-location {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--warm-stone);
    margin-bottom: 24px;
  }

  .footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-top: 14px;
    margin-bottom: 24px;
    max-width: 260px;
  }

  .social-links {
    display: flex;
    gap: 12px;
  }

  .social-link {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }

  .social-link:hover {
    border-color: rgba(200,136,42,0.5);
    background: rgba(200,136,42,0.1);
    color: var(--rust-accent);
  }

  .footer-col h5 {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: rgba(255,255,255,0.95); }

  .footer-contact-item {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .footer-contact-item .icon { opacity: 0.5; margin-top: 1px; }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
  }

  .footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
  .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

  /* ─── SECTION LABEL BANNER ─── */
  .section-label-banner {
    background: rgba(200,136,42,0.08);
    border: 1px dashed rgba(200,136,42,0.3);
    border-radius: 3px;
    padding: 6px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--golden-grain);
    display: inline-block;
    margin-bottom: 20px;
  }


/* ─── LEGAL / CONTENT PAGES ─── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 160px 24px 100px;
}

.legal-page .back-link {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--rust-accent);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.legal-page .back-link:hover {
  color: var(--rust-hover);
}

.legal-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--timber-bark);
  margin-bottom: 12px;
  line-height: 1.15;
}

.legal-page .legal-updated {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--warm-stone);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--timber-bark);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-page p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal-ink);
  margin-bottom: 16px;
}

.legal-page ul {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal-ink);
  margin: 0 0 16px 0;
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--rust-accent);
  text-decoration: underline;
}

.legal-page strong {
  color: var(--timber-bark);
}

.legal-page .todo-note {
  background: var(--light-sage);
  border-left: 4px solid var(--golden-grain);
  padding: 16px 20px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--timber-bark);
}

.legal-page .todo-note strong {
  color: var(--rust-accent);
}

/* ─── HAMBURGER / MOBILE MENU ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--timber-bark);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--timber-bark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 24px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}

.mobile-menu-phone {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cream-canvas);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--cream-canvas);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
}

.mobile-menu-links a {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--cream-canvas);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.mobile-menu-cta {
  background: var(--rust-accent);
  color: white;
  text-align: center;
  padding: 18px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  margin-top: 24px;
}

@media (min-width: 851px) {
  .mobile-menu { display: none; }
}

/* ═══════════════════ RESPONSIVE: TABLET ═══════════════════ */
@media (max-width: 1024px) {
  nav, section, .projects-section, .whyus-section, .process-section,
  .testimonials-section, .area-section, .cta-section, footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .differentiators { grid-template-columns: 1fr; }
}

/* ═══════════════════ RESPONSIVE: MOBILE ═══════════════════ */
@media (max-width: 850px) {

  /* --- Nav --- */
  nav {
    padding: 0 20px;
  }

  .nav-links-main { display: none; }
  .hamburger { display: flex; }

  .nav-logo-mark { height: 36px; }
  .nav-logo-text { font-size: 16px; }

  /* --- Hero --- */
  .hero { min-height: 600px; }

  .hero-content {
    padding: 0 20px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero-sub {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    justify-content: center;
    width: 100%;
  }

  .hero-trust {
    gap: 14px;
  }

  .trust-divider { display: none; }

  /* --- Section commons --- */
  section,
  .projects-section,
  .whyus-section,
  .process-section,
  .testimonials-section,
  .area-section,
  .cta-section,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  section { padding-top: 64px; padding-bottom: 64px; }

  .section-h2 { max-width: 100%; }
  .section-sub { max-width: 100%; margin-bottom: 40px; }

  /* --- Services --- */
  .services-grid { grid-template-columns: 1fr; }

  /* --- Projects --- */
  .projects-section { padding-top: 64px; padding-bottom: 64px; }

  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .project-card.featured,
  .project-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .project-card.featured .project-photo,
  .project-card:not(.featured):not(.tall) .project-photo,
  .project-card.tall .project-photo {
    height: 240px;
    min-height: 0;
  }

  /* --- Why Us --- */
  .whyus-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .whyus-photo-stack {
    height: 320px;
    margin-bottom: 8px;
  }

  .photo-main { width: 82%; height: 240px; }
  .photo-secondary { width: 56%; height: 160px; }

  .stat-badge {
    padding: 12px 16px;
  }

  .stat-badge .stat-num { font-size: 28px; }
  .stat-badge .stat-label { font-size: 9px; }

  /* --- Process --- */
  .process-section { padding-top: 64px; padding-bottom: 64px; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-steps::before { display: none; }

  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    padding: 0;
  }

  .step-num {
    flex-shrink: 0;
    margin: 0;
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  /* --- Testimonials --- */
  .testimonials-section { padding-top: 64px; padding-bottom: 64px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* --- Service Area --- */
  .area-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .area-map { height: 260px; order: -1; }

  /* --- Final CTA --- */
  .cta-section { padding-top: 80px; padding-bottom: 80px; }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cta-actions .btn-primary-lg,
  .cta-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* --- Footer --- */
  footer { padding-top: 56px; padding-bottom: 32px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-logo { height: 90px; }

  .footer-tagline { max-width: 100%; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }

  /* --- Legal pages --- */
  .legal-page { padding: 120px 20px 60px; }
}

@media (max-width: 420px) {
  .mobile-menu-links a { font-size: 28px; }
  .stat-badge { left: 50%; }
}
