/*
 * Jack Jordan Gardening Handyman — site stylesheet
 * =================================================
 * Source of truth for matching pages. Link one file:
 *
 *   <link rel="stylesheet" href="/styles.css">
 *
 * Page skeleton
 * -------------
 *   <main class="site-preview-root">
 *     hero   (.wf-hero)
 *     about  (.about-section-v1)
 *     services (.services-section-v1, .services-section-v3)
 *     gallery (.gallery-section-v2, .gallery-section-v3)
 *     cta    (.cta-section-v1)
 *     contact (.contact-section-v3)
 *     footer (.footer-section-v1)
 *   </main>
 *
 * New pages: use the :root tokens and .jj-* primitives below,
 * or reuse the section class names as-is.
 *
 * Assets (relative to this file in /site):
 *   ../input/logo.png
 *   /input/hero_reference.jpg
 */

@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@700;800&display=swap");

/* -------------------------------------------------------------------------- */
/* Tokens                                                                     */
/* -------------------------------------------------------------------------- */

:root {
  /* Brand */
  --jj-green: #4a7c3f;
  --jj-green-hover: #6aab5a;
  --jj-ink: #1a1a1a;
  --jj-ink-deep: #111111;
  --jj-ink-footer: #0d0d0d;
  --jj-body: #333333;
  --jj-muted: #666666;
  --jj-paper: #ffffff;
  --jj-paper-alt: #f8f9fa;
  --jj-white: #ffffff;
  --jj-hero-sub: #e8e8e8;

  --jj-white-90: rgba(255, 255, 255, 0.9);
  --jj-white-80: rgba(255, 255, 255, 0.8);
  --jj-white-70: rgba(255, 255, 255, 0.7);
  --jj-white-60: rgba(255, 255, 255, 0.6);
  --jj-white-15: rgba(255, 255, 255, 0.15);
  --jj-ink-90: rgba(26, 26, 26, 0.9);
  --jj-shadow-text: rgba(0, 0, 0, 0.5);
  --jj-shadow-text-strong: rgba(0, 0, 0, 0.6);
  --jj-logo-shadow: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));

  /* Type */
  --jj-font-display: "Barlow Condensed", sans-serif;
  --jj-font-body: "Barlow", sans-serif;
  --jj-font-hero: Arial, "Helvetica Neue", Helvetica, sans-serif;

  --jj-weight-regular: 400;
  --jj-weight-medium: 500;
  --jj-weight-semibold: 600;
  --jj-weight-bold: 700;
  --jj-weight-extrabold: 800;
  --jj-weight-black: 900;

  --jj-size-hero: clamp(36px, 5.5vw, 68px);
  --jj-size-hero-sub: clamp(15px, 1.8vw, 20px);
  --jj-size-hero-cta: clamp(14px, 1.4vw, 17px);
  --jj-size-display-xl: 3rem;      /* 48px — CTA heading */
  --jj-size-display-lg: 2.8rem;    /* 44.8px — section headings */
  --jj-size-display-md: 2.5rem;    /* 40px — about heading, CTA mobile */
  --jj-size-display-sm: 2.2rem;    /* 35.2px — services heading mobile */
  --jj-size-stat: 2rem;            /* 32px */
  --jj-size-nav-name: 22px;
  --jj-size-nav-phone: 17px;
  --jj-size-nav-link: 16px;
  --jj-size-logo-sub: 11.5px;
  --jj-size-h3: 1.5rem;            /* 24px */
  --jj-size-h4: 1.1rem;            /* 17.6px — also lede / about subtitle */
  --jj-size-body: 1rem;            /* 16px */
  --jj-size-btn: 0.95rem;          /* 15.2px */
  --jj-size-small: 0.9rem;         /* 14.4px */
  --jj-size-caption: 0.85rem;      /* 13.6px */

  --jj-lh-display: 1.1;
  --jj-lh-hero: 1.08;
  --jj-lh-tight: 1.2;
  --jj-lh-body: 1.6;

  --jj-track-display: 0.01em;
  --jj-track-btn: 0.08em;
  --jj-track-logo: 0.04em;
  --jj-track-logo-sub: 0.12em;
  --jj-track-tagline: 0.05em;

  /* Layout */
  --jj-max: 1320px;
  --jj-max-gallery: 1200px;
  --jj-max-cta: 800px;
  --jj-max-hero-copy: 860px;
  --jj-gutter: 40px;
  --jj-gutter-sm: 20px;
  --jj-section-y: 80px;
  --jj-footer-y: 60px;
  --jj-radius: 8px;
  --jj-radius-btn: 4px;
  --jj-radius-hero-cta: 3px;
  --jj-logo: 56px;
  --jj-about-image-h: 400px;
  --jj-btn-min: 220px;

  --jj-ease: 0.25s ease;
  --jj-bp-nav: 900px;
  --jj-bp-stack: 768px;
  --jj-nav-mobile-h: 72px;
  --jj-menu-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --jj-menu-duration: 0.45s;
  --jj-z-nav-mobile: 10001;
  --jj-z-menu: 10000;
}

