/* ====================================================================
   SUTHERLAND LANDSCAPING — MAIN STYLESHEET
   Brand tokens: Slate 1 #384544, Slate 2 #2A3231, Green 1 #8FB15D,
   Green 2 #7E975D. Fonts: Montserrat (primary), Lora (secondary).
   ==================================================================== */


/* ── CSS Custom Properties ─────────────────────────────────────────── */
:root {
  /* Colors */
  --c-slate-1:        #384544;
  --c-slate-2:        #2A3231;
  --c-green-1:        #8FB15D;
  --c-green-2:        #7E975D;
  --c-green-tint:     #EEF3E3;
  --c-off-white:      #F3F2EB;
  --c-white:          #FFFFFF;
  --c-border:         rgba(56, 69, 68, 0.14);
  --c-text-muted:     rgba(56, 69, 68, 0.58);
  --c-white-muted:    rgba(255, 255, 255, 0.70);
  --c-white-dimmed:   rgba(255, 255, 255, 0.42);

  /* Typography */
  --f-primary:   'Montserrat', sans-serif;
  --f-secondary: 'Lora', serif;

  /* Layout */
  --nav-h:         72px;
  --max-w:         1200px;
  --pad-x:         clamp(20px, 5vw, 48px);
  --pad-section:   clamp(72px, 10vw, 120px);

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-base: 0.28s ease;
}


/* ── Layout helpers ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

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


/* ── Section headers ───────────────────────────────────────────────── */
.section-header {
  max-width: 720px;
  margin: 0 auto clamp(48px, 7vw, 80px);
}

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

.section-label {
  display: inline-block;
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-green-1);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.12;
  color: var(--c-green-2);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.section-heading--white {
  color: var(--c-white);
}

.section-subheading {
  font-family: var(--f-secondary);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.78;
  color: var(--c-text-muted);
  text-wrap: balance;
}

.section-subheading--muted {
  color: var(--c-white-muted);
}


/* ── NAVIGATION ────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t-base), box-shadow var(--t-base);
}

#navbar.scrolled {
  background: var(--c-slate-2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  gap: 32px;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo {
  height: 58px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  margin-left: auto;
}

.nav-link {
  font-family: var(--f-primary);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  transition: color var(--t-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-green-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--c-white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  font-family: var(--f-primary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--c-white);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--t-fast);
}

.nav-cta:hover {
  color: var(--c-green-1);
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-white);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hamburger → X when overlay is open */
.nav-hamburger.is-open .nav-hamburger__bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-hamburger.is-open .nav-hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.is-open .nav-hamburger__bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: linear-gradient(160deg, #2A3231 0%, #1a2120 100%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Subtle brand watermark — large faded icon bottom-right */
.nav-overlay::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: var(--c-green-1);
  opacity: 0.04;
  border-radius: 50%;
  pointer-events: none;
}

/* Thin green accent line above nav links */
.nav-overlay::after {
  content: 'Transforming Properties. Developing People.';
  font-family: var(--f-secondary);
  font-style: italic;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.04em;
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
}

.nav-overlay.is-open {
  display: flex;
}

.nav-overlay__close {
  display: none;
}

.nav-overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 0;
}

/* Staggered entrance animation for links */
.nav-overlay.is-open .nav-overlay__link {
  opacity: 0;
  animation: navLinkIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nav-overlay.is-open .nav-overlay__link:nth-child(1) { animation-delay: 0.06s; }
.nav-overlay.is-open .nav-overlay__link:nth-child(2) { animation-delay: 0.12s; }
.nav-overlay.is-open .nav-overlay__link:nth-child(3) { animation-delay: 0.18s; }
.nav-overlay.is-open .nav-overlay__link:nth-child(4) { animation-delay: 0.24s; }

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

.nav-overlay__link {
  font-family: var(--f-primary);
  font-weight: 600;
  font-size: clamp(22px, 5.5vw, 30px);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
  padding: 16px 40px;
  text-align: center;
  width: 100%;
  position: relative;
  transition: color var(--t-fast);
}

/* Green underline slides in on hover */
.nav-overlay__link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--c-green-1);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-overlay__link:hover {
  color: var(--c-white);
}

.nav-overlay__link:hover::after {
  width: 40px;
}

.nav-overlay__phone {
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: 17px;
  color: var(--c-green-1);
  margin-top: 28px;
  letter-spacing: 0.04em;
  padding-top: 0;
  transition: color var(--t-fast);
}

