/* NorthStead WP v2 CSS rebuilt from the static site. */

/* Inline styles from careers.html */

    /* -- Hero (full-bleed, same as service pages) ---------------------------- */
    .careers-hero {
      position: relative;
      min-height: 480px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .careers-hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../media/Grading/Grading3.webp');
      background-size: cover;
      background-position: center 40%;
      transform: scale(1.04);
      transition: transform 8s ease;
    }

    .careers-hero:hover .careers-hero-bg {
      transform: scale(1);
    }

    .careers-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.35) 0%,
        rgba(10,10,10,0.55) 55%,
        rgba(10,10,10,0.88) 100%
      );
    }

    .careers-hero-content {
      position: relative;
      z-index: 2;
      padding: 8rem clamp(1.5rem, 6vw, 5rem) 3.5rem;
      max-width: 700px;
    }

    .careers-hero-back {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--clr-text-muted);
      text-decoration: none;
      margin-bottom: 1.25rem;
      transition: color var(--transition);
    }

    .careers-hero-back:hover {
      color: var(--clr-white);
    }

    .careers-hero-eyebrow {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--clr-gold);
      margin-bottom: 0.75rem;
    }

    .careers-hero-content h1 {
      font-size: clamp(2.4rem, 6vw, 4rem);
      font-weight: 800;
      color: var(--clr-white);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .careers-hero-content p {
      font-size: 1.1rem;
      color: var(--clr-text-muted);
      max-width: 50ch;
    }

    /* -- Why Work With Us ------------------------------------------------------ */
    .careers-why {
      padding: clamp(3.5rem, 7vw, 6rem) 0;
      background: var(--clr-bg);
    }

    .careers-why-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 640px) {
      .careers-why-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width: 900px) {
      .careers-why-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .careers-why-card {
      background: var(--clr-surface);
      border: 1px solid var(--clr-border);
      border-top: 3px solid var(--clr-green);
      border-radius: var(--radius-lg);
      padding: 2rem 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .careers-why-icon {
      font-size: 2rem;
      line-height: 1;
    }

    .careers-why-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--clr-white);
      margin: 0;
    }

    .careers-why-card p {
      font-size: 0.9rem;
      color: var(--clr-text-muted);
      max-width: none;
      line-height: 1.65;
      margin: 0;
    }

    /* -- Open Positions -------------------------------------------------------- */
    .careers-positions {
      padding: clamp(3.5rem, 7vw, 6rem) 0;
      background: var(--clr-bg-2);
    }

    .careers-positions-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .position-card {
      background: var(--clr-bg-3);
      border: 1px solid var(--clr-border);
      border-radius: var(--radius-lg);
      padding: clamp(1.75rem, 3vw, 2.5rem);
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 760px) {
      .position-card {
        grid-template-columns: 1fr auto;
        align-items: start;
      }
    }

    .position-card-body {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .position-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 0.25rem;
    }

    .position-tag {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.25rem 0.65rem;
      border-radius: 99px;
      background: rgba(92, 122, 62, 0.15);
      color: var(--clr-green-lt);
      border: 1px solid rgba(92, 122, 62, 0.3);
    }

    .position-tag.tag-type {
      background: rgba(201, 168, 76, 0.1);
      color: var(--clr-gold);
      border-color: rgba(201, 168, 76, 0.25);
    }

    .position-card h3 {
      font-size: clamp(1.15rem, 2.5vw, 1.45rem);
      font-weight: 700;
      color: var(--clr-white);
      margin: 0;
    }

    .position-card p {
      font-size: 0.92rem;
      color: var(--clr-text-muted);
      line-height: 1.7;
      max-width: none;
      margin: 0;
    }

    .position-details {
      list-style: none;
      padding: 0;
      margin: 0.5rem 0 0;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .position-details li {
      font-size: 0.88rem;
      color: var(--clr-text-muted);
      padding-left: 1.25rem;
      position: relative;
    }

    .position-details li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--clr-green-lt);
      font-size: 0.8rem;
      font-weight: 700;
    }

    .position-card-action {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      align-items: flex-start;
    }

    @media (min-width: 760px) {
      .position-card-action {
        align-items: flex-end;
        padding-top: 0.25rem;
      }
    }

    /* -- How to Apply ---------------------------------------------------------- */
    .careers-apply {
      padding: clamp(3.5rem, 7vw, 6rem) 0;
      background: var(--clr-bg);
    }

    .careers-apply-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: start;
    }

    @media (min-width: 900px) {
      .careers-apply-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 5rem;
      }
    }

    .careers-apply-steps {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      counter-reset: steps;
    }

    .apply-step {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }

    .apply-step-num {
      flex-shrink: 0;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: var(--clr-green);
      color: var(--clr-white);
      font-weight: 800;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .apply-step-body h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--clr-white);
      margin: 0 0 0.35rem;
    }

    .apply-step-body p {
      font-size: 0.9rem;
      color: var(--clr-text-muted);
      max-width: none;
      margin: 0;
      line-height: 1.6;
    }

    .careers-apply-cta {
      background: var(--clr-surface);
      border: 1px solid var(--clr-border);
      border-radius: var(--radius-lg);
      padding: clamp(2rem, 4vw, 3rem);
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .careers-apply-cta h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--clr-white);
      margin: 0;
    }

    .careers-apply-cta p {
      font-size: 0.92rem;
      color: var(--clr-text-muted);
      max-width: none;
      margin: 0;
      line-height: 1.65;
    }

    .careers-apply-cta .btn {
      align-self: flex-start;
    }

    .careers-apply-note {
      font-size: 0.8rem;
      color: var(--clr-text-muted);
      opacity: 0.75;
    }
  /* ── Nav: logo left, links centered ── */
  .nav-container {
    justify-content: space-between;
    position: relative;
  }
  .nav-logo {
    flex-shrink: 0;
    z-index: 1;
  }
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    flex: 0 1 auto;
  }
  .nav-cta { display: none; }
  
  /* ── Footer social icons ── */
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s, transform 0.2s;
    color: var(--clr-green-lt, #7a9f55);
    text-decoration: none;
  }
  .footer-social a:hover {
    background: rgba(255,255,255,0.18);
    transform: scale(1.1);
  }
  .footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-green-lt, #7a9f55);
    stroke: none;
  }
  .footer-social a[aria-label="Instagram"] svg {
    fill: none;
    stroke: var(--clr-green-lt, #7a9f55);
    stroke-width: 2;
  }

  /* ── Nav height: 25% thinner ── */
  .nav-container { padding-top: 0.9rem !important; padding-bottom: 0.9rem !important; }

/* ── SMS FAB - Pill Button ── */
.sms-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4a7c2f 0%, #5c9a3a 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  filter: none;
  animation: fab-pulse 3s ease-in-out infinite;
}
.sms-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(74,124,47,0.65), 0 3px 12px rgba(0,0,0,0.3);
  animation: none;
}
.sms-fab svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff;
  flex-shrink: 0;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-sizing: content-box !important;
  display: block;
}
.sms-fab-label {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #fff !important;
  white-space: nowrap;
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none;
  text-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  right: auto !important;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(74,124,47,0.8),  0 2px 8px rgba(0,0,0,0.35); }
}
@media (max-width: 899px) {
  .sms-fab { display: flex !important; }
}
@media (min-width: 900px) {
  .sms-fab { display: none !important; }
}