/* -------------------------------------------------------------------------- */
/* Base                                                                       */
/* -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  margin: 0;
  overscroll-behavior: none;
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-body);
  line-height: var(--jj-lh-body);
  color: var(--jj-body);
  background: var(--jj-paper);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--jj-green);
}

/* -------------------------------------------------------------------------- */
/* Primitives — use on new pages to match without copying section markup      */
/* -------------------------------------------------------------------------- */

.jj-container {
  max-width: var(--jj-max);
  margin: 0 auto;
  padding: 0 var(--jj-gutter);
}

.jj-section {
  padding: var(--jj-section-y) 0;
}

.jj-title {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-display-lg);
  font-weight: var(--jj-weight-extrabold);
  text-transform: uppercase;
  color: var(--jj-ink);
  margin: 0 0 16px 0;
  line-height: var(--jj-lh-display);
}

.jj-lede {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-h4);
  font-weight: var(--jj-weight-semibold);
  color: var(--jj-green);
  line-height: var(--jj-lh-body);
  margin: 0 0 24px 0;
}

.jj-copy {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-body);
  line-height: var(--jj-lh-body);
  color: var(--jj-body);
  margin: 0 0 20px 0;
}

.jj-btn,
.jj-btn-primary,
.jj-btn-secondary,
.jj-btn-hero {
  display: inline-block;
  font-family: var(--jj-font-body);
  font-weight: var(--jj-weight-bold);
  font-size: var(--jj-size-btn);
  letter-spacing: var(--jj-track-btn);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: var(--jj-radius-btn);
  min-width: var(--jj-btn-min);
  transition: all var(--jj-ease);
  box-sizing: border-box;
}

.jj-btn-primary {
  background: var(--jj-paper);
  color: var(--jj-ink);
  border: 2px solid var(--jj-paper);
  padding: 18px 40px;
}

.jj-btn-primary:hover {
  background: var(--jj-green);
  border-color: var(--jj-green);
  color: var(--jj-white);
}

.section-cta {
  margin-top: 32px;
}

.services-section-v1 .section-cta,
.gallery-section-v2 .section-cta {
  text-align: center;
  margin-top: 40px;
}

.cta-section-v1 .section-cta {
  margin-top: 0;
}

.jj-btn-secondary {
  background: transparent;
  color: var(--jj-white);
  border: 2px solid var(--jj-green);
  padding: 16px 36px;
}

.jj-btn-secondary:hover {
  background: var(--jj-green);
  color: var(--jj-white);
}

.jj-btn-hero {
  font-family: var(--jj-font-hero);
  font-size: var(--jj-size-hero-cta);
  font-weight: var(--jj-weight-extrabold);
  background: var(--jj-ink-deep);
  color: var(--jj-white);
  border: 2.5px solid var(--jj-white);
  border-radius: var(--jj-radius-hero-cta);
  padding: 20px 40px;
  white-space: nowrap;
}

.jj-btn-hero:hover {
  background: var(--jj-white);
  color: var(--jj-ink-deep);
}

@media (max-width: 768px) {
  .jj-container {
    padding: 0 var(--jj-gutter-sm);
  }

  .jj-title {
    font-size: var(--jj-size-display-sm);
  }
}

/* -------------------------------------------------------------------------- */
/* Assembled page shell                                                       */
/* -------------------------------------------------------------------------- */

.site-preview-root {
  display: block;
  min-height: auto;
  background: var(--jj-paper);
}

.wf-assembled-hero-shell,
.wf-assembled-hero-shell * {
  color-scheme: normal !important;
}

.wf-assembled-hero-shell {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.site-section-wf {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-top: none;
  background: transparent;
  color: inherit;
}

.site-preview-root [aria-label*="Press D" i],
.site-preview-root [aria-label*="press d" i],
.site-preview-root [title*="Press D" i],
.site-preview-root [title*="light/dark" i],
.site-preview-root [title*="light / dark" i],
.site-preview-root [data-theme-toggle],
.site-preview-root [data-wf-theme-hint],
.site-preview-root .wf-theme-toggle-chip {
  display: none !important;
}

@keyframes wf-section-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in) .wf-section-body > * > * {
  opacity: 0;
}

