@charset "UTF-8";
/* ============================================================================
   system.css  -  Original Landscape Concepts unified design system
   Created 2026-06-25, finalized 2026-06-26. Linked LAST on every page (after
   main.css + custom.css) so it wins the cascade and becomes the single source
   of truth.

   PHILOSOPHY: one token layer, one font (Inter), one radius (7px), one set of
   colors + spacing. Everything that previously had an ad-hoc radius/color now
   resolves through these tokens. Page bodies are left alone.
   ============================================================================ */

/* Inter - actually loaded (the theme declared Inter via @font-face but its src
   path was broken, so the site shipped in Karla). This is the locked font. */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

/* ---------------------------------------------------------------------------
   1. TOKENS - single source of truth
   --------------------------------------------------------------------------- */
:root {
  /* Radius */
  --radius: 7px;
  --radius-pill: 999px;

  /* Color */
  --brand: #88ac2e;
  --brand-dark: #6f8f2e;
  --ink: #2c3a2e;        /* headings / strongest text */
  --body: #545450;       /* body copy */
  --line: #d9d6cf;       /* default hairline border */
  --ridge: #c9c6bf;      /* slightly darker warm line - the top "ridge" */
  --bg: #fff;
  --bg-warm: #f7f6f3;
  --bg-cream: #eceae4;

  /* Spacing scale (8 / 16 / 24 / 32 / 48 / 64) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;

  /* Breakpoints (documentary - used as literals in the media queries below):
     1024 / 640 / 480 */
  --bp-lg: 1024px;
  --bp-md: 640px;
  --bp-sm: 480px;

  /* Type */
  --font: 'Inter', 'Karla', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ---------------------------------------------------------------------------
   2. FONT - apply Inter everywhere, overriding Karla/Archivo. There are no icon
   fonts on this site (the only @font-face faces are Inter), so a universal
   override is safe and bulletproof.
   --------------------------------------------------------------------------- */
html, body { font-family: var(--font) !important; }
body *,
input, button, select, textarea, optgroup { font-family: var(--font) !important; }

/* Sensible weight scale (400/500/600/700) */
body { font-weight: 400; }
strong, b { font-weight: 600; }

/* ---------------------------------------------------------------------------
   3. UNIVERSAL 7px RADIUS - every radiused component resolves to var(--radius).
   Covers: contact box, all buttons (incl. send/submit + .nav-call-now), form
   fields, generic .card, the .svc-grid outer box AND the .svc-card inner boxes,
   portfolio tiles, and review cards.
   --------------------------------------------------------------------------- */
.cta-card,
.card,
.svc-grid,
.svc-card,
.fp-card,
.review-card,
.cta-field input,
.cta-field textarea,
.cta-field select,
.btn,
.cta-btn,
button,
input[type="submit"],
input[type="button"],
.main-nav .nav-call-now,
header.main-header .nav-call-now,
.placeholder-img,
.grid.masonry.gallery a.thumb.item {
  border-radius: var(--radius) !important;
}

/* True pills keep the pill token (none re-introduced; declared for intent). */
.rel-link,
.pill { border-radius: var(--radius-pill) !important; }

/* ---------------------------------------------------------------------------
   4. CONTACT BOX (.cta-card) - one clean, consistent edge: a subtle 1px hairline
   border in --line, plus a slightly darker ridge along the TOP in --ridge that
   mirrors the footer's top-edge treatment (.site-footer { border-top: 1px solid }).
   This replaces the old 1px #e7e5e0 / 12px-radius edge.
   --------------------------------------------------------------------------- */
.cta-card {
  background: var(--bg) !important;
  border: 1px solid var(--line) !important;
  border-top: 2px solid var(--ridge) !important;   /* the ridge, matching the footer's top edge */
  box-shadow: 0 4px 18px rgba(31, 42, 34, 0.05) !important;
}
.cta-field input,
.cta-field textarea,
.cta-field select {
  border: 1px solid var(--line) !important;
  background: #fcfcfb !important;
}
.cta-field input:focus,
.cta-field textarea:focus,
.cta-field select:focus {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 3px rgba(136, 172, 46, 0.12) !important;
  outline: none !important;
}

/* ---------------------------------------------------------------------------
   5. BREADCRUMB - token-driven, identical everywhere. The transform strips the
   per-page inline style="…"; this is the single source of truth for the look.
   --------------------------------------------------------------------------- */
.breadcrumb {
  padding: 0.6rem 2rem;
  font-size: 0.85rem;
  color: var(--body);
  max-width: 1180px;
  margin: 0 auto;
}
.breadcrumb a {
  color: var(--brand);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--brand-dark); text-decoration: underline; }