/* Inline styles from contact.html */

    /* -- Contact page-specific styles ----------------------------------------- */
    .contact-hero {
      padding: 9rem clamp(1.5rem, 6vw, 5rem) 5rem;
      background: var(--clr-bg-2);
      border-bottom: 1px solid var(--clr-border);
    }

    .contact-hero-eyebrow {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--clr-gold);
      margin-bottom: 0.75rem;
    }

    .contact-hero h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      color: var(--clr-white);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }

    .contact-hero p {
      font-size: 1.1rem;
      color: var(--clr-text-muted);
      max-width: 52ch;
    }

    /* -- Main contact layout --------------------------------------------------- */
    .contact-body {
      padding: clamp(3rem, 6vw, 6rem) 0;
      background: var(--clr-bg);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: start;
    }

    @media (min-width: 900px) {
      .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 5rem;
      }
    }

    /* -- Info sidebar ---------------------------------------------------------- */
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .contact-info-card {
      background: var(--clr-surface);
      border: 1px solid var(--clr-border);
      border-left: 4px solid var(--clr-green);
      border-radius: var(--radius-lg);
      padding: 1.75rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .contact-info-card .info-label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--clr-green-lt);
      margin-bottom: 0.25rem;
    }

    .contact-info-card .info-value {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--clr-white);
      text-decoration: none;
      transition: color var(--transition);
    }

    .contact-info-card .info-value:hover {
      color: var(--clr-green-lt);
    }

    .contact-info-card .info-sub {
      font-size: 0.85rem;
      color: var(--clr-text-muted);
      max-width: none;
    }

    .contact-hours {
      background: var(--clr-bg-3);
      border: 1px solid var(--clr-border);
      border-radius: var(--radius-lg);
      padding: 1.75rem 2rem;
    }

    .contact-hours h4 {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--clr-text-muted);
      margin-bottom: 1rem;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.9rem;
      padding: 0.4rem 0;
      border-bottom: 1px solid var(--clr-border);
    }

    .hours-row:last-child {
      border-bottom: none;
    }

    .hours-row .day {
      color: var(--clr-text-muted);
    }

    .hours-row .time {
      color: var(--clr-white);
      font-weight: 600;
    }

    /* -- Form ------------------------------------------------------------------ */
    .contact-form-wrap {
      background: var(--clr-bg-3);
      border: 1px solid var(--clr-border);
      border-radius: var(--radius-lg);
      padding: clamp(2rem, 4vw, 3rem);
    }

    .contact-form-wrap h2 {
      font-size: clamp(1.3rem, 2.5vw, 1.75rem);
      margin-bottom: 0.5rem;
    }

    .contact-form-wrap .form-tagline {
      font-size: 0.9rem;
      color: var(--clr-text-muted);
      margin-bottom: 2rem;
      max-width: none;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      margin-bottom: 1.25rem;
    }

    @media (min-width: 540px) {
      .form-row.two-col {
        grid-template-columns: 1fr 1fr;
      }
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--clr-text-muted);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--clr-surface);
      border: 1px solid var(--clr-border);
      border-radius: var(--radius);
      color: var(--clr-text);
      font-family: var(--font-body);
      font-size: 0.95rem;
      padding: 0.85rem 1rem;
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
      width: 100%;
    }

    .form-group select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9690' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
      cursor: pointer;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--clr-green);
      box-shadow: 0 0 0 3px rgba(92, 122, 62, 0.18);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: var(--clr-text-muted);
      opacity: 0.6;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 130px;
    }

    .form-group select option {
      background: var(--clr-surface);
      color: var(--clr-text);
    }

    .form-submit {
      margin-top: 1.75rem;
    }

    .form-submit .btn {
      width: 100%;
      padding: 1rem 2rem;
      font-size: 1rem;
      justify-content: center;
    }

    .form-note {
      font-size: 0.78rem;
      color: var(--clr-text-muted);
      text-align: center;
      margin-top: 0.85rem;
      max-width: none;
    }

    /* -- Success / error states ------------------------------------------------ */
    .form-success {
      display: none;
      background: rgba(92, 122, 62, 0.12);
      border: 1px solid var(--clr-green);
      border-radius: var(--radius-lg);
      padding: 2rem;
      text-align: center;
      margin-top: 1.5rem;
    }

    .form-success h3 {
      color: var(--clr-green-lt);
      margin-bottom: 0.5rem;
    }

    .form-success p {
      color: var(--clr-text-muted);
      max-width: none;
      font-size: 0.95rem;
    }