.site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
  animation: wf-section-in 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (prefers-reduced-motion: reduce) {
  html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in) .wf-section-body > * > * {
    opacity: 1;
  }
  .site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
    animation: none;
  }
}

@media (max-width: 900px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    padding-left: max(0rem, env(safe-area-inset-left, 0px));
    padding-right: max(0rem, env(safe-area-inset-right, 0px));
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) img,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) video,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) svg {
    max-width: 100%;
    height: auto;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) table {
    display: block;
    width: 100% !important;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    min-width: 0;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display:grid"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction:row"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction: row"] {
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) .button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="btn"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="cta"] {
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
  }
}

/* -------------------------------------------------------------------------- */
/* Hero + nav                                                                 */
/* -------------------------------------------------------------------------- */

.wf-hero {
  display: block;
  width: 100%;
  font-family: var(--jj-font-hero);
  box-sizing: border-box;
}

.wf-hero *,
.wf-hero *::before,
.wf-hero *::after {
  box-sizing: border-box;
}

.wf-hero__body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wf-hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("/input/hero_reference.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.wf-hero__nav,
.wf-hero__content,
.wf-hero__text-col,
.wf-hero__tablet-preview {
  position: relative;
  z-index: 2;
}

.wf-hero__nav {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  width: 100%;
}

.wf-hero__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.wf-hero__logo-icon {
  flex-shrink: 0;
  width: var(--jj-logo);
  height: auto;
  display: block;
  object-fit: contain;
  filter: var(--jj-logo-shadow);
}

.wf-hero__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.wf-hero__logo-name {
  color: var(--jj-white);
  font-size: var(--jj-size-nav-name);
  font-weight: var(--jj-weight-extrabold);
  letter-spacing: var(--jj-track-logo);
  white-space: nowrap;
}

.wf-hero__logo-sub {
  color: var(--jj-white);
  font-size: var(--jj-size-logo-sub);
  font-weight: var(--jj-weight-semibold);
  letter-spacing: var(--jj-track-logo-sub);
  white-space: nowrap;
  opacity: 0.92;
}

.wf-hero__nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 36px;
}

.wf-hero__nav-links li a {
  color: var(--jj-white);
  text-decoration: none;
  font-size: var(--jj-size-nav-link);
  font-weight: var(--jj-weight-regular);
  letter-spacing: var(--jj-track-display);
  opacity: 0.95;
  transition: opacity 0.2s;
}

.wf-hero__nav-links li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.wf-hero__nav-links li a[aria-current="page"] {
  opacity: 1;
  font-weight: var(--jj-weight-semibold);
  text-decoration: underline;
  text-decoration-color: var(--jj-green);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.wf-hero__nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--jj-white);
  text-decoration: none;
  font-size: var(--jj-size-nav-phone);
  font-weight: var(--jj-weight-bold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.wf-hero__nav-phone svg {
  flex-shrink: 0;
}

.wf-hero__nav-phone:hover {
  opacity: 0.85;
}

.wf-hero__nav-end {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger — desktop hidden */
.wf-hero__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: var(--jj-white);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease;
}

.wf-hero__menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.wf-hero__menu-toggle:focus-visible {
  outline: 2px solid var(--jj-white);
  outline-offset: 2px;
}

.wf-hero__menu-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}

.wf-hero__menu-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transform-origin: center;
  transition:
    transform var(--jj-menu-duration) var(--jj-menu-ease),
    opacity 0.28s var(--jj-menu-ease),
    top var(--jj-menu-duration) var(--jj-menu-ease);
}

.wf-hero__menu-bar:nth-child(1) { top: 0; }
.wf-hero__menu-bar:nth-child(2) { top: 8px; }
.wf-hero__menu-bar:nth-child(3) { top: 16px; }

.wf-hero__menu-toggle[aria-expanded="true"] .wf-hero__menu-bar:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.wf-hero__menu-toggle[aria-expanded="true"] .wf-hero__menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.wf-hero__menu-toggle[aria-expanded="true"] .wf-hero__menu-bar:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* Mobile menu overlay — fixed above all page content */
.wf-hero__mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--jj-z-menu);
  pointer-events: none;
  visibility: hidden;
}

.wf-hero__mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.wf-hero__mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--jj-menu-duration) var(--jj-menu-ease);
}

.wf-hero__mobile-menu.is-open .wf-hero__mobile-menu-backdrop {
  opacity: 1;
}

