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

  :root {
    --navy: #1A2E1A;
    --cotton: #F2F7F2;
    --accent: #3A7D3A;
    --slate: #4E6B4E;
    --light-slate: #7A9A7A;
    --white: #FFFFFF;
    --red: #1A2E1A;
    --gold: #3A7D3A;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cotton);
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    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: 18px 48px;
    background: rgba(26,46,26,0.97);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 3px;
    color: var(--cotton);
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .logo span { color: rgba(247,246,244,0.45); }
  nav ul { display: flex; gap: 36px; list-style: none; }
  nav ul a {
    color: var(--light-slate);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  nav ul a:hover { color: var(--cotton); }
  .nav-cta {
    background: #3A7D3A;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 2px;
    letter-spacing: 1.5px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #2d6b2d !important; color: var(--white) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 48px 80px;
  }
  /* Mesh/halftone background pattern */
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    animation: meshDrift 20s linear infinite;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--cotton));
  }
  @keyframes meshDrift {
    0% { background-position: 0 0; }
    100% { background-position: 28px 28px; }
  }
  .hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .hero-text {}
  .hero-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; color: rgba(247,246,244,0.5);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content: ''; display: block;
    width: 32px; height: 2px; background: rgba(247,246,244,0.3);
  }
  .hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 10vw, 130px);
    line-height: 0.9;
    color: var(--cotton);
    letter-spacing: 2px;
    margin-bottom: 28px;
  }
  .hero-headline .accent { color: var(--cotton); display: block; }
  .hero-headline .outline {
    -webkit-text-stroke: 1.5px rgba(247,246,244,0.25);
    color: transparent;
  }
  .hero-sub {
    font-size: 17px; line-height: 1.65;
    color: var(--light-slate);
    max-width: 420px;
    margin-bottom: 40px;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: #3A7D3A; color: var(--white);
    padding: 16px 36px; border-radius: 2px;
    font-size: 13px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none;
    transition: transform 0.15s, background 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: #2d6b2d; transform: translateY(-2px); }
  .btn-outline {
    border: 1px solid rgba(247,246,244,0.2); color: var(--cotton);
    padding: 16px 36px; border-radius: 2px;
    font-size: 13px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: rgba(247,246,244,0.6); color: var(--cotton); }

  /* Hero visual — stacked gear/thread graphic */
  .hero-visual {
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .press-frame {
    width: 360px; height: 360px;
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .press-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px,
      transparent 1px, transparent 12px
    );
  }
  .press-inner {
    width: 230px; height: 230px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    position: relative;
    box-shadow:
      0 0 0 1.5px rgba(255,255,255,0.12),
      0 0 0 12px rgba(58,125,58,0.06),
      0 0 60px rgba(58,125,58,0.25),
      0 0 100px rgba(20,145,140,0.10);
    animation: pressFloat 4s ease-in-out infinite;
    overflow: hidden;
    backdrop-filter: blur(2px);
  }
  /* outer ring pulse */
  .press-inner::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1.5px solid rgba(58,125,58,0.2);
    animation: ringPulse 3s ease-in-out infinite;
  }
  .press-inner::after {
    content: '';
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    border: 1px solid rgba(58,125,58,0.1);
    animation: ringPulse 3s ease-in-out infinite 0.5s;
  }
  @keyframes ringPulse {
    0%,100% { opacity: 0.5; transform: scale(1); }
    50%     { opacity: 1;   transform: scale(1.04); }
  }
  .frog-svg-wrap {
    width: 190px; height: 190px;
    display: flex; align-items: center; justify-content: center;
    filter:
      drop-shadow(0 2px 12px rgba(20,145,140,0.45))
      drop-shadow(0 0 24px rgba(92,163,69,0.25));
    animation: frogBreathe 3.5s ease-in-out infinite;
    position: relative; z-index: 2;
  }
  .frog-svg-wrap svg {
    width: 100%; height: 100%;
  }
  @keyframes frogBreathe {
    0%,100% { transform: scale(1)    rotate(0deg); }
    35%     { transform: scale(1.06) rotate(-2.5deg); }
    65%     { transform: scale(1.04) rotate(1.5deg); }
  }
  @keyframes pressFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .press-stat {
    position: absolute;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 20px;
    border-radius: 2px;
  }
  .press-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px; color: var(--cotton);
    line-height: 1;
  }
  .press-stat-label {
    font-size: 10px; color: var(--light-slate);
    letter-spacing: 1.5px; text-transform: uppercase;
  }
  .stat-a { top: 20px; right: -20px; }
  .stat-b { bottom: 40px; left: -24px; }
  .corner-tag {
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px; letter-spacing: 3px;
    color: rgba(255,255,255,0.15); text-transform: uppercase;
  }
  .corner-tag.tl { top: 14px; left: 14px; }
  .corner-tag.br { bottom: 14px; right: 14px; }

  /* ── MARQUEE ── */
  .marquee-wrap {
    background: #122012;
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .marquee-track {
    display: flex; gap: 0;
    animation: marqueeScroll 28s linear infinite;
    width: max-content;
  }
  .marquee-item {
    font-size: 11px; font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; color: var(--slate);
    padding: 0 40px;
    white-space: nowrap;
    display: flex; align-items: center; gap: 40px;
  }
  .marquee-item::after {
    content: '✦';
    color: var(--accent);
    font-size: 8px;
  }
  @keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── SERVICES ── */
  .section { padding: 100px 48px; max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: 10px; font-weight: 700; letter-spacing: 4px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-label::after {
    content: ''; flex: 1;
    height: 1px; background: rgba(26,46,26,0.12);
    max-width: 60px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 5vw, 72px);
    color: var(--navy);
    line-height: 1;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 16px; color: var(--slate);
    max-width: 480px; line-height: 1.65;
    margin-bottom: 60px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(26,46,26,0.1);
    border: 1px solid rgba(26,46,26,0.1);
  }
  /* 4 cards — 2 per row, perfectly balanced */
  .services-grid .service-card {
    grid-column: span 2;
  }
  .service-card {
    background: var(--cotton);
    padding: 48px 36px;
    transition: transform 0.15s, background 0.2s, box-shadow 0.15s;
    cursor: default;
    border: 1px solid transparent;
  }
  .service-card:hover {
    background: var(--white);
    transform: scale(0.98);
    box-shadow: inset 0 0 0 1.5px #3A7D3A;
    z-index: 2;
    position: relative;
  }
  .service-icon {
    width: 52px; height: 52px;
    background: var(--navy);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    transition: background 0.2s;
  }
  .service-card:hover .service-icon { background: var(--navy); }
  .service-icon svg { fill: var(--cotton); }
  .service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px; letter-spacing: 1px;
    color: var(--navy); margin-bottom: 12px;
  }
  .service-desc {
    font-size: 14px; color: var(--slate);
    line-height: 1.7; margin-bottom: 20px;
  }
  .service-tag {
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--slate);
  }

  /* ── WHY US ── */
  .why-section {
    background: var(--navy);
    padding: 100px 48px;
  }
  .why-inner { max-width: 1200px; margin: 0 auto; }
  .why-section .section-label { color: rgba(180,220,180,0.5); }
  .why-section .section-label::after { background: rgba(245,240,232,0.15); }
  .why-section .section-title { color: var(--cotton); }
  .why-section .section-sub { color: var(--light-slate); }

  .why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  }
  .why-card {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 28px;
    transition: border-color 0.2s;
  }
  .why-card:hover { border-color: rgba(247,246,244,0.5); }
  .why-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px; color: rgba(255,255,255,0.1);
    line-height: 1; margin-bottom: 12px;
  }
  .why-title {
    font-size: 16px; font-weight: 700;
    color: var(--cotton); margin-bottom: 10px;
  }
  .why-desc { font-size: 13px; color: var(--light-slate); line-height: 1.7; }

  /* ── GALLERY ── */
  .gallery-section { padding: 100px 48px; }
  .gallery-inner { max-width: 1200px; margin: 0 auto; }
  .gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 4px;
    margin-top: 48px;
  }
  .gallery-item {
    overflow: hidden;
    position: relative;
    background: var(--navy);
  }
  .gallery-item.tall { grid-row: span 2; }
  /* ── Gallery images — easy to customize ── */
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s ease, filter 0.35s ease;
    filter: saturate(0.9);
  }
  .gallery-item:hover img {
    transform: scale(1.07);
    filter: saturate(1.1) brightness(1.04);
  }
  .gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(26,46,26,0);
    transition: background 0.35s ease;
    pointer-events: none;
    z-index: 1;
  }
  .gallery-item:hover::after { background: rgba(26,46,26,0.15); }
  .gallery-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(26,46,26,0.92) 0%, transparent 100%);
    padding: 36px 16px 14px;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,0.95);
    transform: translateY(6px);
    transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
    z-index: 2;
  }
  .gallery-item:hover .gallery-label { transform: translateY(0); }

  /* ── Gallery loading shimmer ── */
  .gallery-item::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.16) 42%, rgba(255,255,255,0) 64%);
    background-size: 200% 100%;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
  }
  .gallery-item.g-loading::before {
    opacity: 1;
    animation: gShimmer 1.3s ease-in-out infinite;
  }
  @keyframes gShimmer {
    0%   { background-position: 150% 0; }
    100% { background-position: -50% 0; }
  }

  /* ── Gallery "View Full Gallery" CTA ── */
  .gallery-cta-wrap { text-align: center; margin-top: 44px; }
  .gallery-viewall {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 34px;
    border: 1.5px solid rgba(26,46,26,0.18);
    border-radius: 2px;
    font-size: 13px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--navy);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease, border-color 0.35s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1);
  }
  .gallery-viewall::before {
    content: '';
    position: absolute; inset: 0;
    background: #3A7D3A;
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
    z-index: -1;
  }
  .gallery-viewall:hover {
    color: var(--white);
    border-color: #3A7D3A;
    transform: translateY(-3px);
  }
  .gallery-viewall:hover::before { transform: scaleX(1); }
  .gallery-viewall-arrow {
    display: flex; align-items: center;
    animation: galleryArrowNudge 1.6s ease-in-out infinite;
  }
  .gallery-viewall:hover .gallery-viewall-arrow {
    animation: none;
    transform: translateX(4px);
    transition: transform 0.3s ease;
  }
  @keyframes galleryArrowNudge {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(6px); }
  }

  /* ── PROCESS ── */
  .process-section {
    background: var(--white);
    padding: 100px 48px;
    border-top: 1px solid rgba(26,46,26,0.08);
  }
  .process-inner { max-width: 1200px; margin: 0 auto; }
  .process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    position: relative; margin-top: 60px;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 36px; left: 10%; right: 10%;
    height: 1px;
    background: repeating-linear-gradient(
      to right, rgba(26,46,26,0.12) 0, rgba(26,46,26,0.12) 6px, transparent 6px, transparent 14px
    );
  }
  .process-step { padding: 0 24px; text-align: center; }
  .step-dot {
    width: 72px; height: 72px;
    background: var(--cotton);
    border: 1px solid rgba(26,46,26,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px; color: var(--navy);
    position: relative; z-index: 2;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .process-step:hover .step-dot {
    background: #3A7D3A; color: var(--white); border-color: #3A7D3A;
  }
  .step-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; color: var(--navy);
    letter-spacing: 1px; margin-bottom: 10px;
  }
  .step-desc { font-size: 13px; color: var(--slate); line-height: 1.65; }

  /* ── CTA ── */
  .cta-section {
    background: var(--navy);
    padding: 100px 48px;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 24px 24px;
  }
  .cta-inner {
    max-width: 900px; margin: 0 auto;
    text-align: center; position: relative; z-index: 2;
  }
  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 100px);
    color: var(--white);
    line-height: 0.9;
    letter-spacing: 2px;
    margin-bottom: 24px;
  }
  .cta-title .ghost {
    -webkit-text-stroke: 2px rgba(255,255,255,0.35);
    color: transparent;
  }
  .cta-sub {
    font-size: 17px; color: rgba(255,255,255,0.8);
    max-width: 480px; margin: 0 auto 44px;
    line-height: 1.65;
  }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    background: var(--white); color: #1A2E1A;
    padding: 18px 44px; border-radius: 2px;
    font-size: 13px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none;
    transition: transform 0.15s;
    display: inline-block;
  }
  .btn-white:hover { transform: translateY(-2px); }
  .btn-ghost-white {
    border: 1.5px solid rgba(255,255,255,0.5); color: var(--white);
    padding: 18px 44px; border-radius: 2px;
    font-size: 13px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none;
    transition: border-color 0.2s;
    display: inline-block;
  }
  .btn-ghost-white:hover { border-color: var(--white); }

  /* ── CONTACT ── */
  .contact-section {
    padding: 100px 48px;
    background: var(--navy);
  }
  .contact-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }
  .contact-section .section-label { color: rgba(180,220,180,0.6); }
  .contact-section .section-label::after { background: rgba(245,240,232,0.15); }
  .contact-section .section-title { color: var(--cotton); }
  .contact-section .section-sub { color: var(--light-slate); }
  .contact-items { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
  .contact-item {
    display: flex; gap: 20px; align-items: flex-start;
  }
  .contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(245,240,232,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
  }
  .contact-icon svg { fill: rgba(247,246,244,0.6); }
  .contact-label {
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(247,246,244,0.45); margin-bottom: 4px;
  }
  .contact-value { font-size: 15px; color: var(--cotton); }

  /* Form */
  .contact-form { display: flex; flex-direction: column; gap: 0; }
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--light-slate);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(245,240,232,0.06);
    border: 1px solid rgba(245,240,232,0.12);
    color: var(--cotton);
    padding: 14px 18px;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: rgba(247,246,244,0.4);
  }
  .form-group select option { background: var(--navy); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--slate); }
  .form-submit {
    background: #3A7D3A; color: var(--white);
    padding: 16px 36px; border: none; border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
  }
  .form-submit:hover { background: #2d6b2d; transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: #0d1a0d;
    padding: 40px 48px;
    display: flex; align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 3px; color: var(--cotton);
  }
  .footer-logo span { color: rgba(247,246,244,0.45); }
  .footer-copy {
    font-size: 12px; color: var(--slate);
  }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a {
    font-size: 11px; color: var(--slate);
    text-decoration: none; letter-spacing: 1px;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--accent); }

  /* ── RESPONSIVE ── */

  /* Gallery image hover */
  .gallery-item:hover img { transform: scale(1.05); }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    background: var(--white);
    padding: 100px 48px;
    border-top: 1px solid rgba(26,46,26,0.07);
  }
  .testimonials-inner { max-width: 1200px; margin: 0 auto; }
  .tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
  }
  .tcard {
    background: var(--cotton);
    border: 1px solid rgba(26,46,26,0.08);
    border-radius: 4px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .tcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26,46,26,0.08);
  }
  .tquote {
    font-size: 14px;
    line-height: 1.75;
    color: var(--slate);
    font-style: italic;
    flex: 1;
    position: relative;
    padding-top: 28px;
  }
  .tquote::before {
    content: '"';
    position: absolute;
    top: -8px; left: -4px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1;
    color: var(--green, #3A7D3A);
    opacity: 0.2;
  }
  .tauthor {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .tavatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: rgba(180,220,180,0.8);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; letter-spacing: 1px;
    flex-shrink: 0;
  }
  .tname {
    font-size: 13px; font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
  }
  .trole {
    font-size: 11px;
    color: var(--light-slate);
    letter-spacing: 0.3px;
  }
  .tstars {
    margin-left: auto;
    color: #3A7D3A;
    font-size: 13px;
    letter-spacing: 1px;
    flex-shrink: 0;
  }

  @media (max-width: 900px) {
    .tgrid { grid-template-columns: 1fr; }
    .testimonials-section { padding: 70px 24px; }
  }

  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    nav ul { display: none; }
    .hero { padding: 100px 24px 60px; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .section { padding: 70px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-section { padding: 70px 24px; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item.tall { grid-row: auto; }
    .process-section { padding: 70px 24px; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .cta-section { padding: 70px 24px; }
    .contact-section { padding: 70px 24px; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }


  /* ══════════════════════════════════════
     HAMBURGER MENU + BACK TO TOP
  ══════════════════════════════════════ */

  /* ── Hamburger button ── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    cursor: pointer;
    padding: 4px;
    border: none;
    background: none;
    z-index: 200;
    flex-shrink: 0;
  }
  .hamburger span {
    display: block;
    width: 100%; height: 2px;
    background: var(--cotton);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
                opacity   0.25s ease,
                width     0.3s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0; width: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Mobile drawer ── */
  .mobile-drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: #0d1a0d;
    z-index: 150;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
    display: flex;
    flex-direction: column;
    padding: 88px 36px 48px;
    border-left: 1px solid rgba(255,255,255,0.07);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }
  .mobile-drawer.open {
    transform: translateX(0);
  }
  .mobile-drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 140;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
  }
  .mobile-drawer-overlay.open {
    opacity: 1; pointer-events: all;
  }
  .drawer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 3px;
    color: var(--cotton);
    margin-bottom: 40px;
    display: flex; align-items: center; gap: 10px;
  }
  .drawer-logo span { color: rgba(180,220,180,0.45); }
  .drawer-nav {
    display: flex; flex-direction: column; gap: 4px;
    flex: 1;
  }
  .drawer-nav a {
    font-size: 28px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.22s ease, padding-left 0.22s ease;
    display: block;
  }
  .drawer-nav a:hover {
    color: var(--cotton);
    padding-left: 10px;
  }
  .drawer-nav a.drawer-cta {
    margin-top: 20px;
    background: #3A7D3A;
    color: var(--white) !important;
    padding: 14px 28px !important;
    border-radius: 3px;
    text-align: center;
    font-size: 20px;
    border: none;
    transition: background 0.22s ease !important;
  }
  .drawer-nav a.drawer-cta:hover {
    background: #2d6b2d !important;
    padding-left: 28px !important;
  }
  .drawer-footer {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* Stagger animation for drawer links */
  .drawer-nav a {
    opacity: 0;
    transform: translateX(24px);
    transition: color 0.22s ease, padding-left 0.22s ease,
                opacity 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  .mobile-drawer.open .drawer-nav a:nth-child(1) { opacity:1; transform:translateX(0); transition-delay:0.12s; }
  .mobile-drawer.open .drawer-nav a:nth-child(2) { opacity:1; transform:translateX(0); transition-delay:0.18s; }
  .mobile-drawer.open .drawer-nav a:nth-child(3) { opacity:1; transform:translateX(0); transition-delay:0.24s; }
  .mobile-drawer.open .drawer-nav a:nth-child(4) { opacity:1; transform:translateX(0); transition-delay:0.30s; }
  .mobile-drawer.open .drawer-nav a:nth-child(5) { opacity:1; transform:translateX(0); transition-delay:0.38s; }

  /* ── Back to Top button ── */
  .back-to-top {
    position: fixed;
    bottom: 28px; left: 28px;
    width: 46px; height: 46px;
    background: rgba(26,46,26,0.92);
    border: 1px solid rgba(58,125,58,0.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 98;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1),
                background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    pointer-events: none;
    backdrop-filter: blur(6px);
    text-decoration: none;
  }
  .back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .back-to-top:hover {
    background: #3A7D3A;
    border-color: #3A7D3A;
    box-shadow: 0 6px 20px rgba(58,125,58,0.4);
    transform: translateY(-3px);
  }
  .back-to-top svg {
    fill: rgba(180,220,180,0.8);
    transition: fill 0.22s ease, transform 0.22s ease;
  }
  .back-to-top:hover svg {
    fill: var(--white);
    transform: translateY(-2px);
  }

  /* ── Scroll progress bar ── */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #3A7D3A, #7DC87D, #3A7D3A);
    background-size: 200% 100%;
    z-index: 999;
    transition: width 0.1s linear;
    animation: progressShimmer 2s linear infinite;
  }
  @keyframes progressShimmer {
    0%   { background-position: 0% 0; }
    100% { background-position: 200% 0; }
  }

  /* ── Show hamburger on mobile ── */
  @media (max-width: 900px) {
    .hamburger { display: flex; }
    nav ul { display: none !important; }
    .back-to-top { bottom: 16px; left: 16px; }
  }


  /* ── Contact form spacing fix ── */
  .contact-form form .form-row,
  .contact-form form .form-group {
    width: 100%;
  }
  .contact-form form .form-group label {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--light-slate);
    display: block; margin-bottom: 8px;
  }
  .contact-form form .form-group input,
  .contact-form form .form-group select,
  .contact-form form .form-group textarea {
    width: 100%;
    background: rgba(245,240,232,0.06);
    border: 1px solid rgba(245,240,232,0.12);
    color: var(--cotton);
    padding: 14px 18px;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
  }
  .contact-form form .form-group input::placeholder,
  .contact-form form .form-group textarea::placeholder {
    color: var(--slate);
  }
  .contact-form form .form-group input:focus,
  .contact-form form .form-group select:focus,
  .contact-form form .form-group textarea:focus {
    border-color: rgba(180,220,180,0.5);
    box-shadow: 0 0 0 3.5px rgba(58,125,58,0.16);
  }
  .contact-form form select option { background: var(--navy); }
  .contact-form form textarea { resize: vertical; min-height: 110px; }
  .contact-form form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .contact-form form .form-submit {
    background: #3A7D3A; color: var(--white);
    padding: 16px 36px; border: none; border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; cursor: pointer;
    align-self: flex-start;
    transition: background 0.22s ease, transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.22s ease;
    position: relative; overflow: hidden;
  }
  .contact-form form .form-submit:hover {
    background: #2d6b2d;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(58,125,58,0.32);
  }
  @media (max-width: 900px) {
    .contact-form form .form-row { grid-template-columns: 1fr; }
  }


  /* ══════════════════════════════════
     SUCCESS DIALOG BOX
  ══════════════════════════════════ */
  .success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(4px);
    transition: opacity 0.4s ease;
  }
  .success-overlay.show {
    opacity: 1;
    pointer-events: all;
  }
  .success-dialog {
    background: #fff;
    border-radius: 6px;
    padding: 40px 44px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
    transform: translateY(-30px) scale(0.94);
    transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
    opacity: 0;
  }
  .success-overlay.show .success-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  .success-dialog-logo {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid rgba(58,125,58,0.2);
    box-shadow: 0 4px 20px rgba(58,125,58,0.2);
    animation: logoBounce 1.2s cubic-bezier(0.22,1,0.36,1) 0.3s both;
  }
  @keyframes logoBounce {
    0%   { transform: scale(0.5) rotate(-15deg); opacity: 0; }
    60%  { transform: scale(1.12) rotate(4deg);  opacity: 1; }
    80%  { transform: scale(0.96) rotate(-2deg); }
    100% { transform: scale(1) rotate(0deg);     opacity: 1; }
  }
  .success-dialog-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #3A7D3A, #5aad5a);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    animation: iconPop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.55s both;
  }
  @keyframes iconPop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
  }
  .success-dialog-icon svg {
    fill: none; stroke: #fff;
    stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
    animation: checkDraw 0.5s ease 0.85s both;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
  }
  @keyframes checkDraw {
    to { stroke-dashoffset: 0; }
  }
  .success-dialog-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px; letter-spacing: 4px;
    color: #3A7D3A; text-transform: uppercase;
    margin-bottom: 4px;
    animation: fadeSlideUp 0.5s ease 0.7s both;
  }
  .success-dialog h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px; letter-spacing: 1px;
    color: #1A2E1A;
    margin-bottom: 12px;
    line-height: 1.1;
    animation: fadeSlideUp 0.5s ease 0.8s both;
  }
  .success-dialog p {
    font-size: 15px; color: #5A7A5A;
    line-height: 1.65; margin-bottom: 28px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    animation: fadeSlideUp 0.5s ease 0.9s both;
  }
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .success-dialog-btn {
    background: #3A7D3A; color: #fff;
    border: none; border-radius: 3px;
    padding: 13px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; cursor: pointer;
    transition: background 0.22s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
    animation: fadeSlideUp 0.5s ease 1.0s both;
  }
  .success-dialog-btn:hover {
    background: #2d6b2d;
    transform: translateY(-2px);
  }
  .success-dialog-divider {
    width: 40px; height: 2px;
    background: linear-gradient(90deg, #3A7D3A, #5aad5a);
    border-radius: 2px;
    margin: 0 auto 18px;
    animation: fadeSlideUp 0.5s ease 0.75s both;
  }
  /* confetti dots */
  .success-dialog::before {
    content: '';
    position: absolute;
    top: -2px; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3A7D3A, #5aad5a, #3A7D3A);
    background-size: 200% 100%;
    border-radius: 6px 6px 0 0;
    animation: promoShimmer 2s linear infinite;
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition-duration: 0.01ms !important; }
  }

  /* ═══════════════════════════════════
     SMOOTH ANIMATIONS & TRANSITIONS
  ═══════════════════════════════════ */

  /* Page load fade */
  @keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  body { animation: pageFadeIn 0.6s ease both; }

  /* ── Scroll Reveal ── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
                transform 0.75s cubic-bezier(0.22,1,0.36,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  .reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
                transform 0.75s cubic-bezier(0.22,1,0.36,1);
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }

  .reveal-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
                transform 0.75s cubic-bezier(0.22,1,0.36,1);
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  .reveal-scale {
    opacity: 0; transform: scale(0.88);
    transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
                transform 0.65s cubic-bezier(0.22,1,0.36,1);
  }
  .reveal-scale.visible { opacity: 1; transform: scale(1); }

  /* Stagger delays */
  .d1 { transition-delay: 0.08s !important; }
  .d2 { transition-delay: 0.18s !important; }
  .d3 { transition-delay: 0.28s !important; }
  .d4 { transition-delay: 0.38s !important; }
  .d5 { transition-delay: 0.48s !important; }
  .d6 { transition-delay: 0.58s !important; }

  /* ── Hero entrance ── */
  @keyframes heroUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow  { animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
  .hero-headline { animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.30s both; }
  .hero-sub      { animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.44s both; }
  .hero-actions  { animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.56s both; }
  .hero-visual   { animation: heroUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.45s both; }

  /* ── Gradient shimmer on BRAND text ── */
  .hero-headline .accent {
    background: linear-gradient(90deg, #b5e8b5 0%, #7DC87D 40%, #e0ffe0 60%, #7DC87D 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradShimmer 3.5s linear infinite;
  }
  @keyframes gradShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
  }

  /* ── Promo bar shimmer ── */
  .promo-bar, [style*="background: var(--green)"][style*="text-align"] {
    background-size: 200% 100% !important;
    background-image: linear-gradient(90deg,
      #3A7D3A 0%, #2d6b2d 35%, #5aad5a 50%, #2d6b2d 65%, #3A7D3A 100%) !important;
    animation: promoShimmer 4s linear infinite;
  }
  @keyframes promoShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  /* ── Nav underline slide ── */
  nav ul a { position: relative; }
  nav ul a::after {
    content: '';
    position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1.5px;
    background: rgba(180,220,180,0.65);
    transition: width 0.25s ease;
  }
  nav ul a:hover::after { width: 100%; }

  /* ── Nav scroll shadow ── */
  nav { transition: box-shadow 0.3s ease; }

  /* ── Service card 3D lift ── */
  .service-card {
    transition: transform 0.28s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.28s ease,
                background 0.2s ease !important;
    transform-style: preserve-3d;
  }
  .service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 48px rgba(26,46,26,0.13), inset 0 0 0 1.5px #3A7D3A !important;
  }

  /* ── Why card lift ── */
  .why-card {
    transition: border-color 0.3s ease, transform 0.25s ease !important;
  }
  .why-card:hover { transform: translateY(-5px); }

  /* ── Gallery image parallax ── */
  .gallery-swatch { transition: transform 0.5s ease !important; }

  /* ── Gallery item overlay ── */
  .gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(22,41,22,0);
    transition: background 0.35s ease;
    pointer-events: none;
    z-index: 1;
  }
  .gallery-item:hover::after { background: rgba(22,41,22,0.15); }
  .gallery-label { z-index: 2; position: relative; }

  /* ── Process dot spring ── */
  .step-dot {
    transition: background 0.22s ease, color 0.22s ease,
                border-color 0.22s ease, transform 0.22s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.28s ease !important;
  }
  .process-step:hover .step-dot {
    transform: scale(1.14) !important;
    box-shadow: 0 0 0 7px rgba(58,125,58,0.12) !important;
  }

  /* ── Testimonial card 3D tilt ── */
  .tcard {
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.25s ease,
                border-color 0.25s ease !important;
  }

  /* ── CTA buttons ripple ── */
  .btn-primary, .btn-white, .form-submit, .nav-cta, .btn-outline {
    position: relative; overflow: hidden;
  }
  .btn-primary::after, .btn-white::after, .form-submit::after, .nav-cta::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.13);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.32s ease;
  }
  .btn-primary:hover::after,
  .btn-white:hover::after,
  .form-submit:hover::after,
  .nav-cta:hover::after { transform: scaleX(1); }

  /* ── Input focus glow ── */
  .form-group input,
  .form-group select,
  .form-group textarea {
    transition: border-color 0.22s ease, box-shadow 0.22s ease !important;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(58,125,58,0.16) !important;
  }

  /* ── Contact icon hover ── */
  .contact-icon {
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  }
  .contact-item:hover .contact-icon {
    background: rgba(58,125,58,0.15);
    border-color: rgba(58,125,58,0.4);
    transform: scale(1.08);
  }

  /* ── Footer link hover ── */
  .footer-links a { transition: color 0.2s ease, letter-spacing 0.2s ease; }
  .footer-links a:hover { letter-spacing: 2px; }

  /* ── Logo pulse on load ── */
  @keyframes logoPop {
    0%   { transform: scale(0.7) rotate(-15deg); opacity: 0; }
    70%  { transform: scale(1.07) rotate(2deg);  opacity: 1; }
    100% { transform: scale(1)   rotate(0deg);   opacity: 1; }
  }
  .logo img { animation: logoPop 0.75s cubic-bezier(0.22,1,0.36,1) 0.1s both; }

  /* ── Floating CTA pulse ── */
  @keyframes floatPulse {
    0%,100% { box-shadow: 0 6px 24px rgba(58,125,58,0.45), 0 0 0 0 rgba(58,125,58,0.3); }
    60%     { box-shadow: 0 6px 24px rgba(58,125,58,0.45), 0 0 0 12px rgba(58,125,58,0); }
  }
  .float-btn { animation: floatPulse 2.5s ease-out infinite; }
  .float-btn:hover { animation: none; }

  /* ── Section label letter-spacing reveal ── */
  @keyframes labelExpand {
    from { letter-spacing: 8px; opacity: 0; }
    to   { letter-spacing: 4px; opacity: 1; }
  }
  .section-label.visible { animation: labelExpand 0.6s ease both; }

  /* ── Marquee pause on hover ── */
  .marquee-track { transition: animation-play-state 0.1s; }
  .marquee-wrap:hover .marquee-track { animation-play-state: paused; }

  /* ── CTA ghost text animated stroke ── */
  @keyframes strokePulse {
    0%,100% { -webkit-text-stroke: 2px rgba(255,255,255,0.35); }
    50%     { -webkit-text-stroke: 2px rgba(255,255,255,0.70); }
  }
  .cta-title .ghost { animation: strokePulse 2.5s ease-in-out infinite; }

  /* ── Press frame border glow ── */
  @keyframes framePulse {
    0%,100% { border-color: rgba(255,255,255,0.12); }
    50%     { border-color: rgba(58,125,58,0.45); }
  }
  .press-frame { animation: framePulse 3.5s ease-in-out infinite; }

  /* ── Hero stats counter pop ── */
  @keyframes statPop {
    from { opacity:0; transform:translateY(12px); }
    to   { opacity:1; transform:translateY(0); }
  }
  .press-stat-num { animation: statPop 0.7s cubic-bezier(0.22,1,0.36,1) 1s both; }

  /* ── Section divider line draw ── */
  .section-label::after {
    transition: max-width 0.5s ease;
  }
  .section-label.visible::after { max-width: 60px !important; }


  /* ══════════════════════════════════════
     HAMBURGER MENU + BACK TO TOP
  ══════════════════════════════════════ */

  /* ── Hamburger button ── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    cursor: pointer;
    padding: 4px;
    border: none;
    background: none;
    z-index: 200;
    flex-shrink: 0;
  }
  .hamburger span {
    display: block;
    width: 100%; height: 2px;
    background: var(--cotton);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
                opacity   0.25s ease,
                width     0.3s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0; width: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Mobile drawer ── */
  .mobile-drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: #0d1a0d;
    z-index: 150;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
    display: flex;
    flex-direction: column;
    padding: 88px 36px 48px;
    border-left: 1px solid rgba(255,255,255,0.07);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }
  .mobile-drawer.open {
    transform: translateX(0);
  }
  .mobile-drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 140;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
  }
  .mobile-drawer-overlay.open {
    opacity: 1; pointer-events: all;
  }
  .drawer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 3px;
    color: var(--cotton);
    margin-bottom: 40px;
    display: flex; align-items: center; gap: 10px;
  }
  .drawer-logo span { color: rgba(180,220,180,0.45); }
  .drawer-nav {
    display: flex; flex-direction: column; gap: 4px;
    flex: 1;
  }
  .drawer-nav a {
    font-size: 28px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.22s ease, padding-left 0.22s ease;
    display: block;
  }
  .drawer-nav a:hover {
    color: var(--cotton);
    padding-left: 10px;
  }
  .drawer-nav a.drawer-cta {
    margin-top: 20px;
    background: #3A7D3A;
    color: var(--white) !important;
    padding: 14px 28px !important;
    border-radius: 3px;
    text-align: center;
    font-size: 20px;
    border: none;
    transition: background 0.22s ease !important;
  }
  .drawer-nav a.drawer-cta:hover {
    background: #2d6b2d !important;
    padding-left: 28px !important;
  }
  .drawer-footer {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* Stagger animation for drawer links */
  .drawer-nav a {
    opacity: 0;
    transform: translateX(24px);
    transition: color 0.22s ease, padding-left 0.22s ease,
                opacity 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
  }
  .mobile-drawer.open .drawer-nav a:nth-child(1) { opacity:1; transform:translateX(0); transition-delay:0.12s; }
  .mobile-drawer.open .drawer-nav a:nth-child(2) { opacity:1; transform:translateX(0); transition-delay:0.18s; }
  .mobile-drawer.open .drawer-nav a:nth-child(3) { opacity:1; transform:translateX(0); transition-delay:0.24s; }
  .mobile-drawer.open .drawer-nav a:nth-child(4) { opacity:1; transform:translateX(0); transition-delay:0.30s; }
  .mobile-drawer.open .drawer-nav a:nth-child(5) { opacity:1; transform:translateX(0); transition-delay:0.38s; }

  /* ── Back to Top button ── */
  .back-to-top {
    position: fixed;
    bottom: 28px; left: 28px;
    width: 46px; height: 46px;
    background: rgba(26,46,26,0.92);
    border: 1px solid rgba(58,125,58,0.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 98;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1),
                background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    pointer-events: none;
    backdrop-filter: blur(6px);
    text-decoration: none;
  }
  .back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .back-to-top:hover {
    background: #3A7D3A;
    border-color: #3A7D3A;
    box-shadow: 0 6px 20px rgba(58,125,58,0.4);
    transform: translateY(-3px);
  }
  .back-to-top svg {
    fill: rgba(180,220,180,0.8);
    transition: fill 0.22s ease, transform 0.22s ease;
  }
  .back-to-top:hover svg {
    fill: var(--white);
    transform: translateY(-2px);
  }

  /* ── Scroll progress bar ── */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #3A7D3A, #7DC87D, #3A7D3A);
    background-size: 200% 100%;
    z-index: 999;
    transition: width 0.1s linear;
    animation: progressShimmer 2s linear infinite;
  }
  @keyframes progressShimmer {
    0%   { background-position: 0% 0; }
    100% { background-position: 200% 0; }
  }

  /* ── Show hamburger on mobile ── */
  @media (max-width: 900px) {
    .hamburger { display: flex; }
    nav ul { display: none !important; }
    .back-to-top { bottom: 16px; left: 16px; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }


  /* ── Footer legal ── */
  footer { flex-wrap: wrap; gap: 12px 20px; }
  .footer-legal {
    display: flex; align-items: center; gap: 10px;
  }
  .footer-legal a {
    font-size: 11px; color: rgba(255,255,255,0.25);
    text-decoration: none; letter-spacing: 0.5px;
    transition: color 0.22s ease;
  }
  .footer-legal a:hover { color: rgba(180,220,180,0.75); }
  .footer-dot { color: rgba(255,255,255,0.12); font-size: 10px; }
  .footer-links a { transition: color 0.22s ease, letter-spacing 0.22s ease; }
  .footer-links a:hover { color: rgba(180,220,180,0.75); letter-spacing: 2px; }


  /* ══ FOOTER POLISH ══ */
  footer {
    background: #0d1a0d;
    padding: 28px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-right {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* Facebook button */
  .footer-social-btn {
    display: flex; align-items: center; gap: 8px;
    background: rgba(24,119,242,0.12);
    border: 1px solid rgba(24,119,242,0.25);
    border-radius: 6px;
    padding: 7px 14px;
    text-decoration: none;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
    color: rgba(100,160,255,0.8);
  }
  .footer-social-btn:hover {
    background: rgba(24,119,242,0.22);
    border-color: rgba(24,119,242,0.5);
    transform: translateY(-2px);
    color: #6aa3ff;
  }
  .footer-social-icon {
    display: flex; align-items: center;
    transition: transform 0.22s ease;
  }
  .footer-social-btn:hover .footer-social-icon { transform: scale(1.15); }
  .footer-social-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
  }

  /* Separator */
  .footer-sep {
    display: block;
    width: 1px; height: 24px;
    background: rgba(255,255,255,0.08);
    margin: 0 8px;
  }

  /* Privacy Policy link */
  .footer-policy-link {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    padding: 7px 12px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: color 0.22s ease, background 0.22s ease,
                border-color 0.22s ease, transform 0.22s ease;
  }
  .footer-policy-link:hover {
    color: rgba(180,220,180,0.85);
    background: rgba(58,125,58,0.08);
    border-color: rgba(58,125,58,0.2);
    transform: translateY(-2px);
  }
  .footer-policy-icon {
    display: flex; align-items: center;
    opacity: 0.5;
    transition: opacity 0.22s ease;
  }
  .footer-policy-link:hover .footer-policy-icon { opacity: 1; }

  @media (max-width: 600px) {
    footer { flex-direction: column; align-items: center; text-align: center; padding: 24px; }
    .footer-right { flex-wrap: wrap; justify-content: center; }
    .footer-sep { width: 24px; height: 1px; margin: 0; }
  }