/* ── Nav: logo left, links centered ── */
.nav-container {
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  flex-shrink: 0;
  z-index: 1;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  flex: 0 1 auto;
}
.nav-cta { display: none; }
  
  /* ── Footer social icons ── */
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s, transform 0.2s;
    color: var(--clr-green-lt, #7a9f55);
    text-decoration: none;
  }
  .footer-social a:hover {
    background: rgba(255,255,255,0.18);
    transform: scale(1.1);
  }
  .footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-green-lt, #7a9f55);
    stroke: none;
  }
  .footer-social a[aria-label="Instagram"] svg {
    fill: none;
    stroke: var(--clr-green-lt, #7a9f55);
    stroke-width: 2;
  }

  /* ── Nav height: 25% thinner ── */
  .nav-container { padding-top: 0.9rem !important; padding-bottom: 0.9rem !important; }

/* ── SMS FAB - Pill Button ── */
.sms-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4a7c2f 0%, #5c9a3a 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  filter: none;
  animation: fab-pulse 3s ease-in-out infinite;
}
.sms-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(74,124,47,0.65), 0 3px 12px rgba(0,0,0,0.3);
  animation: none;
}
.sms-fab svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff;
  flex-shrink: 0;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-sizing: content-box !important;
  display: block;
}
.sms-fab-label {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #fff !important;
  white-space: nowrap;
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none;
  text-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  right: auto !important;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(74,124,47,0.8),  0 2px 8px rgba(0,0,0,0.35); }
}
@media (max-width: 899px) {
  .sms-fab { display: flex !important; }
}
@media (min-width: 900px) {
  .sms-fab { display: none !important; }
}



/* Inline styles from index.html */

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  --black:    #0a0a0a;
  --dark:     #111111;
  --dark2:    #1a1a1a;
  --accent:   #4a7c2f;
  --accent2:  #5c9a3a;
  --gold:     #ffd700;
  --red:      #c0271d;
  --white:    #ffffff;
  --muted:    rgba(255,255,255,0.45);
  --ease:     cubic-bezier(0.25,0.46,0.45,0.94);
  --nav-h:    53px;
  --ticker-h: 36px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: var(--ticker-h);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* Header wrap goes full browser width - no max-width cap */
#site-header > .wrap {
  max-width: 100%;
  padding: 0 clamp(20px, 4vw, 60px);
}

.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 20px;
}

.section {
  padding: clamp(60px, 8vw, 120px) 0;
}

.section--dark { background: var(--dark); }
.section--soft { background: var(--dark2); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent2);
  border-color: var(--accent2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}

#site-header.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-h);
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-logo .logo-main { display: block; color: var(--white); }
.nav-logo .logo-stead { color: var(--accent2); }
.nav-logo small {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--accent2);
  font-weight: 600;
}



.nav-links a,
.nav-item > a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-item > a:hover { color: var(--white); }

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-item > a::after {
  content: '▾';
  font-size: 0.65rem;
  opacity: 0.6;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  background: rgba(17,17,17,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  justify-self: end;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav drawer */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.nav-mobile.open { transform: translateX(0); }

.nav-mobile a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:hover { color: var(--accent2); }

.nav-mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile image fallback - hidden on desktop */
.hero-mobile-img {
  display: none;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
  animation: fadeUp 0.9s var(--ease) both;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: normal;
  color: var(--accent2);
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions { justify-content: center; }
.hero-actions .btn { min-width: 200px; justify-content: center; }

/* Reviews badge - bottom left */
.hero-badge {
  position: absolute;
  bottom: clamp(80px, 10vh, 100px);
  left: clamp(20px, 4vw, 56px);
  z-index: 2;
  animation: fadeUp 1s 0.5s var(--ease) both;
}
.hero-badge a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  padding: 10px 16px;
  backdrop-filter: none;
}
.hero-badge .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.hero-badge .rating-txt { font-size: 0.86rem; font-weight: 600; letter-spacing: 0.05em; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: clamp(20px, 4vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  animation: fadeUp 1s 1s var(--ease) both;
}
.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  display: flex;
  align-items: stretch;
  background: var(--red);
  color: var(--white);
  overflow: hidden;
  height: var(--ticker-h);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  flex-shrink: 0;
}
/* When scrolled past hero, lock to top under nav */
.ticker-bar.at-top {
  position: fixed;
  bottom: auto;
  top: var(--nav-h);
  left: 0;
  right: 0;
}

/* Pinned BREAKING NEWS label - matches GET YOUR QUOTE button */
.ticker-label {
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: var(--gold);
  border-right: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 28px;
}
.ticker-dot { color: rgba(255,255,255,0.55); font-size: 0.45rem; }

.ticker-cta {
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: var(--gold);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.ticker-cta:hover { background: #e6c200; color: #000; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num em { font-style: normal; color: var(--accent2); }
.stat-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: clamp(60px, 8vw, 120px) 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.mission-text {
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
  font-size: 0.97rem;
  line-height: 1.75;
}

/* Two-photo collage */
.about-collage {
  position: relative;
  height: 480px;
}

.collage-img {
  position: absolute;
  object-fit: cover;
  border: 3px solid var(--dark);
}

.collage-img--back {
  width: 78%;
  height: 75%;
  top: 0; left: 0;
}

.collage-img--front {
  width: 55%;
  height: 55%;
  bottom: 0; right: 0;
  box-shadow: -4px -4px 16px rgba(0,0,0,0.4);
}

/* ============================================================
   SERVICES INTRO
   ============================================================ */
.services-intro {
  padding: clamp(60px, 8vw, 100px) 0 clamp(30px, 4vw, 50px);
  background: var(--black);
}

.services-intro .section-title {
  font-size: clamp(3rem, 7vw, 6rem);
}

/* ============================================================
   SERVICE SCROLL SECTIONS
   ============================================================ */
.svc-scroll-section {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

/* Full-section clickable overlay */
.svc-section-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
}
/* Keep Learn More button clickable above the section link overlay */
.svc-scroll-content .btn {
  position: relative;
  z-index: 4;
}

.svc-scroll-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
  z-index: 0;
}

.svc-scroll-section:hover .svc-scroll-bg {
  transform: scale(1.04);
}

.svc-scroll-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.1) 100%
  );
  z-index: 1;
}