.wf-hero__mobile-menu-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: calc(var(--jj-nav-mobile-h) + 24px) 24px 48px;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity var(--jj-menu-duration) var(--jj-menu-ease),
    transform var(--jj-menu-duration) var(--jj-menu-ease);
}

.wf-hero__mobile-menu.is-open .wf-hero__mobile-menu-panel {
  opacity: 1;
  transform: translateY(0);
}

.wf-hero__mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 320px;
}

.wf-hero__mobile-menu-links li {
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s var(--jj-menu-ease),
    transform 0.4s var(--jj-menu-ease);
}

.wf-hero__mobile-menu.is-open .wf-hero__mobile-menu-links li {
  opacity: 1;
  transform: translateY(0);
}

.wf-hero__mobile-menu.is-open .wf-hero__mobile-menu-links li:nth-child(1) { transition-delay: 0.06s; }
.wf-hero__mobile-menu.is-open .wf-hero__mobile-menu-links li:nth-child(2) { transition-delay: 0.11s; }
.wf-hero__mobile-menu.is-open .wf-hero__mobile-menu-links li:nth-child(3) { transition-delay: 0.16s; }
.wf-hero__mobile-menu.is-open .wf-hero__mobile-menu-links li:nth-child(4) { transition-delay: 0.21s; }
.wf-hero__mobile-menu.is-open .wf-hero__mobile-menu-links li:nth-child(5) { transition-delay: 0.26s; }

.wf-hero__mobile-menu-links a {
  display: block;
  width: 100%;
  padding: 14px 20px;
  color: var(--jj-white);
  font-family: var(--jj-font-hero);
  font-size: 1.25rem;
  font-weight: var(--jj-weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.wf-hero__mobile-menu-links a:hover,
.wf-hero__mobile-menu-links a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.wf-hero__mobile-menu-links a[aria-current="page"] {
  color: var(--jj-green);
  background: rgba(255, 255, 255, 0.1);
  font-weight: var(--jj-weight-semibold);
}

.wf-hero__mobile-menu-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  color: var(--jj-white);
  font-family: var(--jj-font-hero);
  font-size: 1.1rem;
  font-weight: var(--jj-weight-bold);
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid var(--jj-green);
  border-radius: var(--jj-radius-btn);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s var(--jj-menu-ease) 0.32s,
    transform 0.4s var(--jj-menu-ease) 0.32s,
    background 0.2s ease,
    border-color 0.2s ease;
}

.wf-hero__mobile-menu.is-open .wf-hero__mobile-menu-phone {
  opacity: 1;
  transform: translateY(0);
}

.wf-hero__mobile-menu-phone:hover {
  background: var(--jj-green);
  border-color: var(--jj-green);
}

body.wf-menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .wf-hero__menu-bar,
  .wf-hero__mobile-menu-backdrop,
  .wf-hero__mobile-menu-panel,
  .wf-hero__mobile-menu-links li,
  .wf-hero__mobile-menu-phone {
    transition: none !important;
  }

  .wf-hero__mobile-menu-links li,
  .wf-hero__mobile-menu-phone {
    opacity: 1;
    transform: none;
  }
}

.wf-hero__content {
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  padding: 60px 48px 80px 48px;
  max-width: var(--jj-max-hero-copy);
}

.wf-hero__headline {
  color: var(--jj-white);
  font-size: var(--jj-size-hero);
  font-weight: var(--jj-weight-black);
  line-height: var(--jj-lh-hero);
  letter-spacing: var(--jj-track-display);
  text-transform: uppercase;
  margin: 0 0 24px 0;
  text-shadow: 2px 2px 8px var(--jj-shadow-text);
}

.wf-hero__subheadline {
  color: var(--jj-hero-sub);
  font-size: var(--jj-size-hero-sub);
  font-weight: var(--jj-weight-regular);
  line-height: 1.55;
  margin: 0 0 38px 0;
  text-shadow: 1px 1px 4px var(--jj-shadow-text-strong);
}

