/* =========================================================================
   JP Fencing & Gates — Design Tokens
   Brand: family-owned fencing & gates installer (UK)
   Tone:  trade-honest, reliable, hands-on
   ========================================================================= */

:root {
  /* -----------------------------------------------------------------------
     COLOR — Brand
     The logo's lime/leaf green is the headline brand color. Wood-brown
     ('timber') anchors hero/marketing surfaces. Yellow is reserved for
     CTAs and emphasis (photo frames, badges, "Services Now" pill).
     ----------------------------------------------------------------------- */
  --jp-green-900: #2d4416;     /* deep forest — text on light, gate hardware */
  --jp-green-700: #4f7a26;     /* brand pressed / hover-darken */
  --jp-green-500: #77a53e;     /* PRIMARY brand green (logo body) */
  --jp-green-300: #a8c876;     /* tints, dividers on dark wood */
  --jp-green-100: #e9f1d8;     /* subtle backgrounds */

  --jp-timber-900: #2a1d10;    /* darkest wood / vignette */
  --jp-timber-700: #5a3f23;    /* mid wood */
  --jp-timber-500: #9a7c34;    /* secondary brand — warm timber */
  --jp-timber-300: #c4a36a;    /* light timber / decking */
  --jp-timber-100: #f5ecd9;    /* cream paper */

  --jp-yellow-500: #f7e23a;    /* CTA yellow (poster) */
  --jp-yellow-400: #fff04d;    /* hover yellow */
  --jp-yellow-200: #fff7a8;    /* yellow tint */

  /* Neutrals */
  --jp-ink:        #111111;    /* near-black — body text on light */
  --jp-graphite:   #333333;    /* secondary text on light */
  --jp-slate:      #69727d;    /* tertiary / metadata */
  --jp-bone:       #f6f4ee;    /* page surface */
  --jp-paper:      #ffffff;    /* card surface */
  --jp-onyx:       #000000;    /* deepest surface, posters */

  /* Status */
  --jp-success: #2f8a3e;
  --jp-warn:    #c9851b;
  --jp-danger:  #b53a2b;

  /* -----------------------------------------------------------------------
     SEMANTIC — Color
     ----------------------------------------------------------------------- */
  --color-bg:           var(--jp-bone);
  --color-surface:      var(--jp-paper);
  --color-surface-alt:  var(--jp-timber-100);
  --color-surface-dark: var(--jp-timber-900);

  --color-text:         var(--jp-graphite);          /* base body */
  --color-text-strong:  var(--jp-ink);
  --color-text-muted:   var(--jp-slate);
  --color-text-inverse: #ffffff;
  --color-text-on-brand:#ffffff;

  --color-brand:        var(--jp-green-500);
  --color-brand-hover:  var(--jp-green-700);
  --color-accent:       var(--jp-yellow-500);
  --color-accent-hover: var(--jp-yellow-400);

  --color-border:       #e4dfd3;
  --color-border-strong:#cdc4b0;
  --color-divider:      #ece7da;

  /* -----------------------------------------------------------------------
     TYPOGRAPHY
     Primary stack is the system UI stack (per spec) — clean, fast, and
     reads as a no-nonsense trade voice. The "Caveat" handwritten face is
     reserved for the Free-Quotes accent (matches the poster's script).
     ----------------------------------------------------------------------- */
  --font-sans: -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue",
               Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
               "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-display: "Oswald", "Arial Narrow", -apple-system, sans-serif;
  --font-script:  "Caveat", "Segoe Script", "Comic Sans MS", cursive;
  --font-mono:    ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Type scale (per spec) */
  --fs-xs:  9px;
  --fs-sm:  15px;
  --fs-md:  16px;
  --fs-lg:  18px;
  --fs-xl:  24px;
  --fs-2xl: 28px;
  --fs-3xl: 45px;
  --fs-4xl: 64px;   /* hero — extends spec */

  --fw-regular: 400;
  --fw-medium:  500;
  --fw-bold:    700;
  --fw-black:   800;

  --lh-tight: 1.1;
  --lh-snug:  1.25;
  --lh-base:  1.5;   /* 24px @ 16px */
  --lh-loose: 1.65;

  --tracking-tight:  -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.04em;
  --tracking-cap:    0.12em;   /* small caps / eyebrow labels */

  /* -----------------------------------------------------------------------
     SPACING (per spec — micro scale)
     ----------------------------------------------------------------------- */
  --space-1: 1px;
  --space-2: 3px;
  --space-3: 4.5px;
  --space-4: 5px;
  --space-5: 6px;
  --space-6: 8px;
  --space-7: 10px;
  --space-8: 12px;
  /* extended */
  --space-9:  16px;
  --space-10: 20px;
  --space-11: 24px;
  --space-12: 32px;
  --space-13: 40px;
  --space-14: 56px;
  --space-15: 72px;
  --space-16: 96px;

  /* -----------------------------------------------------------------------
     RADIUS / SHADOW / MOTION
     ----------------------------------------------------------------------- */
  --radius-xs:   8px;
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   28px;
  --radius-pill: 50px;   /* per spec — "Services Now" pill, badges */
  --radius-circle: 9999px;

  --shadow-sm:  0 1px 2px rgba(20, 14, 4, 0.08), 0 1px 1px rgba(20,14,4,0.04);
  --shadow-md:  0 6px 14px rgba(20, 14, 4, 0.10), 0 2px 4px rgba(20,14,4,0.06);
  --shadow-lg:  0 18px 40px rgba(20, 14, 4, 0.18), 0 6px 12px rgba(20,14,4,0.10);
  --shadow-cut: 0 2px 0 rgba(0,0,0,0.20), inset 0 -2px 0 rgba(0,0,0,0.10); /* "carved" */
  --shadow-yellow: 0 6px 0 #b8a516;  /* chunky CTA shadow */

  --motion-instant: 300ms;
  --motion-fast:    400ms;
  --motion-base:    500ms;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* -----------------------------------------------------------------------
     LAYOUT
     ----------------------------------------------------------------------- */
  --container: 1200px;
  --container-narrow: 880px;
}