.svc-scroll-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 20px clamp(50px, 8vh, 80px);
  width: 100%;
  max-width: 800px;
  pointer-events: none;
}

.svc-scroll-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  white-space: nowrap;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.svc-scroll-sub {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.svc-scroll-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  pointer-events: all;
}

/* Dot nav */
.section-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.section-dots.visible {
  opacity: 1;
  pointer-events: all;
}

.section-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.section-dot.active,
.section-dot:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.4);
}

/* Dot label on hover */
.section-dot::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.section-dot:hover::before { opacity: 1; }

/* ============================================================
   RECENT PROJECTS GALLERY - MASONRY
   ============================================================ */
.gallery-section { background: var(--dark); }

.projects-masonry {
  columns: 3;
  column-gap: 10px;
}
@media (max-width: 899px) { .projects-masonry { columns: 2; } }
@media (max-width: 599px) { .projects-masonry { columns: 1; } }

.project-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.project-item.project-hidden { display: none; }
.project-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.project-item:hover img { transform: scale(1.03); }
.project-tint {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: rgba(212,175,55,0);
  transition: background 0.35s ease;
  pointer-events: none;
}
.project-item:hover .project-tint { background: rgba(212,175,55,0.15); }
.project-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4AF37;
  background: rgba(10,10,10,0.75);
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* Legacy grid (unused) */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 0;
}

.project-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.project-item:hover img { transform: scale(1.06); }

.project-tag {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--accent);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.project-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid rgba(255,255,255,0.1);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close {
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  font-size: 1.5rem;
  border-radius: 50%;
}
.lightbox-prev, .lightbox-next {
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 80px;
  font-size: 2rem;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  position: relative;
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  font-family: Georgia, serif;
}

.testi-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text { font-size: 0.92rem; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 20px; }
.testi-author { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em; }

/* Leave a Review block */
.review-cta {
  text-align: center;
  margin-top: 48px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.review-cta-stars { color: var(--gold); font-size: 2rem; letter-spacing: 6px; margin-bottom: 12px; }
.review-cta-text { font-size: 1rem; color: var(--muted); margin-bottom: 20px; }
.review-cta .btn { margin: 0 auto; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: var(--dark2);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  overflow: hidden;
}

.cta-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.cta-banner-content { position: relative; z-index: 1; }

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.cta-text {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  font-size: 1rem;
}

.cta-banner .btn-group { justify-content: center; }

.cta-review-link {
  display: block;
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.cta-review-link:hover { color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 14px;
}
.footer-brand-name span { color: var(--accent2); }

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  color: var(--accent2);
}
.footer-social a svg {
  width: 20px; height: 20px;
  fill: var(--accent2);
  stroke: none;
}
.footer-social a[aria-label="Instagram"] svg {
  fill: none;
  stroke: var(--accent2);
  stroke-width: 2;
}
.footer-social a:hover {
  background: #4a4a4a;
  transform: scale(1.1);
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

/* Contact buttons in footer */
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  margin-bottom: 10px;
}
.footer-contact-btn:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--accent2); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent2); opacity: 0.8; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-collage { height: 320px; order: -1; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .testi-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-dots { display: none; }
}

@media (max-width: 600px) {
  .hero-video-el { display: none; }
  .hero-mobile-img { display: block; }

  .projects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .svc-scroll-content { padding-bottom: 60px; }
  .ticker-cta { padding: 0 14px; font-size: 0.62rem; }
}

/* ============================================================
   MOBILE-ONLY ELEMENTS
   ============================================================ */
.mobile-only { display: none; }
@media (max-width: 899px) { .mobile-only { display: inline-flex; } }

/* ============================================================
   SMS FLOATING BUTTON
   ============================================================ */
/* ── SMS FAB - Pill Button ── */
.sms-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4a7c2f 0%, #5c9a3a 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  filter: none;
  animation: fab-pulse 3s ease-in-out infinite;
}
.sms-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(74,124,47,0.65), 0 3px 12px rgba(0,0,0,0.3);
  animation: none;
}
.sms-fab svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff;
  flex-shrink: 0;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-sizing: content-box !important;
  display: block;
}
.sms-fab-label {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #fff !important;
  white-space: nowrap;
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none;
  text-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  right: auto !important;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(74,124,47,0.8),  0 2px 8px rgba(0,0,0,0.35); }
}
@media (max-width: 899px) {
  .sms-fab { display: flex !important; }
}
@media (min-width: 900px) {
  .sms-fab { display: none !important; }
}


/* Inline styles from 3d-renderings.html */

/* ── Nav: logo left, links centered ── */
.nav-container {
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  flex-shrink: 0;
  z-index: 1;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  flex: 0 1 auto;
}
.nav-cta { display: none; }

  /* ── Footer social icons ── */
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s, transform 0.2s;
    color: var(--clr-green-lt, #7a9f55);
    text-decoration: none;
  }
  .footer-social a:hover {
    background: rgba(255,255,255,0.18);
    transform: scale(1.1);
  }
  .footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-green-lt, #7a9f55);
    stroke: none;
  }
  .footer-social a[aria-label="Instagram"] svg {
    fill: none;
    stroke: var(--clr-green-lt, #7a9f55);
    stroke-width: 2;
  }

  /* ── Nav height: 25% thinner ── */
  .nav-container { padding-top: 0.9rem !important; padding-bottom: 0.9rem !important; }

/* ── SMS FAB - Pill Button ── */
.sms-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4a7c2f 0%, #5c9a3a 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  filter: none;
  animation: fab-pulse 3s ease-in-out infinite;
}
.sms-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(74,124,47,0.65), 0 3px 12px rgba(0,0,0,0.3);
  animation: none;
}
.sms-fab svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff;
  flex-shrink: 0;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-sizing: content-box !important;
  display: block;
}
.sms-fab-label {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #fff !important;
  white-space: nowrap;
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none;
  text-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  right: auto !important;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(74,124,47,0.8),  0 2px 8px rgba(0,0,0,0.35); }
}
@media (max-width: 899px) {
  .sms-fab { display: flex !important; }
}
@media (min-width: 900px) {
  .sms-fab { display: none !important; }
}