.nav-overlay__phone:hover {
  color: var(--c-white);
}


/* ── HERO ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Gradient overlay: slightly lighter at top (lets photo breathe),
   deeper at bottom to ground the CTA zone */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 50, 49, 0.58) 0%,
    rgba(42, 50, 49, 0.70) 45%,
    rgba(42, 50, 49, 0.90) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  padding: calc(var(--nav-h) + 24px) var(--pad-x) 80px;
}

.hero__logo {
  width: clamp(130px, 20vw, 220px);
  height: auto;
  margin-bottom: 48px;
}

.hero__icon-mark {
  width: clamp(52px, 5.5vw, 76px);
  height: auto;
  opacity: 0.90;
  margin-bottom: 22px;
}

/* Two-layer headline: main title / sub line */
.hero__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

/* Main title — "Transforming Properties. Developing People." — single line */
.hero__hl-main {
  font-family: var(--f-secondary);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3.4vw, 44px);
  color: var(--c-green-1);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
}

/* Sub line — "Just like our plants, we want our people to flourish" */
.hero__hl-sub {
  font-family: var(--f-primary);
  font-weight: 400;
  font-size: clamp(12px, 1.4vw, 16px);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
}

.hero__tagline {
  font-family: var(--f-secondary);
  font-style: italic;
  font-size: clamp(12px, 1.2vw, 14px);
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.hero__cta {
  display: inline-block;
  margin-top: 16px;
  padding: 15px 44px;
  background: var(--c-green-1);
  border: 1.5px solid var(--c-green-1);
  color: var(--c-white);
  font-family: var(--f-primary);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.hero__cta:hover,
.hero__cta:focus-visible {
  background: var(--c-green-2);
  border-color: var(--c-green-2);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(143, 177, 93, 0.55);
  outline: none;
}

/* Animated scroll chevron */
.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: chevronBounce 2.2s ease-in-out infinite;
}

.hero__scroll-chevron {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.45);
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
  transform: rotate(45deg);
}

@keyframes chevronBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 1;   }
}


/* ── SERVICES ──────────────────────────────────────────────────────── */
.services {
  background: var(--c-off-white);
}

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

.service-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 36px);
  box-shadow: 0 2px 12px rgba(56, 69, 68, 0.06);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.service-card:hover {
  box-shadow: 0 14px 44px rgba(56, 69, 68, 0.14);
  transform: translateY(-3px);
}

.service-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.service-card__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.service-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: 17px;
  color: var(--c-slate-1);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.service-card__intro {
  font-family: var(--f-secondary);
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.72;
  margin-bottom: 18px;
}

/* Leaf bullet list */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  font-family: var(--f-secondary);
  font-size: 14.5px;
  color: var(--c-slate-1);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-list li::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url('../images/icon-green.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.service-note {
  font-size: 13px;
  color: var(--c-text-muted);
}

.service-badge {
  display: inline-block;
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-green-2);
  padding: 2px 7px;
  margin-left: 5px;
  vertical-align: middle;
  line-height: 1.6;
}


/* ── MAINTENANCE PACKAGES ──────────────────────────────────────────── */
/* Full-bleed two-column layout — image is a direct section child,
   no container wrapper, so it bleeds edge-to-edge on the left */
.packages {
  background: var(--c-slate-2);
  display: grid;
  grid-template-columns: 40% 1fr;
  min-height: 600px;
}

.packages__image-col {
  position: relative;
  overflow: hidden;
}

.packages__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Gradient fade: photo bleeds into the dark background on the right edge */
.packages__image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 55%,
    var(--c-slate-2) 100%
  );
  z-index: 1;
}

.packages__content-col {
  padding: clamp(56px, 8vw, 96px) clamp(36px, 5vw, 72px) clamp(56px, 8vw, 96px) clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.packages__intro {
  margin-bottom: clamp(28px, 4vw, 44px);
  margin-top: 8px;
}

/* Center the section header text in the packages content column */
.packages__content-col > .section-label,
.packages__content-col > .section-heading,
.packages__content-col > .packages__intro {
  text-align: center;
  display: block;
}

.packages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.package-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 32px);
  color: var(--c-white);
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base), transform var(--t-base);
}

/* Basic hover — white lift, no green so it doesn't compete with Advanced */
.package-card:hover {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.36);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
}

/* Advanced hover — green glow ring makes it unmistakably premium */
.package-card--featured:hover {
  border-color: var(--c-green-1);
  box-shadow: 0 20px 48px rgba(143, 177, 93, 0.22), 0 0 0 2px rgba(143, 177, 93, 0.35);
  background: rgba(143, 177, 93, 0.10);
  transform: translateY(-5px);
}