/* =========================================================================
   BASE — semantic element styles
   ========================================================================= */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: var(--lh-base);
  font-weight: var(--fw-regular);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-9);
  color: var(--color-text-strong);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}
h1 { font-size: var(--fs-4xl); letter-spacing: -0.025em; }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); font-family: var(--font-sans); font-weight: var(--fw-bold); }
h6 {
  font-size: var(--fs-sm);
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-cap);
  color: var(--jp-green-700);
}

p { margin: 0 0 var(--space-9); text-wrap: pretty; }

a {
  color: var(--jp-green-700);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color var(--motion-instant) var(--ease-out);
}
a:hover { color: var(--jp-green-900); }

small, .meta {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.eyebrow {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-cap);
  text-transform: uppercase;
  color: var(--jp-green-700);
}

.script {
  font-family: var(--font-script);
  font-weight: var(--fw-regular);
  letter-spacing: 0;
  font-size: 1.4em;
  line-height: 1;
}

code, pre, kbd { font-family: var(--font-mono); font-size: 0.92em; }
hr { border: 0; border-top: 1px solid var(--color-divider); margin: var(--space-12) 0; }

/* =========================================================================
   UTILITY — surfaces
   ========================================================================= */
.surface-wood {
  background:
    radial-gradient(1200px 600px at 50% 0%, rgba(255,220,150,0.08), transparent 70%),
    linear-gradient(180deg, #3b2613 0%, #2a1d10 60%, #1d130a 100%);
  color: var(--color-text-inverse);
}
.surface-bone   { background: var(--jp-bone);    color: var(--color-text); }
.surface-paper  { background: var(--jp-paper);   color: var(--color-text); }
.surface-green  { background: var(--jp-green-500); color: #ffffff; }
.surface-yellow { background: var(--jp-yellow-500); color: var(--jp-ink); }



    * {
      box-sizing: border-box
    }

    html,
    body {
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 96px
    }

    body {
      background: var(--jp-bone);
      color: var(--jp-graphite);
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

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

    a {
      color: inherit;
      text-decoration: none
    }

    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 28px
    }

    /* Eyebrow: "- TEXT" pattern */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--jp-green-700);
      margin-bottom: 14px;
    }

    .eyebrow::before {
      content: "";
      display: inline-block;
      width: 34px;
      height: 2px;
      background: var(--jp-green-700);
    }

    .eyebrow.on-dark {
      color: var(--jp-yellow-500)
    }

    .eyebrow.on-dark::before {
      background: var(--jp-yellow-500)
    }

    h1,
    h2,
    h3 {
      font-family: "Oswald", var(--font-display);
      color: var(--jp-ink);
      margin: 0 0 18px;
      text-wrap: balance;
      line-height: 1.05;
      letter-spacing: -0.01em;
    }

    h1 {
      font-size: 56px;
      font-weight: 700;
    }

    h2 {
      font-size: 42px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    h3 {
      font-size: 26px;
      font-weight: 600;
    }

    p {
      margin: 0 0 14px;
      font-size: 16px;
      line-height: 1.7;
      color: var(--jp-graphite);
      text-wrap: pretty
    }

    .lead {
      font-size: 18px;
      line-height: 1.6;
      color: #3a3a3a;
      max-width: 580px
    }

    /* ============ HEADER ============ */
    .nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background-image: url('assets/nav_wood_plank.png');
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid var(--jp-timber-900);
  transition: box-shadow 300ms, padding 300ms;
}

    .nav__inner {
      max-width: 1300px;
      margin: 0 auto;
      padding: 14px 28px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 24px;
    }

    .nav__logo {
      position: relative;
      height: 64px;
      display: inline-flex;
      align-items: center;
      padding-left: 204px;
      transition: padding-left 300ms;
    }

    .nav__logo img {
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      height: 200px;
      width: auto;
    }

    .nav__wordmark {
      font-family: "Oswald", sans-serif;
      font-weight: 700;
      font-size: 28px;
      color: var(--jp-green-700);
      letter-spacing: -0.005em;
      line-height: 1.05;
      white-space: nowrap;
      text-transform: none;
      -webkit-text-stroke: 1px var(--jp-green-900);
      text-stroke: 1px var(--jp-green-900);
      paint-order: stroke fill;
      text-shadow:
        0 2px 4px rgba(45, 68, 22, 0.28),
        0 1px 2px rgba(0, 0, 0, 0.18);
    }

    .nav__menu {
      display: flex;
      gap: 30px;
      justify-content: center
    }

    .nav__menu a {
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      transition: color 300ms;
      position: relative;
      padding: 6px 0;
    }

    .nav__menu a:hover {
      color: var(--jp-green-700)
    }

    .nav__menu a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -2px;
      height: 2px;
      background: var(--jp-green-700);
    }

    .nav__cta {
      display: flex;
      align-items: center;
      gap: 14px
    }

    .nav__phone {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 14px;
      color: #fff;
    }

    .nav__phone .ico {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--jp-yellow-500);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #111;
    }

    .nav__phone-meta {
      display: flex;
      flex-direction: column;
      line-height: 1.1
    }

    .nav__phone-meta small {
      font-size: 11px;
      color: rgba(255,255,255,0.7);
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase
    }

    .nav__phone-meta strong {
      font-size: 16px;
      color: #fff
    }

    /* ============ Buttons ============ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: inherit;
      font-size: 15px;
      font-weight: 700;
      padding: 14px 24px;
      border-radius: 50px;
      border: 0;
      cursor: pointer;
      text-decoration: none;
      transition: all 300ms cubic-bezier(.22, 1, .36, 1);
      letter-spacing: 0.02em;
    }

    .btn--primary {
      background: var(--jp-green-700);
      color: #fff
    }

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

    .btn--yellow {
      background: var(--jp-yellow-500);
      color: #111;
      box-shadow: 0 5px 0 var(--jp-timber-500)
    }

    .btn--yellow:hover {
      background: #fff04d;
      transform: translateY(-1px);
      box-shadow: 0 6px 0 var(--jp-timber-500)
    }

    .btn--yellow:active {
      transform: translateY(3px);
      box-shadow: 0 2px 0 var(--jp-timber-500)
    }

    .btn--ghost {
      background: transparent;
      color: #111;
      border: 1.5px solid #111;
      padding: 12.5px 22.5px
    }

    .btn--ghost:hover {
      background: #111;
      color: #fff
    }

    /* ============ HERO ============ */
    .hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(246, 244, 238, 0.75), rgba(246, 244, 238, 0.85)), url('assets/vertical_slats.png');
  background-size: cover;
  background-position: center;
}

    .hero__inner {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: center
    }

    .hero h1 {
      font-size: 62px;
      line-height: 1.02;
      text-transform: uppercase;
      letter-spacing: -0.005em
    }

    .hero h1 em {
      font-style: normal;
      color: var(--jp-green-700)
    }

    .hero__lead {
      margin-bottom: 22px
    }

    .hero__list {
      list-style: none;
      padding: 0;
      margin: 0 0 28px
    }

    .hero__list li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 5px 0;
      font-weight: 600;
      color: #222;
      font-size: 16px
    }

    .hero__list .tk {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--jp-green-700);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hero__list .tk svg {
      width: 13px;
      height: 13px;
      stroke: #fff;
      stroke-width: 3.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    .hero__motto {
      font-weight: 700;
      color: var(--jp-ink);
      font-size: 17px;
      margin: 18px 0 24px;
      border-left: 3px solid var(--jp-green-700);
      padding-left: 14px;
    }

    .hero__art {
      position: relative
    }

    .hero__photo {
      width: 100%;
      aspect-ratio: 1/1.05;
      border-radius: 50%/45%;
      background-image: url('assets/photos/jp3.jpg');
      background-size: cover;
      background-position: center 60%;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
      overflow: hidden;
      position: relative;
    }

    .hero__photo::after {
      content: "";
      position: absolute;
      inset: auto -10% -8% -10%;
      height: 55%;
      background:
        radial-gradient(60% 80% at 50% 100%, rgba(0, 0, 0, 0.35), transparent 70%);
      pointer-events: none;
    }

    .hero__badge {
      position: absolute;
      right: -14px;
      top: 30px;
      background: var(--jp-yellow-500);
      color: #111;
      border-radius: 50%;
      width: 118px;
      height: 118px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-family: "Oswald", sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.04em;
      line-height: 1.1;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
      transform: rotate(-10deg);
      text-transform: uppercase;
    }

    /* Grass divider */
    .grass-divider {
      height: 32px;
      width: 100%;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 30' preserveAspectRatio='none'><path d='M0 30 L0 22 Q3 8 6 22 Q10 6 13 22 Q17 10 21 22 Q25 4 28 22 Q32 12 36 22 Q40 6 44 22 Q48 10 52 22 Q56 5 60 22 Q64 12 68 22 Q72 8 76 22 Q80 14 84 22 Q88 6 92 22 Q96 10 100 22 Q104 4 108 22 Q112 12 116 22 Q120 8 124 22 Q128 5 132 22 Q136 14 140 22 Q144 6 148 22 Q152 10 156 22 Q160 4 164 22 Q168 12 172 22 Q176 8 180 22 Q184 14 188 22 Q192 6 196 22 Q200 12 200 30 Z' fill='%234f7a26'/></svg>");
      background-repeat: repeat-x;
      background-size: 200px 30px;
    }

    /* ============ ABOUT ============ */
    .about {
      background: var(--jp-timber-100);
      padding: 96px 0;
      position: relative
    }

    .about__inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 64px;
      align-items: center
    }

    .about__photo {
      width: 100%;
      aspect-ratio: 1/1;
      border-radius: 24px;
      background-image: url('assets/photos/jp5.jpg');
      background-size: cover;
      background-position: center;
      box-shadow: 0 30px 60px rgba(45, 68, 22, 0.25);
      position: relative;
      overflow: hidden;
    }

    .about__sticker {
      position: absolute;
      left: -22px;
      bottom: 24px;
      background: #fff;
      padding: 18px 22px;
      border-radius: 14px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .about__sticker .num {
      font-family: "Oswald", sans-serif;
      font-weight: 700;
      font-size: 46px;
      line-height: 1;
      color: var(--jp-green-700);
    }

    .about__sticker .lbl {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #222;
      line-height: 1.2
    }

    .about__list {
      list-style: none;
      padding: 0;
      margin: 0 0 28px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px 24px
    }

    .about__list li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 6px 0;
      font-weight: 500;
      color: #222;
      font-size: 15px
    }

    .about__list .tk {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--jp-yellow-500);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .about__list .tk svg {
      width: 11px;
      height: 11px;
      stroke: #111;
      stroke-width: 3.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    .about__list-title {
      font-family: "Oswald", sans-serif;
      font-weight: 700;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #222;
      margin: 14px 0 8px
    }

    /* ============ SERVICES TABS ============ */
    .services {
      padding: 96px 0;
      background: var(--jp-bone)
    }

    .services__head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 36px
    }

    .services__head .eyebrow {
      justify-content: center
    }

    .services__tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 36px;
    }

    .services__tab {
      background: #fff;
      border: 1.5px solid var(--color-border);
      color: #222;
      padding: 11px 20px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      cursor: pointer;
      transition: all 300ms;
    }

    .services__tab:hover {
      border-color: var(--jp-green-700);
      color: var(--jp-green-700)
    }

    .services__tab.active {
      background: var(--jp-green-700);
      border-color: var(--jp-green-700);
      color: #fff
    }

    .services__panel {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 56px;
      align-items: center;
      background: var(--jp-paper);
      border: 1px solid var(--color-border);
      border-radius: 24px;
      padding: 48px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    }

    .services__panel h3 {
      font-size: 34px;
      text-transform: uppercase;
      letter-spacing: 0;
      margin-bottom: 14px
    }

    .services__panel p {
      margin-bottom: 22px;
      max-width: 520px
    }

    .services__lists {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 24px;
      margin: 0 0 22px
    }

    .services__lists ul {
      list-style: none;
      margin: 0;
      padding: 0
    }

    .services__lists li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 5px 0;
      font-size: 15px;
      color: #222
    }

    .services__lists .tk {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--jp-green-700);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .services__lists .tk svg {
      width: 10px;
      height: 10px;
      stroke: #fff;
      stroke-width: 3.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    .services__panel-photo {
      aspect-ratio: 4/5;
      border-radius: 18px;
      background-size: cover;
      background-position: center;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .services__note {
      font-style: italic;
      color: var(--jp-slate);
      font-size: 14px;
      margin: 0 0 22px
    }

    /* ============ STATS ============ */
    .stats {
      background:
        linear-gradient(rgba(26, 26, 26, 0.78), rgba(26, 26, 26, 0.78)),
        linear-gradient(135deg, #3b2613, #1d130a);
      color: #fff;
      padding: 80px 0;
      text-align: center;
    }

    .stats__inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px
    }

    .stat__num {
      font-family: "Oswald", sans-serif;
      font-size: 64px;
      font-weight: 700;
      line-height: 1;
      color: var(--jp-yellow-500)
    }

    .stat__lbl {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #e9e2cf;
      margin-top: 10px;
      font-weight: 600
    }

    /* ============ TESTIMONIALS ============ */
    .testimonials {
      padding: 96px 0;
      background: var(--jp-timber-100)
    }

    .testimonials__head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 40px
    }

    .testimonials__head .eyebrow {
      justify-content: center
    }

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

    .testimonial {
      background: #fff;
      border-radius: 20px;
      padding: 32px 28px;
      border: 1px solid var(--color-border);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .testimonial__quote {
      position: relative;
      padding-left: 0
    }

    .testimonial__quote::before {
      content: "\201C";
      font-family: "Oswald", sans-serif;
      font-size: 64px;
      line-height: 0.7;
      color: var(--jp-green-700);
      display: block;
      margin-bottom: 6px;
    }

    .testimonial__quote p {
      font-size: 15px;
      line-height: 1.6;
      color: #3a3a3a;
      margin: 0
    }

    .testimonial__person {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: auto
    }

    .testimonial__avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
      border: 2px solid var(--jp-yellow-500);
    }

    .testimonial__avatar--init {
      background: var(--jp-green-700);
      color: #fff;
      font-family: "Oswald", sans-serif;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0.04em;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .testimonial__avatar--init.alt {
      background: var(--jp-yellow-500);
      color: #111;
      border-color: var(--jp-green-700)
    }

    .testimonials__cta {
      text-align: center;
      margin-top: 36px
    }

    .testimonials__badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border: 1px solid var(--color-border);
      border-radius: 50px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 700;
      color: #222;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
      margin-bottom: 14px;
    }

    .testimonials__badge .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--jp-green-700);
      box-shadow: 0 0 0 4px rgba(79, 122, 38, 0.18);
    }

    .testimonial__name {
      font-family: "Oswald", sans-serif;
      font-weight: 700;
      font-size: 16px;
      text-transform: uppercase;
      color: #111;
      line-height: 1.1
    }

    .testimonial__role {
      font-size: 12px;
      color: var(--jp-slate);
      margin-top: 3px
    }

    .testimonial__stars {
      color: #f5b400;
      font-size: 14px;
      letter-spacing: 2px
    }

    /* ============ CTA BAND ============ */
    .ctaband {
      padding: 64px 0;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(45, 68, 22, 0.92), rgba(45, 68, 22, 0.85)),
        linear-gradient(135deg, #4f7a26, #2d4416);
      color: #fff;
    }

    .ctaband__inner {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 48px;
      align-items: center
    }

    .ctaband h2 {
      color: #fff;
      margin-bottom: 8px
    }

    .ctaband__lead {
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 0;
      max-width: 560px
    }

    .ctaband__phone {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 18px;
      padding: 24px 28px;
      text-align: center;
    }

    .ctaband__phone small {
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--jp-yellow-500);
      font-weight: 700
    }

    .ctaband__phone strong {
      display: block;
      font-family: "Oswald", sans-serif;
      font-size: 36px;
      color: #fff;
      margin: 6px 0 12px;
      font-weight: 600
    }

    .ctaband__phone .btn {
      width: 100%;
      justify-content: center
    }

    /* ============ FOOTER ============ */
    .footer {
      background: #1f1a12;
      color: #cfc8b6;
      padding: 72px 0 24px;
      position: relative
    }

    .footer__grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 42px
    }

    .footer h6 {
      font-family: "Oswald", sans-serif;
      color: #fff;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 700;
      margin: 0 0 16px;
    }

    .footer__about img {
      height: 60px;
      margin-bottom: 16px;
      border-radius: 8px
    }

    .footer__about p {
      color: #cfc8b6;
      font-size: 14px;
      line-height: 1.6
    }

    .footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .footer ul li {
      font-size: 14px;
      color: #cfc8b6;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .footer ul li::before {
      content: "→";
      color: var(--jp-yellow-500);
      font-weight: 700
    }

    .footer__contact a {
      color: #cfc8b6;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 4px 0
    }

    .footer__contact a:hover {
      color: #fff
    }

    .footer__contact .ico {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--jp-green-700);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      flex-shrink: 0;
    }

    .footer__social {
      display: flex;
      gap: 10px;
      margin-top: 18px
    }

    .footer__social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: all 300ms;
    }

    .footer__social a:hover {
      background: var(--jp-yellow-500);
      color: #111;
      border-color: var(--jp-yellow-500)
    }

    .footer__base {
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      margin-top: 48px;
      padding-top: 18px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
      font-size: 12px;
      color: #8b8470;
    }

    /* ============ Scroll polish & micro-interactions ============ */
    .reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

    .reveal.reveal--left {
      transform: translateX(-32px)
    }

    .reveal.reveal--right {
      transform: translateX(32px)
    }

    .reveal.reveal--scale {
      transform: scale(.96)
    }

    .reveal.is-in {
      opacity: 1;
      transform: none
    }

    .reveal[data-delay="1"] {
      transition-delay: 80ms
    }

    .reveal[data-delay="2"] {
      transition-delay: 160ms
    }

    .reveal[data-delay="3"] {
      transition-delay: 240ms
    }

    .reveal[data-delay="4"] {
      transition-delay: 320ms
    }

    /* Sticky nav: lift shadow once you scroll */
    .nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background-image: url('assets/nav_wood_plank.png');
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid var(--jp-timber-900);
  transition: box-shadow 300ms, padding 300ms;
}

    .nav.is-scrolled {
  box-shadow: 0 8px 24px rgba(20, 14, 4, 0.3);
}

    .nav.is-scrolled .nav__inner {
      padding-top: 10px;
      padding-bottom: 10px
    }

    .nav.is-scrolled .nav__logo {
      padding-left: 134px;
    }

    .nav.is-scrolled .nav__logo img {
      height: 130px;
      transition: height 300ms
    }

    .nav__logo img {
      transition: height 300ms
    }

    /* Card hover lift */
    .testimonial {
      transition: transform 400ms cubic-bezier(.22, 1, .36, 1), box-shadow 400ms
    }

    .testimonial:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(20, 14, 4, 0.10)
    }

    .services__panel {
      transition: box-shadow 500ms
    }

    .services__panel:hover {
      box-shadow: 0 18px 40px rgba(20, 14, 4, 0.10)
    }

    .services__panel-photo {
      transition: transform 500ms cubic-bezier(.22, 1, .36, 1)
    }

    .services__panel:hover .services__panel-photo {
      transform: scale(1.02)
    }

    /* Hero photo parallax base */
    .hero__photo {
      will-change: background-position
    }

    .hero__badge {
      animation: bob 4.5s ease-in-out infinite
    }

    @keyframes bob {

      0%,
      100% {
        transform: rotate(-10deg) translateY(0)
      }

      50% {
        transform: rotate(-10deg) translateY(-6px)
      }
    }

    /* Animated underline on nav links */
    .nav__menu a::after {
      content: "";
      position: absolute;
      left: 50%;
      right: 50%;
      bottom: -2px;
      height: 2px;
      background: var(--jp-green-700);
      transition: left 300ms cubic-bezier(.22, 1, .36, 1), right 300ms cubic-bezier(.22, 1, .36, 1);
    }

    .nav__menu a:hover::after,
    .nav__menu a.active::after {
      left: 0;
      right: 0
    }

    /* Section heading accent */
    .section-rule {
      width: 60px;
      height: 3px;
      background: var(--jp-green-700);
      margin: 0 auto 22px;
      border-radius: 2px;
    }

    /* Back-to-top */
    .to-top {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 40;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 0;
      background: var(--jp-green-700);
      color: #fff;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 28px rgba(45, 68, 22, 0.32);
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px) scale(.92);
      transition: opacity 300ms, transform 300ms, background 300ms;
    }

    .to-top.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: none
    }

    .to-top:hover {
      background: var(--jp-green-900)
    }

    .to-top svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2.4;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    /* Accessible focus rings */
    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--jp-green-700);
      outline-offset: 3px;
      border-radius: 6px;
    }

    /* Buttons: shimmer arrow on hover */
    .btn[href*="#"] {
      overflow: hidden;
      position: relative;
    }

    /* Reduced motion overrides */
    @media (prefers-reduced-motion: reduce) {
      .reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

      .hero__badge {
        animation: none
      }

      html {
        scroll-behavior: auto
      }

      .services__panel:hover .services__panel-photo,
      .testimonial:hover {
        transform: none
      }
    }

    /* ============ Responsive ============ */
    @media (max-width: 1024px) {

      .hero__inner,
      .about__inner,
      .services__panel,
      .ctaband__inner {
        grid-template-columns: 1fr;
        gap: 36px
      }

      .testimonials__grid {
        grid-template-columns: 1fr 1fr
      }

      .stats__inner {
        grid-template-columns: 1fr 1fr
      }

      .footer__grid {
        grid-template-columns: 1fr 1fr
      }

      h1 {
        font-size: 42px
      }

      h2 {
        font-size: 32px
      }

      .hero h1 {
        font-size: 46px
      }

      .nav__menu {
        display: none
      }
    }

    @media (max-width: 600px) {

      .testimonials__grid,
      .stats__inner,
      .footer__grid {
        grid-template-columns: 1fr
      }

      .services__lists,
      .about__list {
        grid-template-columns: 1fr
      }

      .services__panel {
        padding: 28px
      }

      .nav__phone-meta {
        display: none
      }
    }

    /* Lucide-ish icons */
    .ico-svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round
    }
/* =========================================================================
   Mobile Menu Styles
   ========================================================================= */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 8px;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--jp-paper);
  border-top: 1px solid var(--color-border);
  padding: 20px;
  gap: 15px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile a {
  font-size: 18px;
  font-weight: 600;
  color: var(--jp-ink);
  text-align: center;
  padding: 10px;
  border-radius: 8px;
}

.nav__mobile a:hover {
  background: var(--jp-timber-100);
}

@media (max-width: 1024px) {
  .nav__menu, .nav__cta {
    display: none;
  }
  .nav__inner {
    grid-template-columns: 1fr auto;
  }
  .nav__toggle {
    display: block;
  }
}

/* =========================================================================
   Contact Form Styles
   ========================================================================= */
.ctaband__action {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ctaband__form {
  background: var(--jp-paper);
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.ctaband__form input,
.ctaband__form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: var(--jp-bone);
  color: var(--jp-ink);
  transition: border-color 300ms ease;
}

.ctaband__form input:focus,
.ctaband__form textarea:focus {
  outline: none;
  border-color: var(--jp-green-500);
  background: var(--jp-paper);
}

.ctaband__form textarea {
  resize: vertical;
}