/* Inline styles from decks.html */

/* ── Nav: logo left, links centered ── */
.nav-container {
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  flex-shrink: 0;
  z-index: 1;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  flex: 0 1 auto;
}
.nav-cta { display: none; }

  /* ── Footer social icons ── */
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s, transform 0.2s;
    color: var(--clr-green-lt, #7a9f55);
    text-decoration: none;
  }
  .footer-social a:hover {
    background: rgba(255,255,255,0.18);
    transform: scale(1.1);
  }
  .footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-green-lt, #7a9f55);
    stroke: none;
  }
  .footer-social a[aria-label="Instagram"] svg {
    fill: none;
    stroke: var(--clr-green-lt, #7a9f55);
    stroke-width: 2;
  }

  /* ── Nav height: 25% thinner ── */
  .nav-container { padding-top: 0.9rem !important; padding-bottom: 0.9rem !important; }

/* ── SMS FAB - Pill Button ── */
.sms-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4a7c2f 0%, #5c9a3a 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  filter: none;
  animation: fab-pulse 3s ease-in-out infinite;
}
.sms-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(74,124,47,0.65), 0 3px 12px rgba(0,0,0,0.3);
  animation: none;
}
.sms-fab svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff;
  flex-shrink: 0;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-sizing: content-box !important;
  display: block;
}
.sms-fab-label {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #fff !important;
  white-space: nowrap;
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none;
  text-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  right: auto !important;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(74,124,47,0.8),  0 2px 8px rgba(0,0,0,0.35); }
}
@media (max-width: 899px) {
  .sms-fab { display: flex !important; }
}
@media (min-width: 900px) {
  .sms-fab { display: none !important; }
}



/* Inline styles from entrances.html */

/* ── Nav: logo left, links centered ── */
.nav-container {
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  flex-shrink: 0;
  z-index: 1;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  flex: 0 1 auto;
}
.nav-cta { display: none; }

  /* ── Footer social icons ── */
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s, transform 0.2s;
    color: var(--clr-green-lt, #7a9f55);
    text-decoration: none;
  }
  .footer-social a:hover {
    background: rgba(255,255,255,0.18);
    transform: scale(1.1);
  }
  .footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-green-lt, #7a9f55);
    stroke: none;
  }
  .footer-social a[aria-label="Instagram"] svg {
    fill: none;
    stroke: var(--clr-green-lt, #7a9f55);
    stroke-width: 2;
  }

  /* ── Nav height: 25% thinner ── */
  .nav-container { padding-top: 0.9rem !important; padding-bottom: 0.9rem !important; }

/* ── SMS FAB - Pill Button ── */
.sms-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4a7c2f 0%, #5c9a3a 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  filter: none;
  animation: fab-pulse 3s ease-in-out infinite;
}
.sms-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(74,124,47,0.65), 0 3px 12px rgba(0,0,0,0.3);
  animation: none;
}
.sms-fab svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff;
  flex-shrink: 0;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-sizing: content-box !important;
  display: block;
}
.sms-fab-label {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #fff !important;
  white-space: nowrap;
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none;
  text-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  right: auto !important;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(74,124,47,0.8),  0 2px 8px rgba(0,0,0,0.35); }
}
@media (max-width: 899px) {
  .sms-fab { display: flex !important; }
}
@media (min-width: 900px) {
  .sms-fab { display: none !important; }
}



/* Inline styles from fencing.html */

/* ── Nav: logo left, links centered ── */
.nav-container {
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  flex-shrink: 0;
  z-index: 1;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  flex: 0 1 auto;
}
.nav-cta { display: none; }

  /* ── Footer social icons ── */
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s, transform 0.2s;
    color: var(--clr-green-lt, #7a9f55);
    text-decoration: none;
  }
  .footer-social a:hover {
    background: rgba(255,255,255,0.18);
    transform: scale(1.1);
  }
  .footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-green-lt, #7a9f55);
    stroke: none;
  }
  .footer-social a[aria-label="Instagram"] svg {
    fill: none;
    stroke: var(--clr-green-lt, #7a9f55);
    stroke-width: 2;
  }

  /* ── Nav height: 25% thinner ── */
  .nav-container { padding-top: 0.9rem !important; padding-bottom: 0.9rem !important; }

/* ── SMS FAB - Pill Button ── */
.sms-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4a7c2f 0%, #5c9a3a 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  filter: none;
  animation: fab-pulse 3s ease-in-out infinite;
}
.sms-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(74,124,47,0.65), 0 3px 12px rgba(0,0,0,0.3);
  animation: none;
}
.sms-fab svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff;
  flex-shrink: 0;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-sizing: content-box !important;
  display: block;
}
.sms-fab-label {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #fff !important;
  white-space: nowrap;
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none;
  text-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  right: auto !important;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(74,124,47,0.8),  0 2px 8px rgba(0,0,0,0.35); }
}
@media (max-width: 899px) {
  .sms-fab { display: flex !important; }
}
@media (min-width: 900px) {
  .sms-fab { display: none !important; }
}



/* Inline styles from grading.html */