.breadcrumb span { color: var(--body); }
@media screen and (max-width: 640px) {
  .breadcrumb { padding-left: 0.85rem; padding-right: 0.85rem; }
}

/* ---------------------------------------------------------------------------
   6. HEADER RESPONSIVE - small window + mobile.
   Closed state: one row, the hamburger (menu trigger) to the far LEFT and the
   phone to the far RIGHT. Pure flexbox `order`; no markup change. main.js
   toggles body.nav-open on the trigger (verified).
   --------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  /* Brand far LEFT; the nav group (menu + phone) pinned to the far RIGHT */
  body:not(.nav-open) header.main-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  body:not(.nav-open) header.main-header .brand { margin-right: auto !important; }
  body:not(.nav-open) nav.main-nav ul.nav-items {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    gap: 1.1rem !important;
  }
  /* Menu trigger on the RIGHT, immediately LEFT of the phone, bold + notable */
  body:not(.nav-open) nav.main-nav ul.nav-items li.nav-trigger {
    order: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    cursor: pointer !important;
  }
  /* Phone at the far RIGHT, just to the right of Menu */
  body:not(.nav-open) nav.main-nav ul.nav-items li.nav-cta {
    order: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  /* Hide the desktop text links while closed (they live in the dropdown panel) */
  body:not(.nav-open) nav.main-nav ul.nav-items li:not(.nav-trigger):not(.nav-cta) {
    display: none !important;
  }
}

/* ---------------------------------------------------------------------------
   7. SLEEKER MOBILE MENU - open state is a tight dropdown panel: just the links,
   no logo (the logo is .brand, outside ul.nav-items, so it is never inside the
   panel), no extra chrome.
   --------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  body.nav-open nav.main-nav ul.nav-items {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    background: var(--bg) !important;
    border-top: 2px solid var(--ridge) !important;
    box-shadow: 0 14px 28px rgba(31, 42, 34, 0.10) !important;
    padding: 0.4rem 0 0.6rem !important;
    margin: 0 !important;
    gap: 0 !important;
  }
  /* Keep the trigger as the panel's first row (tap again to close) */
  body.nav-open nav.main-nav ul.nav-items li.nav-trigger {
    order: 0 !important;
    padding: 0.65rem 1.25rem !important;
    margin: 0 !important;
    font-weight: 600 !important;
    color: var(--ink) !important;
  }
  /* Each nav link: clean full-width row, generous tap target */
  body.nav-open nav.main-nav ul.nav-items li:not(.nav-trigger) {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    border-top: 1px solid var(--bg-cream) !important;
  }
  body.nav-open nav.main-nav ul.nav-items li:not(.nav-trigger) .nav-item {
    display: block !important;
    padding: 0.85rem 1.25rem !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: var(--ink) !important;
  }
  /* Phone CTA inside the open panel: a tidy left-aligned row, not stretched full */
  body.nav-open nav.main-nav ul.nav-items li.nav-cta {
    border-top: 1px solid var(--bg-cream) !important;
    padding: 0.7rem 1.25rem !important;
  }
  body.nav-open nav.main-nav ul.nav-items li.nav-cta .nav-call-now {
    display: inline-block !important;
    width: auto !important;
    margin: 0 !important;
  }
}

/* ---------------------------------------------------------------------------
   8. PORTFOLIO GRID - Concept C (tap-to-reveal).
   Convert the Isotope masonry into a uniform fixed-aspect CSS grid:
   3 cols desktop -> 2 cols tablet -> 2 cols mobile. No stagger, equal tiles,
   even gutters. grid.js strips Isotope's inline positioning so this grid governs.
   --------------------------------------------------------------------------- */
.grid.masonry.gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 6px !important;
  margin: 0 !important;
  height: auto !important;
  position: static !important;
  opacity: 1 !important;           /* override the FOUC opacity:0 hold from custom.css */
  min-height: 0 !important;
}
/* Kill the masonry sizer column */
.grid.masonry.gallery .item-sizer { display: none !important; }