.package-card--featured {
  border-color: var(--c-green-1);
  border-width: 2px;
}

.package-badge--spacer {
  height: 28px;
  margin-bottom: 20px;
}

.package-badge--featured {
  display: inline-block;
  background: var(--c-green-1);
  color: var(--c-white);
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 13px;
  margin-bottom: 20px;
}

.package-card__title {
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--c-white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.package-list__label {
  font-family: var(--f-primary);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-green-1);
  margin-bottom: 16px;
}

.package-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.package-list li {
  font-family: var(--f-secondary);
  font-size: 14px;
  color: var(--c-white-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.package-list li::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url('../images/icon-white.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.packages__cta {
  margin-top: clamp(28px, 4vw, 44px);
}

.packages__cta-pretext {
  font-family: var(--f-secondary);
  font-style: italic;
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  margin-bottom: 16px;
  text-align: center;
}

.packages__cta-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  text-align: center;
  background: var(--c-green-1);
  border: 1.5px solid var(--c-green-1);
  color: var(--c-white);
  font-family: var(--f-primary);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.packages__cta-btn:hover {
  background: var(--c-green-2);
  border-color: var(--c-green-2);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(143, 177, 93, 0.55);
}


/* ── PACKAGE INQUIRY MODAL ──────────────────────────────────────────── */
.pkg-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.pkg-modal.is-open {
  display: flex;
}

.pkg-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 50, 49, 0.75);
  cursor: pointer;
}

.pkg-modal__box {
  position: relative;
  z-index: 1;
  background: var(--c-white);
  padding: clamp(32px, 5vw, 52px);
  max-width: 520px;
  width: calc(100% - 48px);
  max-height: 90vh;
  overflow-y: auto;
}

.pkg-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--c-text-muted);
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--t-fast);
}

.pkg-modal__close:hover {
  color: var(--c-slate-1);
}

.pkg-modal__title {
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 24px);
  color: var(--c-slate-1);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.pkg-modal__sub {
  font-family: var(--f-secondary);
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.pkg-modal__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}


/* ── WHY SUTHERLAND ────────────────────────────────────────────────── */
.about {
  position: relative;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}

.about__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 50, 49, 0.78);
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about .section-header {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 20px);
}

/* Advanced package card style — green border, dark bg, white text */
.trust-signal {
  text-align: center;
  background: transparent;
  border: 2px solid var(--c-green-1);
  padding: clamp(22px, 2.5vw, 32px) clamp(16px, 2vw, 24px);
  transition: box-shadow var(--t-base), background var(--t-base), transform var(--t-base);
}

.trust-signal:hover {
  box-shadow: 0 20px 48px rgba(143, 177, 93, 0.22), 0 0 0 1px rgba(143, 177, 93, 0.35);
  background: rgba(143, 177, 93, 0.10);
  transform: translateY(-4px);
}

.trust-signal__number {
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--c-green-1);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.trust-signal__number sup {
  font-size: 0.55em;
  vertical-align: super;
}

.trust-signal__label {
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  color: var(--c-white);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.trust-signal__desc {
  font-family: var(--f-secondary);
  font-size: 13px;
  color: var(--c-white-muted);
  line-height: 1.72;
}


/* ── CONTACT ───────────────────────────────────────────────────────── */
.contact {
  background: var(--c-off-white);
  padding: clamp(48px, 6vw, 72px) 0;
}

.contact .section-header {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.contact-form-wrapper {
  max-width: 740px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-details__heading {
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-slate-1);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-item__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-item__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-item__label {
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-green-2);
}

.contact-item__value {
  font-family: var(--f-secondary);
  font-size: 16px;
  color: var(--c-slate-1);
  line-height: 1.6;
  transition: color var(--t-fast);
}

a.contact-item__value:hover {
  color: var(--c-green-1);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-family: var(--f-primary);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-slate-1);
}

.form-required {
  color: var(--c-green-2);
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  color: var(--c-text-muted);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--f-secondary);
  font-size: 15px;
  color: var(--c-slate-1);
  background: var(--c-white);
  border: 1px solid rgba(56, 69, 68, 0.26);
  border-radius: 0;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23384544' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 11px;
  padding-right: 44px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 128px;
  line-height: 1.65;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--c-green-1);
  box-shadow: 0 0 0 3px rgba(143, 177, 93, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(56, 69, 68, 0.36);
}