.wf-hero__cta {
  display: inline-block;
  background: var(--jj-ink-deep);
  color: var(--jj-white);
  text-decoration: none;
  font-size: var(--jj-size-hero-cta);
  font-weight: var(--jj-weight-extrabold);
  letter-spacing: var(--jj-track-btn);
  text-transform: uppercase;
  padding: 20px 40px;
  border: 2.5px solid var(--jj-white);
  border-radius: var(--jj-radius-hero-cta);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.wf-hero__cta:hover {
  background: var(--jj-white);
  color: var(--jj-ink-deep);
}

/* Nav-only shell (e.g. template.html — no hero image or content) */
.wf-hero--nav-only .wf-hero__body {
  min-height: 0;
  overflow: visible;
}

.wf-hero--nav-only .wf-hero__nav {
  background: var(--jj-ink-footer);
}

@media (max-width: 900px) {
  .wf-hero__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--jj-z-nav-mobile);
    flex-wrap: nowrap;
    padding: 12px 20px;
    gap: 12px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.45));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .wf-hero__nav-links {
    display: none;
  }

  .wf-hero__menu-toggle {
    display: flex;
  }

  .wf-hero__nav-phone {
    font-size: 0;
    gap: 0;
  }

  .wf-hero__nav-phone svg {
    width: 22px;
    height: 22px;
  }

  .wf-hero--nav-only .wf-hero__body {
    padding-top: 0;
  }

  .wf-hero--nav-only .wf-hero__body::after {
    content: none;
    display: none;
  }

  body.site-template .site-preview-root {
    padding-top: var(--jj-nav-mobile-h);
  }

  .wf-hero__body {
    padding-top: var(--jj-nav-mobile-h);
  }

  .wf-hero__body::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 75%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.62) 38%,
      rgba(0, 0, 0, 0.28) 68%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .wf-hero__content {
    justify-content: flex-end;
    padding: 24px 20px 48px;
    max-width: none;
  }
}

/* -------------------------------------------------------------------------- */
/* About                                                                      */
/* -------------------------------------------------------------------------- */

.about-section-v1 {
  background: var(--jj-paper);
  padding: var(--jj-section-y) 0;
}

.about-section-v1 .about-container {
  max-width: var(--jj-max);
  margin: 0 auto;
  padding: 0 var(--jj-gutter);
}

.about-section-v1 .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-section-v1 .about-text h2 {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-display-md);
  font-weight: var(--jj-weight-extrabold);
  text-transform: uppercase;
  color: var(--jj-ink);
  margin: 0 0 16px 0;
  line-height: var(--jj-lh-display);
}

.about-section-v1 .about-text p.about-subtitle {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-h4);
  color: var(--jj-green);
  margin: 0 0 24px 0;
  font-weight: var(--jj-weight-semibold);
}

.about-section-v1 .about-text p {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-body);
  line-height: var(--jj-lh-body);
  color: var(--jj-body);
  margin: 0 0 20px 0;
}

.about-section-v1 .about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-section-v1 .stat-item {
  text-align: center;
}

.about-section-v1 .stat-number {
  display: block;
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-stat);
  font-weight: var(--jj-weight-extrabold);
  color: var(--jj-green);
  line-height: 1;
}

.about-section-v1 .stat-label {
  display: block;
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-small);
  color: var(--jj-muted);
  margin-top: 4px;
  font-weight: var(--jj-weight-medium);
}

.about-section-v1 .about-image img {
  width: 100%;
  height: var(--jj-about-image-h);
  object-fit: cover;
  border-radius: var(--jj-radius);
}

@media (max-width: 768px) {
  .about-section-v1 .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section-v1 .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section-v1 .about-container {
    padding: 0 var(--jj-gutter-sm);
  }
}

/* -------------------------------------------------------------------------- */
/* Services                                                                   */
/* -------------------------------------------------------------------------- */

.services-section-v1 {
  background: var(--jj-paper-alt);
  padding: var(--jj-section-y) 0;
}

.services-section-v1 .services-container {
  max-width: var(--jj-max);
  margin: 0 auto;
  padding: 0 var(--jj-gutter);
}

.services-section-v1 .services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-section-v1 .services-header h2 {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-display-lg);
  font-weight: var(--jj-weight-extrabold);
  text-transform: uppercase;
  color: var(--jj-ink);
  margin: 0 0 16px 0;
  line-height: var(--jj-lh-display);
}

.services-section-v1 .services-header p {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-h4);
  color: var(--jj-green);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--jj-lh-body);
}

.services-section-v1 .services-bands {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.services-section-v1 .service-band {
  padding: 32px 40px;
  width: 100%;
}

.services-section-v1 .service-band.standard {
  background: var(--jj-paper);
}

.services-section-v1 .service-band.accent {
  background: var(--jj-green);
}

.services-section-v1 .service-band h3 {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-h3);
  font-weight: var(--jj-weight-bold);
  text-transform: uppercase;
  margin: 0 0 12px 0;
  line-height: var(--jj-lh-tight);
}

.services-section-v1 .service-band.standard h3 {
  color: var(--jj-ink);
}

.services-section-v1 .service-band.accent h3 {
  color: var(--jj-white);
}

.services-section-v1 .service-band p {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-body);
  line-height: var(--jj-lh-body);
  margin: 0;
}

