/* =====================
   TOKENS
===================== */
:root {
  --lp-color-primary:        #557c00;
  --lp-color-primary-dark:   #3d5b00;
  --lp-color-secondary:      #1c1912;
  --lp-color-accent:         #9bc422;
  --lp-color-warm:           #c97b10;
  --lp-color-warm-dark:      #a0620c;
  --lp-color-text:           #1e1b10;
  --lp-color-text-muted:     #6b6045;
  --lp-color-bg:             #ffffff;
  --lp-color-bg-section:     #f5f1e8;
  --lp-color-white:          #ffffff;
  --lp-color-border:         #d4ccb2;

  --lp-font-display: 'Maven Pro', 'Lucida Grande', Helvetica, Arial, sans-serif;
  --lp-font-body:    'Lucida Grande', Helvetica, Arial, sans-serif;

  --lp-text-xs:   1.2rem;
  --lp-text-sm:   1.4rem;
  --lp-text-base: 1.6rem;
  --lp-text-lg:   1.8rem;
  --lp-text-xl:   2.0rem;
  --lp-text-2xl:  2.4rem;
  --lp-text-3xl:  3.0rem;
  --lp-text-4xl:  clamp(3.6rem, 5vw, 5.4rem);

  --lp-space-xs:  0.5rem;
  --lp-space-sm:  1.0rem;
  --lp-space-md:  1.5rem;
  --lp-space-lg:  2.4rem;
  --lp-space-xl:  4.0rem;
  --lp-space-2xl: 6.4rem;
  --lp-space-3xl: 9.6rem;

  --lp-radius-sm: 2px;
  --lp-radius-md: 4px;
  --lp-container: 1200px;
  --lp-container-padding: clamp(1.5rem, 5vw, 3rem);
  --lp-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

/* =====================
   RESET
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5% !important; scroll-behavior: smooth; }
body {
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-base);
  color: var(--lp-color-text);
  background: var(--lp-color-bg);
  line-height: 1.75;
}
h1, h2, h3, h4 { font-family: var(--lp-font-display); line-height: 1.15; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =====================
   SKIP LINK
===================== */
.lp-skip-link {
  position: absolute;
  top: -100%;
  left: 1.6rem;
  background: var(--lp-color-secondary);
  color: var(--lp-color-white);
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top 150ms ease-out;
}
.lp-skip-link:focus { top: 0; }

/* =====================
   FOCUS
===================== */
:focus-visible { outline: 3px solid var(--lp-color-primary); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

/* =====================
   LAYOUT UTILITIES
===================== */
.lp-container {
  max-width: var(--lp-container);
  margin: 0 auto;
  padding: 0 var(--lp-container-padding);
}
.lp-section { padding: var(--lp-space-3xl) 0; }
.lp-section--alt { background: var(--lp-color-bg-section); }

/* =====================
   SECTION TAG
===================== */
.lp-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--lp-text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lp-color-primary);
  margin-bottom: var(--lp-space-sm);
}
.lp-section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
}
.lp-section-tag--light {
  color: rgba(255, 255, 255, 0.75);
}

/* =====================
   BUTTONS
===================== */
.lp-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--lp-font-display);
  font-size: var(--lp-text-base);
  font-weight: 600;
  border-radius: var(--lp-radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 160ms var(--lp-ease-out),
              color 160ms var(--lp-ease-out),
              border-color 160ms var(--lp-ease-out);
}
.lp-btn:active { transform: scale(0.97); }
.lp-btn--primary {
  background: var(--lp-color-primary);
  color: var(--lp-color-white);
}
.lp-btn--inverted {
  background: var(--lp-color-primary);
  color: var(--lp-color-white);
}
.lp-btn--inverted:active {
  background: var(--lp-color-warm);
  color: var(--lp-color-white);
}
.lp-btn--outline-white {
  background: transparent;
  color: var(--lp-color-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.lp-btn--outline-dark {
  background: transparent;
  color: var(--lp-color-text);
  border: 2px solid var(--lp-color-border);
}

@media (hover: hover) and (pointer: fine) {
  .lp-btn--primary:hover { background: var(--lp-color-primary-dark); }
  .lp-btn--inverted:hover { background: var(--lp-color-white); color: var(--lp-color-primary); }
  .lp-btn--outline-white:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
  .lp-btn--outline-dark:hover { border-color: var(--lp-color-primary); color: var(--lp-color-primary); }
}

/* =====================
   ANIMATIONS
===================== */
.lp-reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 400ms var(--lp-ease-out), transform 400ms var(--lp-ease-out);
}
.lp-reveal--visible { opacity: 1; transform: translateY(0); }

.lp-reveal-hero {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 500ms var(--lp-ease-out), transform 500ms var(--lp-ease-out);
}
.lp-reveal-hero--visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .lp-reveal { transform: none; transition: opacity 300ms ease; }
  .lp-reveal-hero { transform: none; transition: opacity 300ms ease; }
}