/* ── Nav: logo left, links centered ── */
.nav-container {
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  flex-shrink: 0;
  z-index: 1;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  flex: 0 1 auto;
}
.nav-cta { display: none; }

  /* ── Footer social icons ── */
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s, transform 0.2s;
    color: var(--clr-green-lt, #7a9f55);
    text-decoration: none;
  }
  .footer-social a:hover {
    background: rgba(255,255,255,0.18);
    transform: scale(1.1);
  }
  .footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-green-lt, #7a9f55);
    stroke: none;
  }
  .footer-social a[aria-label="Instagram"] svg {
    fill: none;
    stroke: var(--clr-green-lt, #7a9f55);
    stroke-width: 2;
  }

  /* ── Nav height: 25% thinner ── */
  .nav-container { padding-top: 0.9rem !important; padding-bottom: 0.9rem !important; }

/* ── SMS FAB - Pill Button ── */
.sms-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4a7c2f 0%, #5c9a3a 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  filter: none;
  animation: fab-pulse 3s ease-in-out infinite;
}
.sms-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(74,124,47,0.65), 0 3px 12px rgba(0,0,0,0.3);
  animation: none;
}
.sms-fab svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff;
  flex-shrink: 0;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-sizing: content-box !important;
  display: block;
}
.sms-fab-label {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #fff !important;
  white-space: nowrap;
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none;
  text-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  right: auto !important;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(74,124,47,0.8),  0 2px 8px rgba(0,0,0,0.35); }
}
@media (max-width: 899px) {
  .sms-fab { display: flex !important; }
}
@media (min-width: 900px) {
  .sms-fab { display: none !important; }
}



/* Inline styles from interlock.html */

/* ── Nav: logo left, links centered ── */
.nav-container {
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  flex-shrink: 0;
  z-index: 1;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  flex: 0 1 auto;
}
.nav-cta { display: none; }

  /* ── Footer social icons ── */
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s, transform 0.2s;
    color: var(--clr-green-lt, #7a9f55);
    text-decoration: none;
  }
  .footer-social a:hover {
    background: rgba(255,255,255,0.18);
    transform: scale(1.1);
  }
  .footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-green-lt, #7a9f55);
    stroke: none;
  }
  .footer-social a[aria-label="Instagram"] svg {
    fill: none;
    stroke: var(--clr-green-lt, #7a9f55);
    stroke-width: 2;
  }

  /* ── Nav height: 25% thinner ── */
  .nav-container { padding-top: 0.9rem !important; padding-bottom: 0.9rem !important; }

/* ── SMS FAB - Pill Button ── */
.sms-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4a7c2f 0%, #5c9a3a 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  filter: none;
  animation: fab-pulse 3s ease-in-out infinite;
}
.sms-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(74,124,47,0.65), 0 3px 12px rgba(0,0,0,0.3);
  animation: none;
}
.sms-fab svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff;
  flex-shrink: 0;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-sizing: content-box !important;
  display: block;
}
.sms-fab-label {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #fff !important;
  white-space: nowrap;
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none;
  text-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  right: auto !important;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(74,124,47,0.8),  0 2px 8px rgba(0,0,0,0.35); }
}
@media (max-width: 899px) {
  .sms-fab { display: flex !important; }
}
@media (min-width: 900px) {
  .sms-fab { display: none !important; }
}



/* Inline styles from parging.html */

/* ── Nav: logo left, links centered ── */
.nav-container {
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  flex-shrink: 0;
  z-index: 1;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  flex: 0 1 auto;
}
.nav-cta { display: none; }

  /* ── Footer social icons ── */
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s, transform 0.2s;
    color: var(--clr-green-lt, #7a9f55);
    text-decoration: none;
  }
  .footer-social a:hover {
    background: rgba(255,255,255,0.18);
    transform: scale(1.1);
  }
  .footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-green-lt, #7a9f55);
    stroke: none;
  }
  .footer-social a[aria-label="Instagram"] svg {
    fill: none;
    stroke: var(--clr-green-lt, #7a9f55);
    stroke-width: 2;
  }

  /* ── Nav height: 25% thinner ── */
  .nav-container { padding-top: 0.9rem !important; padding-bottom: 0.9rem !important; }

/* ── SMS FAB - Pill Button ── */
.sms-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4a7c2f 0%, #5c9a3a 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  filter: none;
  animation: fab-pulse 3s ease-in-out infinite;
}
.sms-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(74,124,47,0.65), 0 3px 12px rgba(0,0,0,0.3);
  animation: none;
}
.sms-fab svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff;
  flex-shrink: 0;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-sizing: content-box !important;
  display: block;
}
.sms-fab-label {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #fff !important;
  white-space: nowrap;
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none;
  text-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  right: auto !important;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(74,124,47,0.8),  0 2px 8px rgba(0,0,0,0.35); }
}
@media (max-width: 899px) {
  .sms-fab { display: flex !important; }
}
@media (min-width: 900px) {
  .sms-fab { display: none !important; }
}



/* Inline styles from retaining-walls.html */

/* ── Nav: logo left, links centered ── */
.nav-container {
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  flex-shrink: 0;
  z-index: 1;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  flex: 0 1 auto;
}
.nav-cta { display: none; }

  /* ── Footer social icons ── */
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s, transform 0.2s;
    color: var(--clr-green-lt, #7a9f55);
    text-decoration: none;
  }
  .footer-social a:hover {
    background: rgba(255,255,255,0.18);
    transform: scale(1.1);
  }
  .footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-green-lt, #7a9f55);
    stroke: none;
  }
  .footer-social a[aria-label="Instagram"] svg {
    fill: none;
    stroke: var(--clr-green-lt, #7a9f55);
    stroke-width: 2;
  }

  /* ── Nav height: 25% thinner ── */
  .nav-container { padding-top: 0.9rem !important; padding-bottom: 0.9rem !important; }

/* ── SMS FAB - Pill Button ── */
.sms-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4a7c2f 0%, #5c9a3a 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  filter: none;
  animation: fab-pulse 3s ease-in-out infinite;
}
.sms-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(74,124,47,0.65), 0 3px 12px rgba(0,0,0,0.3);
  animation: none;
}
.sms-fab svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff;
  flex-shrink: 0;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-sizing: content-box !important;
  display: block;
}
.sms-fab-label {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #fff !important;
  white-space: nowrap;
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none;
  text-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  right: auto !important;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(74,124,47,0.8),  0 2px 8px rgba(0,0,0,0.35); }
}
@media (max-width: 899px) {
  .sms-fab { display: flex !important; }
}
@media (min-width: 900px) {
  .sms-fab { display: none !important; }
}