.services-section-v1 .service-band.standard p {
  color: var(--jj-body);
}

.services-section-v1 .service-band.accent p {
  color: var(--jj-white-90);
}

@media (max-width: 768px) {
  .services-section-v1 .services-container {
    padding: 0 var(--jj-gutter-sm);
  }

  .services-section-v1 .service-band {
    padding: 24px;
  }

  .services-section-v1 .services-header h2 {
    font-size: var(--jj-size-display-sm);
  }
}

.services-section-v3 {
  background: var(--jj-paper-alt);
  padding: var(--jj-section-y) 0;
}

.services-section-v3 .services-container {
  max-width: var(--jj-max);
  margin: 0 auto;
  padding: 0 var(--jj-gutter);
}

.services-section-v3 .services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}

.services-section-v3 .services-header h2 {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-display-lg);
  font-weight: var(--jj-weight-extrabold);
  text-transform: uppercase;
  color: var(--jj-ink);
  margin: 0;
  line-height: var(--jj-lh-display);
}

.services-section-v3 .services-header p {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-body);
  color: var(--jj-body);
  margin: 0;
  line-height: var(--jj-lh-body);
}

.services-section-v3 .services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--jj-paper);
  border-radius: var(--jj-radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.services-section-v3 .service-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.services-section-v3 .service-item:last-child {
  border-bottom: none;
}

.services-section-v3 .service-number {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-display-sm);
  font-weight: var(--jj-weight-extrabold);
  color: var(--jj-green);
  line-height: 1;
  padding-top: 2px;
}

.services-section-v3 .service-item h3 {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-h4);
  font-weight: var(--jj-weight-bold);
  text-transform: uppercase;
  color: var(--jj-ink);
  margin: 0 0 8px 0;
  line-height: var(--jj-lh-tight);
}

.services-section-v3 .service-item p {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-body);
  line-height: var(--jj-lh-body);
  color: var(--jj-body);
  margin: 0;
}

@media (max-width: 768px) {
  .services-section-v3 .services-container {
    padding: 0 var(--jj-gutter-sm);
  }

  .services-section-v3 .services-header h2 {
    font-size: var(--jj-size-display-sm);
  }

  .services-section-v3 .services-header {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .services-section-v3 .service-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 22px 20px;
  }

  .services-section-v3 .service-number {
    font-size: var(--jj-size-h3);
  }
}

/* -------------------------------------------------------------------------- */
/* Gallery                                                                    */
/* -------------------------------------------------------------------------- */

.gallery-section-v2 {
  background: var(--jj-paper);
  padding: var(--jj-section-y) 0;
}

.gallery-section-v2 .gallery-container {
  max-width: var(--jj-max-gallery);
  margin: 0 auto;
  padding: 0 var(--jj-gutter);
}

.gallery-section-v2 .gallery-intro {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-section-v2 .gallery-intro h2 {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-display-lg);
  font-weight: var(--jj-weight-extrabold);
  text-transform: uppercase;
  color: var(--jj-ink);
  margin: 0 0 16px 0;
  line-height: var(--jj-lh-display);
}

.gallery-section-v2 .gallery-intro p {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-h4);
  color: var(--jj-green);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--jj-lh-body);
}

.gallery-section-v2 .gallery-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.gallery-section-v2 .masonry-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gallery-section-v2 .masonry-item {
  position: relative;
  border-radius: var(--jj-radius);
  overflow: hidden;
  background: var(--jj-paper-alt);
}

.gallery-section-v2 .masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-section-v2 .masonry-item:nth-child(1) img {
  height: 280px;
  object-fit: cover;
}

.gallery-section-v2 .masonry-item:nth-child(2) img {
  height: 200px;
  object-fit: cover;
}

.gallery-section-v2 .masonry-item:nth-child(3) img {
  height: 240px;
  object-fit: cover;
}

.gallery-section-v2 .masonry-item:hover img {
  transform: scale(1.03);
}

.gallery-section-v2 .item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--jj-ink-90);
  color: var(--jj-white);
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-small);
  font-weight: var(--jj-weight-medium);
  padding: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .gallery-section-v2 .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .gallery-section-v2 .masonry-item:nth-child(1) img,
  .gallery-section-v2 .masonry-item:nth-child(2) img,
  .gallery-section-v2 .masonry-item:nth-child(3) img {
    height: 220px;
  }

  .gallery-section-v2 .gallery-container {
    padding: 0 var(--jj-gutter-sm);
  }
}

.gallery-section-v3 {
  background: var(--jj-paper-alt);
  padding: var(--jj-section-y) 0;
}