/* =====================
   NAV
===================== */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 200ms ease, box-shadow 200ms ease;
}
.lp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 9.6rem;
  gap: var(--lp-space-lg);
}
.lp-nav__logo img { height: 80px; width: auto; }
.lp-nav__links {
  display: flex;
  gap: var(--lp-space-lg);
  align-items: center;
}
.lp-nav__links a {
  font-size: var(--lp-text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 160ms ease;
}
.lp-nav .lp-btn--primary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--lp-color-white);
}

/* Scrolled state */
.lp-nav.lp-nav--scrolled {
  background: var(--lp-color-white);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}
.lp-nav.lp-nav--scrolled .lp-nav__links a { color: var(--lp-color-text); }
.lp-nav.lp-nav--scrolled .lp-btn--primary {
  background: var(--lp-color-primary);
  border-color: var(--lp-color-primary);
  color: var(--lp-color-white);
}

@media (hover: hover) and (pointer: fine) {
  .lp-nav__links a:hover { color: var(--lp-color-white); }
  .lp-nav.lp-nav--scrolled .lp-nav__links a:hover { color: var(--lp-color-primary); }
  .lp-nav .lp-btn--primary:hover { background: rgba(255, 255, 255, 0.1); }
  .lp-nav.lp-nav--scrolled .lp-btn--primary:hover { background: var(--lp-color-primary-dark); }
}

@media (max-width: 768px) {
  .lp-nav__links { display: none; }
}

/* =====================
   HERO
===================== */
.lp-hero {
  min-height: 88vh;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--lp-color-white);
}
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    color-mix(in srgb, var(--lp-color-secondary) 92%, var(--lp-color-warm)),
    color-mix(in srgb, var(--lp-color-secondary) 46%, transparent)
  );
}
.lp-hero .lp-container {
  position: relative;
  z-index: 1;
  padding-top: 10rem;
  padding-bottom: 6rem;
  width: 100%;
}

.lp-hero__content { max-width: 720px; }

.lp-hero__content h1 {
  font-size: var(--lp-text-4xl);
  font-weight: 900;
  color: var(--lp-color-white);
  margin-bottom: var(--lp-space-md);
  line-height: 1.1;
}
.lp-hero__sub {
  font-size: var(--lp-text-lg);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--lp-space-xl);
}
.lp-hero__ctas {
  display: flex;
  gap: var(--lp-space-md);
  flex-wrap: wrap;
  margin-bottom: var(--lp-space-xl);
}
.lp-hero__trust {
  display: flex;
  gap: var(--lp-space-lg);
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--lp-space-lg);
}
.lp-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--lp-text-sm);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.lp-hero__trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--lp-color-warm);
  color: var(--lp-color-white);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}

/* =====================
   STATS
===================== */
.lp-stats {
  background: linear-gradient(
    120deg,
    var(--lp-color-primary-dark),
    var(--lp-color-primary) 55%,
    color-mix(in srgb, var(--lp-color-primary) 72%, var(--lp-color-warm))
  );
  padding: var(--lp-space-xl) 0;
}
.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.lp-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--lp-space-lg) var(--lp-space-xl);
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.lp-stats__item:first-child { border-left: none; }
.lp-stats__number {
  font-family: var(--lp-font-display);
  font-size: var(--lp-text-4xl);
  font-weight: 900;
  color: var(--lp-color-white);
  line-height: 1;
}
.lp-stats__label {
  font-size: var(--lp-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.5rem;
}

/* =====================
   INTRO
===================== */
.lp-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--lp-space-2xl);
  align-items: start;
}
.lp-intro__body h2 {
  font-size: var(--lp-text-3xl);
  font-weight: 700;
  color: var(--lp-color-secondary);
  margin-bottom: var(--lp-space-md);
}
.lp-intro__body p {
  color: var(--lp-color-text);
  margin-bottom: var(--lp-space-md);
  font-size: var(--lp-text-base);
}
.lp-intro__ctas {
  display: flex;
  gap: var(--lp-space-md);
  flex-wrap: wrap;
  margin-top: var(--lp-space-xl);
}