/* Inline styles from sodding.html */

/* ── Nav: logo left, links centered ── */
.nav-container {
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  flex-shrink: 0;
  z-index: 1;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  flex: 0 1 auto;
}
.nav-cta { display: none; }

  /* ── Footer social icons ── */
  .footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s, transform 0.2s;
    color: var(--clr-green-lt, #7a9f55);
    text-decoration: none;
  }
  .footer-social a:hover {
    background: rgba(255,255,255,0.18);
    transform: scale(1.1);
  }
  .footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-green-lt, #7a9f55);
    stroke: none;
  }
  .footer-social a[aria-label="Instagram"] svg {
    fill: none;
    stroke: var(--clr-green-lt, #7a9f55);
    stroke-width: 2;
  }

  /* ── Nav height: 25% thinner ── */
  .nav-container { padding-top: 0.9rem !important; padding-bottom: 0.9rem !important; }

/* ── SMS FAB - Pill Button ── */
.sms-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4a7c2f 0%, #5c9a3a 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 22px 13px 16px;
  box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  filter: none;
  animation: fab-pulse 3s ease-in-out infinite;
}
.sms-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(74,124,47,0.65), 0 3px 12px rgba(0,0,0,0.3);
  animation: none;
}
.sms-fab svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff;
  flex-shrink: 0;
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-sizing: content-box !important;
  display: block;
}
.sms-fab-label {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: #fff !important;
  white-space: nowrap;
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none;
  text-shadow: none !important;
  background: none !important;
  padding: 0 !important;
  right: auto !important;
}
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(74,124,47,0.55), 0 2px 8px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(74,124,47,0.8),  0 2px 8px rgba(0,0,0,0.35); }
}
@media (max-width: 899px) {
  .sms-fab { display: flex !important; }
}
@media (min-width: 900px) {
  .sms-fab { display: none !important; }
}



/* Shared service CSS */
/* ═══════════════════════════════════════════════════════════════════════════
   NORTHSTEAD LANDSCAPING - SERVICE PAGE STYLESHEET
   Shared styles for all individual service pages
═══════════════════════════════════════════════════════════════════════════ */

/* ── Custom Properties ──────────────────────────────────────────────────────── */
:root {
  --clr-bg:         #0a0a0a;
  --clr-bg-2:       #111111;
  --clr-bg-3:       #1a1a1a;
  --clr-surface:    #222222;
  --clr-border:     #2e2e2e;

  --clr-green:      #5c7a3e;
  --clr-green-lt:   #7a9f55;
  --clr-green-dk:   #3d5229;

  --clr-gold:       #c9a84c;
  --clr-gold-lt:    #e2c472;

  --clr-text:       #e8e4dc;
  --clr-text-muted: #9a9690;
  --clr-text-dark:  #c4bfb5;
  --clr-white:      #f5f2ec;

  --font-body:   'Montserrat', sans-serif;
  --font-serif:  'Lora', serif;

  --container:   1200px;
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.5);
}

/* ── Reset & Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-white);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
em { font-family: var(--font-serif); font-style: italic; color: var(--clr-gold); }
p  { color: var(--clr-text-dark); max-width: 68ch; }

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-green);
  color: #fff;
  border: 2px solid var(--clr-green);
}
.btn-primary:hover {
  background: var(--clr-green-lt);
  border-color: var(--clr-green-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,122,62,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: var(--clr-white);
  background: rgba(255,255,255,0.07);
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1rem, 5vw, 3rem);
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

/* New 2-color logo style */
.logo-main {
  display: block;
  color: var(--clr-white);
}
.logo-stead {
  color: var(--clr-green-lt);
}
.nav-logo small {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--clr-green-lt);
  text-transform: uppercase;
}

/* Legacy (kept for footer) */
.logo-north {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--clr-white);
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--clr-green-lt);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--clr-text-dark);
  transition: color var(--transition);
  border-radius: var(--radius);
}
.nav-links a:hover { color: var(--clr-white); }

.nav-links .nav-cta {
  background: var(--clr-green);
  color: #fff;
  padding: 0.55rem 1.25rem;
  margin-left: 0.5rem;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover { background: var(--clr-green-lt); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 5rem 2rem 2rem;
    background: var(--clr-bg-2);
    border-left: 1px solid var(--clr-border);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; width: 100%; padding: 0.75rem 1rem; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 0.5rem; width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE PAGE HERO
═══════════════════════════════════════════════════════════════════════════ */
.sp-hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.sp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 6s ease;
}

.sp-hero-bg.loaded { transform: scale(1); }

.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.82) 100%
  );
}

.sp-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1.5rem, 6vw, 5rem) clamp(3rem, 6vh, 5rem);
  width: 100%;
}

.sp-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.sp-hero-back:hover { color: #fff; }

.sp-hero-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
}

.sp-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MAIN CONTENT AREA
═══════════════════════════════════════════════════════════════════════════ */
.sp-main {
  background: var(--clr-bg);
}

.sp-intro {
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(3rem, 5vw, 5rem);
  background: var(--clr-bg-2);
}

.sp-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .sp-intro-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
  }
}

.sp-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: var(--clr-text-dark);
}

.sp-intro-text p:last-child { margin-bottom: 0; }

.sp-intro-aside {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-green);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
}

.sp-intro-aside h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-green-lt);
  margin-bottom: 1.25rem;
}

.sp-intro-aside ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
  padding: 0;
}

.sp-intro-aside li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--clr-text-dark);
  line-height: 1.5;
}

.sp-intro-aside li::before {
  content: '✓';
  color: var(--clr-green-lt);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── Process Section ──────────────────────────────────────────────────────── */
.sp-process {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--clr-bg);
}

.sp-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-green-lt);
  margin-bottom: 0.75rem;
}

.sp-section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 3rem;
}

.sp-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sp-steps { grid-template-columns: repeat(4, 1fr); }
}

.sp-step {
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.sp-step:hover {
  border-color: var(--clr-green);
  transform: translateY(-4px);
}

.sp-step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-green);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.sp-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.sp-step p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: none;
}