.grid.masonry.gallery a.thumb.item {
  position: relative !important;   /* not absolute - beats Isotope's inline left/top */
  left: auto !important;
  top: auto !important;
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: var(--bg-cream) !important;
  aspect-ratio: 4 / 3 !important;
  cursor: pointer !important;
}
.grid.masonry.gallery a.thumb.item img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0 !important;     /* radius lives on the tile, not the image */
  transition: transform 0.45s ease !important;
}

/* Caption overlay - a subtle dark scrim with tag + title. Hidden by default. */
.grid.masonry.gallery a.thumb.item .caption {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  padding: 1rem 1.1rem !important;
  margin: 0 !important;
  background: linear-gradient(to top, rgba(20, 28, 20, 0.72) 0%, rgba(20, 28, 20, 0.22) 45%, rgba(20, 28, 20, 0) 75%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  text-align: left !important;
}
.grid.masonry.gallery a.thumb.item .caption .tag {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.2rem !important;
}
.grid.masonry.gallery a.thumb.item .caption .title {
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
}
/* "See More" affordance - added to the markup by the transform; revealed only
   on the touch-reveal state. */
.grid.masonry.gallery a.thumb.item .caption .see-more {
  display: inline-block !important;
  margin-top: 0.55rem !important;
  color: #fff !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  opacity: 0 !important;
  transition: opacity 0.25s ease !important;
}

/* DESKTOP (hover-capable): hover reveals the scrim + title (the existing look).
   See-More stays hidden - desktop clicks navigate normally. */
@media (hover: hover) and (pointer: fine) {
  .grid.masonry.gallery a.thumb.item:hover img { transform: scale(1.04) !important; }
  .grid.masonry.gallery a.thumb.item:hover .caption { opacity: 1 !important; }
}

/* TOUCH / no-hover: grid.js adds .revealed on first tap -> overlay + See More. */
.grid.masonry.gallery a.thumb.item.revealed .caption { opacity: 1 !important; }
.grid.masonry.gallery a.thumb.item.revealed .caption .see-more { opacity: 1 !important; }
.grid.masonry.gallery a.thumb.item.revealed img { transform: scale(1.04) !important; }

/* Responsive columns: 3 -> 2 (tablet) -> 2 (mobile) */
@media screen and (max-width: 1024px) {
  .grid.masonry.gallery { grid-template-columns: repeat(2, 1fr) !important; }
}
@media screen and (max-width: 480px) {
  .grid.masonry.gallery { grid-template-columns: repeat(2, 1fr) !important; gap: 4px !important; }
  .grid.masonry.gallery a.thumb.item .caption { padding: 0.7rem 0.75rem !important; }
  .grid.masonry.gallery a.thumb.item .caption .title { font-size: 0.9rem !important; }
}

/* ---------------------------------------------------------------------------
   9. SERVICE CARD GRID - consistent token line + radius (radius set in §3).
   --------------------------------------------------------------------------- */
.svc-grid { border: 1px solid var(--line) !important; }
.svc-card { border: 1px solid var(--line) !important; }
.svc-card:hover { border-color: var(--ridge) !important; }

/* ---------------------------------------------------------------------------
   10. HOMEPAGE REVIEWS - trust badges + 6 real Google review cards, on the
   token system. The cards still live in the existing pause-on-hover marquee
   (custom.css .reviews-track); the transform duplicates the 6 cards so the
   translateX(-50%) loop is seamless. Badges sit static above the marquee.
   --------------------------------------------------------------------------- */
.reviews-title { color: var(--ink) !important; }

.reviews-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  margin: -1rem 0 1.75rem;
  font-size: 0.92rem;
}
.reviews-trust a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.reviews-trust a:hover { border-color: var(--brand); box-shadow: 0 4px 14px rgba(31, 42, 34, 0.06); }
.reviews-trust .trust-stars { color: #f4b400; letter-spacing: 1px; }

.review-card {
  background: var(--bg) !important;
  border: 1px solid var(--line) !important;
  border-top: 2px solid var(--ridge) !important;   /* same ridge detail as the contact box */
  box-shadow: 0 2px 10px rgba(31, 42, 34, 0.05) !important;
}
.review-stars { color: #f4b400 !important; }
.review-text { color: var(--body) !important; }
.review-author {
  color: var(--ink) !important;
  font-style: normal !important;
  font-weight: 600 !important;
}