.lp-intro__quote {
  background: var(--lp-color-secondary);
  color: var(--lp-color-white);
  border-top: 3px solid var(--lp-color-primary);
  border-radius: 0 0 var(--lp-radius-md) var(--lp-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lp-intro__quote-body {
  padding: var(--lp-space-2xl);
  flex: 1;
}
.lp-intro__quote blockquote p {
  font-size: var(--lp-text-xl);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  margin-bottom: var(--lp-space-lg);
}
.lp-intro__quote blockquote cite {
  font-size: var(--lp-text-sm);
  font-weight: 600;
  color: var(--lp-color-accent);
  font-style: normal;
  letter-spacing: 0.05em;
}

.lp-intro__quote-logo {
  background: var(--lp-color-white);
  padding: var(--lp-space-md) var(--lp-space-2xl);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--lp-space-md);
  border-top: 3px solid var(--lp-color-warm);
}
.lp-intro__quote-logo img {
  height: 32px;
  width: auto;
}
.lp-intro__quote-logo-label {
  font-size: var(--lp-text-xs);
  color: var(--lp-color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .lp-intro__grid { grid-template-columns: 1fr; }
}

/* =====================
   SERVICES
===================== */
.lp-services__header { margin-bottom: var(--lp-space-2xl); }
.lp-services__header h2 {
  font-size: var(--lp-text-3xl);
  font-weight: 700;
  color: var(--lp-color-secondary);
}
.lp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--lp-space-lg);
}
.lp-card {
  background: var(--lp-color-white);
  border-top: 3px solid var(--lp-color-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: var(--lp-space-xl) var(--lp-space-lg);
  transition: transform 200ms var(--lp-ease-out), box-shadow 200ms var(--lp-ease-out);
}
.lp-card__icon {
  width: 4.8rem;
  height: 4.8rem;
  background: var(--lp-color-bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-color-primary);
  margin-bottom: var(--lp-space-lg);
}
.lp-card h3 {
  font-size: var(--lp-text-xl);
  font-weight: 700;
  color: var(--lp-color-secondary);
  margin-bottom: var(--lp-space-sm);
}
.lp-card p {
  font-size: var(--lp-text-base);
  color: var(--lp-color-text);
  margin-bottom: var(--lp-space-md);
}
.lp-card ul li {
  font-size: var(--lp-text-sm);
  color: var(--lp-color-text-muted);
  padding: 0.5rem 0 0.5rem 1.4rem;
  border-bottom: 1px solid var(--lp-color-border);
  position: relative;
}
.lp-card ul li:last-child { border-bottom: none; }
.lp-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-color-accent);
}

@media (hover: hover) and (pointer: fine) {
  .lp-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12); }
}
@media (max-width: 900px) {
  .lp-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lp-services__grid { grid-template-columns: 1fr; }
}

/* =====================
   ABOUT
===================== */
.lp-about__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--lp-space-2xl);
  align-items: start;
}
.lp-about__body h2 {
  font-size: var(--lp-text-3xl);
  font-weight: 700;
  color: var(--lp-color-secondary);
  margin-bottom: var(--lp-space-md);
}
.lp-about__body p {
  color: var(--lp-color-text);
  margin-bottom: var(--lp-space-md);
  font-size: var(--lp-text-base);
}
.lp-about__cert {
  border-left: 3px solid var(--lp-color-warm);
  background: var(--lp-color-bg-section);
  padding: var(--lp-space-md) var(--lp-space-lg);
  margin-top: var(--lp-space-xl);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.lp-about__cert strong {
  font-size: var(--lp-text-base);
  color: var(--lp-color-warm-dark);
}
.lp-about__cert span {
  font-size: var(--lp-text-sm);
  color: var(--lp-color-text-muted);
}
.lp-profile {
  position: sticky;
  top: 10rem;
  background: var(--lp-color-secondary);
  color: var(--lp-color-white);
  border-top: 3px solid var(--lp-color-primary);
  border-radius: 0 0 var(--lp-radius-md) var(--lp-radius-md);
  overflow: hidden;
}
.lp-profile__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}
.lp-profile__info {
  padding: var(--lp-space-lg) var(--lp-space-lg) var(--lp-space-sm);
  display: flex;
  flex-direction: column;
}
.lp-profile__name {
  font-family: var(--lp-font-display);
  font-size: var(--lp-text-xl);
  font-weight: 700;
  color: var(--lp-color-white);
}
.lp-profile__role {
  font-size: var(--lp-text-sm);
  color: var(--lp-color-accent);
  margin-top: 0.4rem;
  font-weight: 600;
}
.lp-profile__facts {
  padding: var(--lp-space-sm) var(--lp-space-lg) var(--lp-space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--lp-space-sm);
}
.lp-profile__facts li {
  font-size: var(--lp-text-sm);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0 0.5rem 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.lp-profile__facts li:last-child { border-bottom: none; }
.lp-profile__facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: var(--lp-color-accent);
}