/* ── Gallery Section ──────────────────────────────────────────────────────── */
.sp-gallery {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--clr-bg-2);
}

.sp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .sp-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .sp-gallery-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sp-gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.sp-gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--clr-bg-3);
  position: relative;
}

.sp-gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.sp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.sp-gallery-item:hover img { transform: scale(1.05); }

/* ── Testimonial ──────────────────────────────────────────────────────────── */
.sp-testimonials {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: var(--clr-bg);
}

.sp-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .sp-testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1100px) {
  .sp-testimonials-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.sp-testimonial {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.sp-testimonial:hover { border-color: var(--clr-green); transform: translateY(-4px); }

.sp-stars {
  color: var(--clr-gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.sp-stars::before {
  content: '\2605\2605\2605\2605\2605';
}

.sp-testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--clr-text);
  flex: 1;
}

.sp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-green-dk);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.sp-testimonial-author strong { display: block; font-size: 0.9rem; color: var(--clr-white); }
.sp-testimonial-author span { font-size: 0.78rem; color: var(--clr-text-muted); }

/* ── CTA Section ──────────────────────────────────────────────────────────── */
.sp-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--clr-bg-3);
  text-align: center;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.sp-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.sp-cta p {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.sp-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--clr-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 600px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand .logo-north { font-size: 1.4rem; }
.footer-brand p { font-size: 0.8rem; color: var(--clr-text-muted); margin-top: 0.25rem; max-width: none; }
.footer-tagline { font-style: italic; font-family: var(--font-serif); color: var(--clr-gold) !important; margin-top: 0.5rem !important; }

.footer-links h4, .footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-contact a { font-size: 0.9rem; color: var(--clr-text-muted); transition: color var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--clr-white); }
.footer-contact p { font-size: 0.9rem; color: var(--clr-text-muted); margin-bottom: 0.5rem; max-width: none; }

.footer-bottom { border-top: 1px solid var(--clr-border); padding: 1.25rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--clr-text-muted); max-width: none; }

/* ── Scroll animation ─────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* -- Lightbox ------------------------------------------------ */
#sp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
#sp-lightbox.active { display: flex; }

.sp-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}

.sp-lb-img {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  z-index: 2;
}

.sp-lb-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 3;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.sp-lb-close:hover { opacity: 1; }

.sp-lb-prev,
.sp-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  width: 46px;
  height: 46px;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
}
.sp-lb-prev:hover,
.sp-lb-next:hover { background: rgba(212,175,55,0.3); }
.sp-lb-prev { left: 18px; }
.sp-lb-next { right: 18px; }

/* ═══════════════════════════════════════════════════════════════════════════
   SMS FLOATING BUTTON - Chat Bubble Style
═══════════════════════════════════════════════════════════════════════════ */
.sms-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  display: none;
  align-items: center;
  gap: 0;
  text-decoration: none;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: transform 0.2s;
}
.sms-fab:hover { transform: scale(1.08); }

.sms-fab svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #5c7a3e;
  color: #fff;
  border-radius: 50%;
  padding: 16px;
  box-sizing: border-box;
  flex-shrink: 0;
  transition: background 0.2s;
}
.sms-fab:hover svg { background: #7a9f55; }

.sms-fab-label {
  position: absolute;
  right: 74px;
  background: transparent;
  color: #fff;
  white-space: nowrap;
  padding: 0.5rem 0.85rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  pointer-events: auto;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}
.sms-fab-label::after { display: none; }
.sms-fab:hover .sms-fab-label { opacity: 1; transform: translateX(0); }

@media (max-width: 899px) {
  .sms-fab { display: flex; bottom: 1.25rem; right: 1.25rem; }
  .sms-fab svg { width: 58px; height: 58px; padding: 14px; }
  .sms-fab-label { opacity: 1; transform: translateX(0); font-size: 0.75rem; right: 68px; }
}

/* V2.6 safety: visibility, header, ticker, and desktop/mobile behavior. */
.reveal { opacity: 1; transform: translateY(0); }
#sp-lightbox.open { display: flex; }
:root { --nav-h: 53px; --ticker-h: 36px; }
#site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: var(--nav-h) !important;
  z-index: 10000 !important;
  background: rgba(17,17,17,0.68) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}
#site-header.scrolled { background: rgba(17,17,17,0.96) !important; }
#site-header > .wrap,
#site-header .nav-inner {
  height: var(--nav-h) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 22px !important;
}
.nav-logo {
  font-size: 1.02rem !important;
  line-height: 0.86 !important;
  letter-spacing: 0.08em !important;
  max-width: 175px !important;
  flex: 0 0 auto !important;
}
.nav-logo small { font-size: 0.42rem !important; letter-spacing: 0.16em !important; }
.nav-links {
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
  gap: 24px !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  transform: none !important;
}
.nav-links a,
.nav-item > a {
  font-size: 0.72rem !important;
  line-height: 1 !important;
  letter-spacing: 0.1em !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}
.nav-item { position: relative !important; }
.nav-dropdown {
  z-index: 10030 !important;
  top: 100% !important;
}
.nav-item.open .nav-dropdown,
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
.mobile-only { display: none !important; }
.ticker-bar {
  z-index: 500 !important;
  pointer-events: none !important;
}
.ticker-track-wrap,
.ticker-label,
.ticker-cta { pointer-events: auto !important; }
.ticker-bar.at-top {
  position: absolute !important;
  top: auto !important;
  bottom: 0 !important;
}
.ticker-track { min-width: max-content !important; }
@media (min-width: 900px) {
  .nav-toggle,
  .nav-mobile,
  .mobile-only,
  .sms-fab { display: none !important; }
  .nav-links { display: flex !important; }
}
@media (max-width: 899px) {
  .nav-links { display: none !important; }
  .nav-toggle { display: flex !important; }
  .nav-mobile.open { transform: translateX(0) !important; }
  .mobile-only { display: inline-flex !important; }
  .sms-fab { display: flex !important; }
}