.gallery-section-v3 .gallery-container {
  max-width: var(--jj-max-gallery);
  margin: 0 auto;
  padding: 0 var(--jj-gutter);
}

.gallery-section-v3 .gallery-intro {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-section-v3 .gallery-intro h2 {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-display-lg);
  font-weight: var(--jj-weight-extrabold);
  text-transform: uppercase;
  color: var(--jj-ink);
  margin: 0 0 16px 0;
  line-height: var(--jj-lh-display);
}

.gallery-section-v3 .gallery-intro p {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-h4);
  color: var(--jj-green);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--jj-lh-body);
}

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

.gallery-section-v3 .gallery-grid-item {
  background: var(--jj-paper);
  border-radius: var(--jj-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin: 0;
}

.gallery-section-v3 .gallery-grid-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-section-v3 .gallery-grid-item:hover img {
  transform: scale(1.03);
}

.gallery-section-v3 .gallery-grid-caption {
  padding: 16px 18px;
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-small);
  font-weight: var(--jj-weight-semibold);
  color: var(--jj-ink);
  line-height: var(--jj-lh-tight);
  text-align: center;
}

@media (max-width: 768px) {
  .gallery-section-v3 .gallery-container {
    padding: 0 var(--jj-gutter-sm);
  }

  .gallery-section-v3 .gallery-intro h2 {
    font-size: var(--jj-size-display-md);
  }

  .gallery-section-v3 .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-section-v3 .gallery-grid-item img {
    height: 200px;
  }
}

/* -------------------------------------------------------------------------- */
/* CTA                                                                        */
/* -------------------------------------------------------------------------- */

.cta-section-v1 {
  background: var(--jj-ink);
  padding: var(--jj-section-y) 0;
}

.cta-section-v1 .cta-container {
  max-width: var(--jj-max-cta);
  margin: 0 auto;
  padding: 0 var(--jj-gutter);
  text-align: center;
}

.cta-section-v1 .cta-content h2 {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-display-xl);
  font-weight: var(--jj-weight-extrabold);
  text-transform: uppercase;
  color: var(--jj-white);
  margin: 0 0 24px 0;
  line-height: var(--jj-lh-display);
}

.cta-section-v1 .cta-content p {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-h4);
  color: var(--jj-white-90);
  line-height: var(--jj-lh-body);
  margin: 0 0 40px 0;
}

.cta-section-v1 .cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section-v1 .btn-primary {
  background: var(--jj-paper);
  color: var(--jj-ink);
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-btn);
  font-weight: var(--jj-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--jj-track-btn);
  padding: 18px 40px;
  border: 2px solid var(--jj-paper);
  border-radius: var(--jj-radius-btn);
  text-decoration: none;
  transition: all var(--jj-ease);
  min-width: var(--jj-btn-min);
  display: inline-block;
}

.cta-section-v1 .btn-primary:hover {
  background: var(--jj-green);
  border-color: var(--jj-green);
  color: var(--jj-white);
}

.cta-section-v1 .btn-secondary {
  background: transparent;
  color: var(--jj-white);
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-btn);
  font-weight: var(--jj-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--jj-track-btn);
  padding: 16px 36px;
  border: 2px solid var(--jj-green);
  border-radius: var(--jj-radius-btn);
  text-decoration: none;
  transition: all var(--jj-ease);
  min-width: var(--jj-btn-min);
  display: inline-block;
}

.cta-section-v1 .btn-secondary:hover {
  background: var(--jj-green);
  color: var(--jj-white);
}

.cta-section-v1 .trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-section-v1 .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-small);
  color: var(--jj-white-80);
}

.cta-section-v1 .trust-icon {
  color: var(--jj-green);
  font-weight: var(--jj-weight-bold);
}

@media (max-width: 768px) {
  .cta-section-v1 .cta-container {
    padding: 0 var(--jj-gutter-sm);
  }

  .cta-section-v1 .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-section-v1 .trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .cta-section-v1 .cta-content h2 {
    font-size: var(--jj-size-display-md);
  }
}

.contact-section-v3 {
  background: var(--jj-paper-alt);
  padding: var(--jj-section-y) 0;
}

.contact-section-v3 .contact-container {
  max-width: var(--jj-max);
  margin: 0 auto;
  padding: 0 var(--jj-gutter);
}

.contact-section-v3 .contact-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.contact-section-v3 .contact-header h2 {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-display-lg);
  font-weight: var(--jj-weight-extrabold);
  text-transform: uppercase;
  color: var(--jj-ink);
  margin: 0 0 16px 0;
  line-height: var(--jj-lh-display);
}

