*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green: #3a6b47; --green-dark: #2a5035; --green-light: #eef4f0;
    --black: #111; --charcoal: #2c2c2c; --gray: #6b6b6b;
    --light: #f8f8f6; --white: #fff; --border: #e0e0da;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); color: var(--charcoal); background: var(--white); overflow-x: hidden; }

  /* ── NAV ── */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 12px 5%; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: box-shadow .3s; }
  nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
  .nav-logo { display: flex; justify-content: center; }
  .nav-logo img { height: 72px; width: auto; }
  .nav-links { display: flex; gap: 32px; list-style: none; justify-content: flex-start; }
  .nav-links a { font-size: .82rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--charcoal); text-decoration: none; transition: color .2s; }
  .nav-links a:hover { color: var(--green); }
  .nav-right { display: flex; align-items: center; gap: 20px; justify-content: flex-end; }
  .nav-phone { font-size: .82rem; font-weight: 600; color: var(--charcoal); text-decoration: none; letter-spacing: .02em; }
  .nav-phone:hover { color: var(--green); }
  .nav-cta { background: var(--green); color: #fff; padding: 10px 22px; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background .2s; white-space: nowrap; }
  .nav-cta:hover { background: var(--green-dark); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; justify-self: end; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); }
  .mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 36px; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-size: 1.5rem; font-family: var(--serif); color: var(--charcoal); text-decoration: none; }
  .mobile-menu .m-phone { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; color: var(--green); }
  .mobile-menu .m-cta { background: var(--green); color: #fff; padding: 14px 40px; font-size: .95rem; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; border-radius: 2px; }
  .mobile-close { position: absolute; top: 20px; right: 5%; font-size: 2rem; cursor: pointer; background: none; border: none; color: var(--charcoal); }

  /* ── TOP BAR ── */
  .topbar { background: var(--black); color: #aaa; font-size: .75rem; padding: 8px 5%; display: flex; justify-content: space-between; align-items: center; letter-spacing: .04em; }
  .topbar a { color: #8ab89a; text-decoration: none; }
  .topbar span { display: flex; align-items: center; gap: 6px; }

  /* ── HERO ── */
  .hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 100px; }
  .hero-left { display: flex; flex-direction: column; justify-content: center; padding: 80px 6% 80px 7%; }
  .hero-logo-top { display: none; }
  .hero-logo-main { display: none; }
  .hero-tag { font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
  .hero-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--green); }
  .hero-h1 { font-family: var(--serif); font-size: clamp(2.8rem, 4.5vw, 5rem); font-weight: 300; line-height: 1.08; color: var(--black); margin-bottom: 24px; }
  .hero-h1 em { font-style: italic; color: var(--green); }
  .hero-sub { font-size: .97rem; line-height: 1.8; color: var(--gray); max-width: 430px; margin-bottom: 40px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary { background: var(--green); color: #fff; padding: 14px 30px; font-size: .83rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background .2s, transform .2s; display: inline-block; }
  .btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
  .btn-outline { border: 1.5px solid var(--charcoal); color: var(--charcoal); padding: 13px 30px; font-size: .83rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: .2s; display: inline-block; }
  .btn-outline:hover { background: var(--charcoal); color: #fff; }
  .hero-trust { display: flex; gap: 32px; margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--border); flex-wrap: wrap; }
  .trust-item .stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; color: var(--green); line-height: 1; }
  .trust-item .stat-label { font-size: .74rem; color: var(--gray); letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }
  .hero-right { position: relative; overflow: hidden; background: var(--light); }
  .hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 8s ease; }
  .hero-right:hover img { transform: scale(1.04); }
  .hero-badge { position: absolute; bottom: 0; left: 0; background: var(--green); color: #fff; padding: 16px 26px; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }

  /* ── SERVICES ── */
  .section { padding: 96px 7%; }
  .section-header { margin-bottom: 56px; }
  .section-tag { font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
  .section-tag::before { content: ''; display: block; width: 22px; height: 1px; background: var(--green); }
  .section-title { font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 3.4rem); font-weight: 300; color: var(--black); line-height: 1.15; margin-bottom: 14px; }
  .section-sub { color: var(--gray); line-height: 1.8; max-width: 520px; font-size: .93rem; }

  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
  .service-card { background: var(--light); padding: 40px 28px; position: relative; overflow: hidden; transition: background .3s; }
  .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
  .service-card:hover { background: #fff; box-shadow: 0 8px 40px rgba(0,0,0,.06); }
  .service-card:hover::after { transform: scaleX(1); }
  .svc-icon { width: 40px; height: 40px; margin-bottom: 20px; color: var(--green); }
  .svc-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .svc-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--black); margin-bottom: 10px; }
  .svc-desc { font-size: .85rem; color: var(--gray); line-height: 1.7; }

  /* ── SERVICE AREA BANNER ── */
  .area-banner { background: var(--green-light); border-left: 4px solid var(--green); padding: 24px 7%; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
  .area-banner-icon { font-size: 1.6rem; }
  .area-banner-text { font-size: .9rem; color: var(--charcoal); }
  .area-banner-text strong { color: var(--green-dark); }
  .area-banner-hours { margin-left: auto; font-size: .82rem; color: var(--gray); text-align: right; }
  .area-banner-hours strong { display: block; color: var(--charcoal); font-size: .9rem; }

  /* ── PROCESS ── */
  .process-section { background: var(--black); color: #fff; padding: 96px 7%; }
  .process-section .section-tag { color: #8ab89a; }
  .process-section .section-tag::before { background: #8ab89a; }
  .process-section .section-title { color: #fff; }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
  .process-steps::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 1px; background: rgba(255,255,255,.12); }
  .process-step { padding: 0 20px; text-align: center; }
  .step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin: 0 auto 22px; position: relative; z-index: 1; }
  .step-title { font-family: var(--serif); font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
  .step-desc { font-size: .83rem; color: #aaa; line-height: 1.65; }

  /* ── GALLERY ── */
  .gallery-section { padding: 96px 7%; }
  .gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 14px; flex-wrap: wrap; gap: 20px; }
  .phase-tabs { display: flex; gap: 0; margin-bottom: 36px; border-bottom: 2px solid var(--border); }
  .phase-tab { padding: 11px 26px; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; border: none; background: none; color: var(--gray); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: .2s; }
  .phase-tab.active { color: var(--green); border-bottom-color: var(--green); }
  .phase-panel { display: none; }
  .phase-panel.active { display: block; }
  .after-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 340px 280px; gap: 6px; }
  .after-grid .gi-main { grid-row: 1 / 3; }
  .gallery-item { overflow: hidden; position: relative; cursor: pointer; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 55%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 20px; }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-label { color: #fff; font-size: .77rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
  .phase-pill { position: absolute; top: 14px; left: 14px; color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; z-index: 1; }
  .pill-after { background: var(--green); }
  .pill-during { background: #9a6f20; }
  .during-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .during-grid .gallery-item { height: 300px; }

  /* ── ABOUT ── */
  .about-section { display: grid; grid-template-columns: 5fr 7fr; min-height: 560px; }
  .about-img { position: relative; overflow: hidden; background: #2b3040; display: flex; align-items: center; justify-content: center; }
  .about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; image-rendering: -webkit-optimize-contrast; }
  .about-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(58,107,71,.08) 0%, transparent 60%); }
  .about-content { padding: 80px 7%; display: flex; flex-direction: column; justify-content: center; background: var(--light); }
  .about-quote { font-family: var(--serif); font-size: clamp(1.25rem, 1.8vw, 1.7rem); font-weight: 300; color: var(--black); line-height: 1.55; margin-bottom: 28px; border-left: 3px solid var(--green); padding-left: 22px; font-style: italic; }
  .about-text { font-size: .9rem; color: var(--gray); line-height: 1.85; margin-bottom: 18px; }
  .about-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--black); }
  .about-role { font-size: .74rem; color: var(--green); letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
  .about-sig { display: flex; align-items: center; gap: 18px; margin-top: 28px; }
  .sig-line { width: 40px; height: 1px; background: var(--green); }

  /* ── WHY US ── */
  .why-section { padding: 80px 7%; }
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 56px; }
  .why-item { text-align: center; }
  .why-icon { font-size: 1.9rem; margin-bottom: 14px; }
  .why-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--black); margin-bottom: 8px; }
  .why-desc { font-size: .83rem; color: var(--gray); line-height: 1.7; }

  /* ── CTA BANNER ── */
  .cta-banner { background: var(--green); padding: 80px 7%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 36px; }
  .cta-text { font-family: var(--serif); font-size: clamp(1.7rem, 2.8vw, 2.8rem); font-weight: 300; color: #fff; line-height: 1.2; }
  .cta-text span { font-weight: 600; }
  .cta-sub { color: rgba(255,255,255,.75); font-size: .88rem; margin-top: 10px; }
  .btn-white { background: #fff; color: var(--green); padding: 15px 34px; font-size: .83rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: .2s; white-space: nowrap; display: inline-block; }
  .btn-white:hover { background: var(--light); transform: translateY(-1px); }
  .btn-call { border: 2px solid rgba(255,255,255,.5); color: #fff; padding: 14px 28px; font-size: .83rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: .2s; white-space: nowrap; display: inline-block; }
  .btn-call:hover { border-color: #fff; background: rgba(255,255,255,.1); }
  .cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

  /* ── CONTACT ── */
  .contact-section { padding: 96px 7%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .contact-info { display: flex; flex-direction: column; justify-content: center; }
  .contact-detail { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
  .contact-icon { width: 40px; height: 40px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
  .contact-label { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
  .contact-val { font-size: .92rem; color: var(--charcoal); }
  .contact-val a { color: var(--charcoal); text-decoration: none; }
  .contact-val a:hover { color: var(--green); }
  .social-row { display: flex; gap: 14px; margin-top: 32px; }
  .social-btn { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--border); padding: 9px 18px; border-radius: 2px; text-decoration: none; color: var(--charcoal); font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; transition: .2s; }
  .social-btn:hover { border-color: var(--green); color: var(--green); }
  .form-group { margin-bottom: 18px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  label { font-size: .73rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); display: block; margin-bottom: 7px; }
  input, select, textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 2px; font-family: var(--sans); font-size: .88rem; color: var(--charcoal); background: #fff; outline: none; transition: border .2s; -webkit-appearance: none; appearance: none; }
  input:focus, select:focus, textarea:focus { border-color: var(--green); }
  textarea { resize: vertical; min-height: 110px; }
  .form-submit { width: 100%; background: var(--green); color: #fff; border: none; padding: 15px; font-family: var(--sans); font-size: .83rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background .2s; }
  .form-submit:hover { background: var(--green-dark); }
  .form-note { font-size: .76rem; color: var(--gray); margin-top: 10px; text-align: center; }

  /* ── FOOTER ── */
  footer { background: var(--black); color: #aaa; padding: 56px 7% 28px; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 44px; }
  .footer-brand img { height: 70px; width: auto; margin-bottom: 18px; filter: none; }
  .footer-desc { font-size: .83rem; line-height: 1.8; color: #777; max-width: 260px; }
  .footer-phone { margin-top: 14px; font-size: .9rem; font-weight: 600; color: #8ab89a; }
  .footer-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .footer-col a { color: #777; text-decoration: none; font-size: .84rem; transition: color .2s; }
  .footer-col a:hover { color: var(--green); }
  .footer-bottom { border-top: 1px solid #1e1e1e; padding-top: 22px; display: flex; justify-content: space-between; font-size: .76rem; color: #444; flex-wrap: wrap; gap: 10px; }
  .footer-socials { display: flex; gap: 16px; }
  .footer-socials a { color: #444; text-decoration: none; font-size: .76rem; letter-spacing: .06em; transition: color .2s; }
  .footer-socials a:hover { color: var(--green); }

  /* ── ANIMATIONS ── */
  .fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fd1 { transition-delay: .1s; } .fd2 { transition-delay: .2s; } .fd3 { transition-delay: .3s; } .fd4 { transition-delay: .4s; } .fd5 { transition-delay: .5s; } .fd6 { transition-delay: .6s; } .fd7 { transition-delay: .7s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { height: 55vw; min-height: 340px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .process-steps::before { display: none; }
    .after-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 240px 240px; }
    .after-grid .gi-main { grid-row: 1; grid-column: 1 / 3; }
    .about-section { grid-template-columns: 1fr; }
    .about-img { height: 60vw; min-height: 320px; }
    .contact-section { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .topbar { display: none; }
    nav { padding: 14px 5%; }
    .nav-links, .nav-right { display: none; }
    .hamburger { display: flex; }
    nav { grid-template-columns: 1fr auto 1fr; }
    .nav-logo { grid-column: 2; }
    .hamburger { grid-column: 3; justify-self: end; }
    .section { padding: 68px 5%; }
    .hero-left { padding: 56px 5%; }
    .hero-trust { gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .process-section { padding: 68px 5%; }
    .process-steps { grid-template-columns: 1fr; }
    .gallery-section { padding: 68px 5%; }
    .gallery-header { flex-direction: column; align-items: flex-start; }
    .after-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .after-grid .gallery-item { height: 250px; }
    .after-grid .gi-main { grid-column: 1; grid-row: 1; }
    .during-grid { grid-template-columns: 1fr; }
    .during-grid .gallery-item { height: 250px; }
    .about-content { padding: 56px 5%; }
    .about-img { height: 75vw; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .cta-banner { padding: 56px 5%; flex-direction: column; align-items: flex-start; }
    .contact-section { padding: 68px 5%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    footer { padding: 44px 5% 22px; }
    .area-banner { padding: 20px 5%; }
    .area-banner-hours { margin-left: 0; text-align: left; }
  }

  /* VIDEO PROCESS SECTION */
  .video-process { padding: 0 0 96px; background: var(--off-white); }
  .vp-inner { display: block; width: 100%; }
  .vp-video { position: relative; overflow: hidden; background: #000; height: 380px; }
  .vp-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
  .vp-video-badge { position: absolute; bottom: 24px; left: 24px; background: var(--green); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 8px 16px; }
  .vp-steps { background: var(--black); color: #fff; display: grid; grid-template-columns: auto repeat(4,1fr); align-items: start; gap: 0 40px; padding: 52px 7%; width: 100%; margin: 0; }
  .vp-tag { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #8ab89a; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; grid-column: 1/-1; }
  .vp-tag::before { content: ''; width: 20px; height: 1px; background: #8ab89a; display: block; }
  .vp-heading { font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: 0; }
  .vp-step { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.1); }
  .vp-num { font-family: var(--serif); font-size: 1.6rem; color: #8ab89a; line-height: 1; font-weight: 300; margin-bottom: 10px; }
  .vp-step-title { font-size: .78rem; font-weight: 700; color: #fff; letter-spacing: .04em; margin-bottom: 6px; text-transform: uppercase; }
  .vp-step-desc { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.65; }
  @media (max-width: 768px) {
    .vp-video { height: 220px; }
    .vp-steps { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 5%; }
    .vp-heading { grid-column: 1/-1; }
  }