.form-message {
  font-family: var(--f-primary);
  font-size: 13.5px;
  font-weight: 600;
  padding: 14px 18px;
  line-height: 1.5;
  display: none;
}

.form-message--success {
  display: block;
  background: rgba(143, 177, 93, 0.10);
  border: 1px solid var(--c-green-1);
  color: #5a7835;
}

.form-message--error {
  display: block;
  background: rgba(180, 60, 60, 0.07);
  border: 1px solid rgba(180, 60, 60, 0.38);
  color: #8B1F1F;
}

.form-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--c-green-1);
  color: var(--c-white);
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--c-slate-1);
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(56, 69, 68, 0.50);
  outline: none;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


/* ── FOOTER ────────────────────────────────────────────────────────── */
#footer {
  background: var(--c-slate-2);
  padding: clamp(56px, 8vw, 96px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col--brand .nav-logo-link {
  display: block;
  width: fit-content;
  line-height: 0;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 13px;
  display: block;
  margin-left: -4px;
}

.footer-tagline {
  font-family: var(--f-secondary);
  font-style: italic;
  font-size: 14px;
  color: var(--c-green-1);
  line-height: 1.65;
  max-width: 230px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--c-white-muted);
  transition: border-color var(--t-fast), color var(--t-fast);
}

.footer-social__link:hover {
  border-color: var(--c-green-1);
  color: var(--c-green-1);
}

.footer-social__link svg {
  display: block;
  width: 16px;
  height: 16px;
}

.footer-heading {
  font-family: var(--f-primary);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-white-dimmed);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-family: var(--f-secondary);
  font-size: 15px;
  color: var(--c-white-muted);
  transition: color var(--t-fast);
}

.footer-link:hover {
  color: var(--c-green-1);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact__link {
  font-family: var(--f-secondary);
  font-size: 15px;
  color: var(--c-white-muted);
  transition: color var(--t-fast);
}

.footer-contact__link:hover {
  color: var(--c-green-1);
}

.footer-contact li:first-child .footer-contact__link {
  font-family: var(--f-primary);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-white);
  letter-spacing: -0.01em;
}

.footer-contact__address {
  font-family: var(--f-secondary);
  font-size: 15px;
  color: var(--c-white-muted);
  line-height: 1.7;
  font-style: normal;
}

.footer-contact__service-area {
  font-family: var(--f-primary);
  font-size: 11.5px;
  color: var(--c-white-dimmed);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-copyright {
  font-family: var(--f-primary);
  font-size: 11.5px;
  color: var(--c-white-dimmed);
  letter-spacing: 0.05em;
}


/* ── RESPONSIVE ────────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

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

  .footer-col--brand {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    max-width: none;
  }

  /* Packages — stack at tablet */
  .packages {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .packages__image-col {
    height: 300px;
  }

  .packages__photo {
    position: absolute;
  }

  .packages__image-col::after {
    background: linear-gradient(
      to bottom,
      transparent 55%,
      var(--c-slate-2) 100%
    );
  }
}

/* Mobile */
@media (max-width: 768px) {

  /* Nav — show hamburger, hide desktop links */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero — mobile layout */
  .hero {
    background-attachment: scroll;
  }

  .hero__content {
    padding-top: calc(var(--nav-h) + 8px);
    padding-bottom: 56px;
    gap: 0;
  }

  .hero__icon-mark {
    width: 52px;
    margin-bottom: 20px;
  }

  .hero__headline {
    gap: 8px;
    margin-bottom: 28px;
  }

  .hero__hl-main {
    white-space: normal;
    text-align: center;
    font-size: clamp(26px, 7.5vw, 36px);
  }

  .hero__hl-sub {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .hero__cta {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    margin-top: 12px;
  }

  /* Services — stack cards */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Packages — stack cards */
  .packages__grid {
    grid-template-columns: 1fr;
  }

  /* Why Us — disable parallax, keep 2-col */
  .about {
    background-attachment: scroll;
  }

  .about__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  /* Constrain description line width to match desktop — prevents 2-line widows on wide mobile cards */
  .trust-signal__desc {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Contact — stack form rows on mobile */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer — stack */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-col--brand {
    grid-column: auto;
  }

}

/* Small mobile */
@media (max-width: 480px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .trust-signal {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .trust-signal__number {
    font-size: 36px;
    min-width: auto;
    text-align: center;
    flex-shrink: 0;
  }
}