.contact-section-v3 .contact-header p {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-h4);
  color: var(--jj-body);
  line-height: var(--jj-lh-body);
  margin: 0;
}

.contact-section-v3 .contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.contact-section-v3 .contact-card {
  background: var(--jj-paper);
  border-radius: var(--jj-radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section-v3 .contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--jj-green);
  color: var(--jj-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.contact-section-v3 .contact-card-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-section-v3 .contact-card h3 {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-h4);
  font-weight: var(--jj-weight-bold);
  text-transform: uppercase;
  color: var(--jj-ink);
  margin: 0 0 8px 0;
  line-height: var(--jj-lh-tight);
}

.contact-section-v3 .contact-card p {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-body);
  color: var(--jj-muted);
  line-height: var(--jj-lh-body);
  margin: 0 0 20px 0;
  flex: 1;
}

.contact-section-v3 .contact-card-action {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-btn);
  font-weight: var(--jj-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--jj-track-btn);
  color: var(--jj-green);
  text-decoration: none;
  transition: color var(--jj-ease);
}

.contact-section-v3 .contact-card-action:hover {
  color: var(--jj-green-hover);
  text-decoration: underline;
}

.contact-section-v3 .contact-card-value {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-h4);
  font-weight: var(--jj-weight-bold);
  color: var(--jj-ink);
  margin: 0;
}

.contact-section-v3 .contact-trust-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-section-v3 .contact-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--jj-paper);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-small);
  font-weight: var(--jj-weight-medium);
  color: var(--jj-body);
}

.contact-section-v3 .contact-trust-pill span:first-child {
  color: var(--jj-green);
  font-weight: var(--jj-weight-bold);
}

@media (max-width: 768px) {
  .contact-section-v3 .contact-container {
    padding: 0 var(--jj-gutter-sm);
  }

  .contact-section-v3 .contact-header h2 {
    font-size: var(--jj-size-display-md);
  }

  .contact-section-v3 .contact-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.footer-section-v1 {
  background: var(--jj-ink-footer);
  color: var(--jj-white);
  padding: var(--jj-footer-y) 0 0 0;
}

.footer-section-v1 .footer-container {
  max-width: var(--jj-max);
  margin: 0 auto;
  padding: 0 var(--jj-gutter);
}

.footer-section-v1 .footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-section-v1 .footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px 0;
}

.footer-section-v1 .footer-logo {
  width: var(--jj-logo);
  height: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-section-v1 .footer-brand h3 {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-h3);
  font-weight: var(--jj-weight-bold);
  text-transform: uppercase;
  color: var(--jj-white);
  margin: 0;
  line-height: var(--jj-lh-tight);
}

.footer-section-v1 .footer-brand p {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-body);
  line-height: var(--jj-lh-body);
  color: var(--jj-white-80);
  margin: 0 0 24px 0;
}

.footer-section-v1 .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section-v1 .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-btn);
}

.footer-section-v1 .contact-label {
  color: var(--jj-white-70);
  min-width: 80px;
}

.footer-section-v1 .contact-item a {
  color: var(--jj-green);
  text-decoration: none;
  font-weight: var(--jj-weight-semibold);
}

.footer-section-v1 .contact-item a:hover {
  color: var(--jj-green-hover);
}

.footer-section-v1 .footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-section-v1 .link-group h4 {
  font-family: var(--jj-font-display);
  font-size: var(--jj-size-h4);
  font-weight: var(--jj-weight-bold);
  text-transform: uppercase;
  color: var(--jj-green);
  margin: 0 0 16px 0;
}

.footer-section-v1 .link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section-v1 .link-group li {
  margin-bottom: 8px;
}

.footer-section-v1 .link-group a {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-small);
  color: var(--jj-white-70);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section-v1 .link-group a:hover {
  color: var(--jj-white);
}

.footer-section-v1 .footer-bottom {
  border-top: 1px solid var(--jj-white-15);
  padding: 24px 0;
  text-align: center;
}

.footer-section-v1 .footer-copyright p {
  font-family: var(--jj-font-body);
  font-size: var(--jj-size-caption);
  color: var(--jj-white-60);
  margin: 0 0 4px 0;
}

.footer-section-v1 .footer-tagline {
  color: var(--jj-green);
  font-weight: var(--jj-weight-medium);
  letter-spacing: var(--jj-track-tagline);
}

@media (max-width: 768px) {
  .footer-section-v1 .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-section-v1 .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-section-v1 .footer-container {
    padding: 0 var(--jj-gutter-sm);
  }
}