@media (max-width: 900px) {
  .lp-about__grid { grid-template-columns: 1fr; }
  .lp-profile { position: static; }
}

/* =====================
   CTA BANNER
===================== */
.lp-cta-banner {
  background: var(--lp-color-secondary);
  background-image:
    linear-gradient(135deg, color-mix(in srgb, var(--lp-color-warm) 8%, transparent) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 8px
    );
  padding: var(--lp-space-3xl) 0;
  text-align: center;
}
.lp-cta-banner__inner h2 {
  font-size: var(--lp-text-3xl);
  font-weight: 700;
  color: var(--lp-color-white);
  margin-bottom: var(--lp-space-sm);
}
.lp-cta-banner__inner p {
  font-size: var(--lp-text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--lp-space-xl);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.lp-cta-banner__buttons {
  display: flex;
  gap: var(--lp-space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   CONTACT
===================== */
.lp-contact__heading {
  font-size: var(--lp-text-3xl);
  font-weight: 700;
  color: var(--lp-color-secondary);
  margin-bottom: var(--lp-space-2xl);
}
.lp-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--lp-space-2xl);
  align-items: start;
}
.lp-contact__details { display: flex; flex-direction: column; }
.lp-contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--lp-space-md);
  padding: var(--lp-space-md) 0;
  border-bottom: 1px solid var(--lp-color-border);
}
.lp-contact__item:first-child { border-top: 1px solid var(--lp-color-border); }
.lp-contact__icon {
  color: var(--lp-color-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.lp-contact__item-body { display: flex; flex-direction: column; gap: 0.2rem; }
.lp-contact__item-body strong {
  font-size: var(--lp-text-sm);
  font-weight: 700;
  color: var(--lp-color-secondary);
}
.lp-contact__item-body span,
.lp-contact__item-body a {
  font-size: var(--lp-text-base);
  color: var(--lp-color-text);
}
@media (hover: hover) and (pointer: fine) {
  .lp-contact__item-body a:hover { color: var(--lp-color-primary); text-decoration: underline; }
}
.lp-contact__hours { padding: var(--lp-space-md) 0; }
.lp-contact__hours strong {
  font-size: var(--lp-text-sm);
  font-weight: 700;
  color: var(--lp-color-secondary);
  display: block;
  margin-bottom: var(--lp-space-sm);
}
.lp-hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 2rem;
}
.lp-hours-grid dt { font-size: var(--lp-text-sm); color: var(--lp-color-text-muted); }
.lp-hours-grid dd { font-size: var(--lp-text-sm); color: var(--lp-color-text); }
.lp-contact__map {
  height: 420px;
  border-radius: var(--lp-radius-md);
  overflow: hidden;
}
.lp-contact__map iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 900px) {
  .lp-contact__grid { grid-template-columns: 1fr; }
  .lp-contact__map { height: 300px; }
}

/* =====================
   FOOTER
===================== */
.lp-footer {
  background: var(--lp-color-secondary);
  border-top: 3px solid var(--lp-color-primary);
}
.lp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--lp-space-lg);
  padding: var(--lp-space-xl) var(--lp-container-padding);
  max-width: var(--lp-container);
  margin: 0 auto;
}
.lp-footer__brand {
  font-family: var(--lp-font-display);
  font-size: var(--lp-text-lg);
  font-weight: 700;
  color: var(--lp-color-white);
}
.lp-footer__brand span { color: var(--lp-color-warm); }
.lp-footer__links {
  display: flex;
  gap: var(--lp-space-lg);
  flex-wrap: wrap;
}
.lp-footer__links a {
  font-size: var(--lp-text-sm);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  transition: color 160ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .lp-footer__links a:hover { color: var(--lp-color-accent); }
}
.lp-footer__legal {
  font-size: var(--lp-text-xs);
  color: rgba(255, 255, 255, 0.45);
  width: 100%;
}

@media (max-width: 600px) {
  .lp-footer__inner { flex-direction: column; text-align: center; }
  .lp-footer__links { justify-content: center; }
}

/* WordPress admin bar offset */
.admin-bar .lp-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .lp-nav { top: 46px; }
}

/* Force body background */
body { background-color: #ffffff !important; }

/* WordPress global-styles override */
h1, h2, h3, h4, h5, h6 {
  text-transform: none !important;
  color: var(--lp-color-text) !important;
}
.lp-hero__content h1,
.lp-cta-banner__inner h2,
.lp-intro__quote blockquote p { color: var(--lp-color-white) !important; }
.lp-stats__number { color: var(--lp-color-white) !important; }
