/* ==========================================================================
   Essential Technical Solutions — Design System
   Static site. No build step. Mobile-first.
   ========================================================================== */

:root{
  /* Brand colors — sampled from logo mark */
  --ink:        #12211a;   /* near-black green — headings, dark surfaces */
  --ink-soft:   #1c3226;
  --forest:     #2e6e48;   /* primary brand green */
  --forest-dark:#1f4d33;
  --forest-light:#e7f1ea;
  --lime:       #5fbf46;   /* bright accent — CTAs, highlights */
  --lime-dark:  #4aa136;
  --gold:       #c9962f;   /* secondary accent — ratings, badges, warmth against green */
  --gold-light: #f6ecd8;

  --bg:         #faf9f5;   /* warm off-white page background */
  --surface:    #ffffff;
  --surface-alt:#f2f3ee;
  --border:     #e2e4dc;
  --border-strong:#cdd2c6;

  --text:       #1c2620;
  --text-muted: #55635a;
  --text-faint: #7c8a80;
  --on-dark:    #f3f5f1;
  --on-dark-muted:#aab6ac;

  --danger:     #b3411f;
  --success:    #2e6e48;

  /* Type */
  --font-head: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Spacing scale (4/8 basis) */
  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(18,33,26,.06), 0 1px 1px rgba(18,33,26,.04);
  --shadow-md: 0 8px 24px -8px rgba(18,33,26,.18);
  --shadow-lg: 0 20px 48px -16px rgba(18,33,26,.28);

  --container: 1240px;
  --ease: cubic-bezier(.22,.85,.32,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
body{
  min-height: 100dvh;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; width: 100%; }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; letter-spacing: -.01em; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.4rem + 1.4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { max-width: 65ch; }
.text-balance { text-wrap: balance; }

:focus-visible{
  outline: 3px solid var(--lime);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
@media (min-width: 768px){ .container{ padding-inline: var(--sp-6); } }

.section{ padding-block: var(--sp-9); }
.section--tight{ padding-block: var(--sp-7); }
.section--alt{ background: var(--surface-alt); }
.section--ink{ background: var(--ink); color: var(--on-dark); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--on-dark); }
.section--ink p { color: var(--on-dark-muted); }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest);
}
.eyebrow::before{
  content: "";
  width: 22px; height: 2px;
  background: var(--lime);
  display: inline-block;
}
.section--ink .eyebrow{ color: var(--lime); }

.lede{ color: var(--text-muted); font-size: 1.125rem; max-width: 60ch; }

.grid{ display: grid; gap: var(--sp-6); }
@media (min-width: 640px){ .grid--2{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px){ .grid--3{ grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px){ .grid--4{ grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px){
  .grid--3.grid--tablet-2{ grid-template-columns: repeat(2, 1fr); }
}

.stack{ display: flex; flex-direction: column; }
.cluster{ display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-3); }

.split{
  display: grid;
  gap: var(--sp-7);
  align-items: center;
}
@media (min-width: 900px){
  .split{ grid-template-columns: 1.1fr .9fr; }
  .split--reverse{ grid-template-columns: .9fr 1.1fr; }
  .split--reverse > *:first-child{ order: 2; }
}

.visually-hidden{
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 1.5rem;
  border-radius: var(--radius-pill);
  min-height: 48px;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background-color .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn svg{ width: 18px; height: 18px; flex: none; }
.btn:active{ transform: scale(.97); }

.btn--primary{ background: var(--lime); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--primary:hover{ background: var(--lime-dark); box-shadow: var(--shadow-md); }

.btn--dark{ background: var(--ink); color: var(--on-dark); }
.btn--dark:hover{ background: var(--forest-dark); }

.btn--outline{ background: transparent; border-color: currentColor; color: var(--ink); }
.btn--outline:hover{ background: var(--ink); color: var(--on-dark); }

.section--ink .btn--outline{ color: var(--on-dark); }
.section--ink .btn--outline:hover{ background: var(--on-dark); color: var(--ink); }

.btn--ghost{ background: transparent; color: var(--forest); padding-inline: .5rem; }
.btn--ghost:hover{ color: var(--forest-dark); }

.btn--sm{ padding: .6rem 1.1rem; min-height: 40px; font-size: .85rem; }
.btn--block{ width: 100%; }

/* ---------- Header ---------- */
.site-header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,249,245,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar{
  background: var(--ink);
  color: var(--on-dark-muted);
  font-size: .82rem;
}
.topbar .container{
  display: flex; align-items: center; justify-content: space-between;
  padding-block: var(--sp-2);
  gap: var(--sp-4);
}
.topbar a{ color: var(--on-dark); }
.topbar a:hover{ color: var(--lime); }
.topbar__contact{ display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.topbar__item{ display: inline-flex; align-items: center; gap: var(--sp-2); }
.topbar__item svg{ width: 14px; height: 14px; color: var(--lime); flex: none; }
.topbar__hide-sm{ display: none; }
@media (min-width: 560px){ .topbar__hide-sm{ display: inline-flex; } }

.navbar{ display: flex; align-items: center; justify-content: space-between; padding-block: var(--sp-3); gap: var(--sp-4); }
.brand{ display: flex; align-items: center; gap: var(--sp-3); flex: none; }
.brand img{ height: 40px; width: auto; }
@media (min-width: 768px){ .brand img{ height: 46px; } }

.nav-links{ display: none; align-items: center; gap: var(--sp-6); }
.nav-links a{
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  color: var(--text); position: relative; padding-block: var(--sp-1);
}
.nav-links a:hover, .nav-links a[aria-current="page"]{ color: var(--forest); }
.nav-links a[aria-current="page"]::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--lime); border-radius: 2px;
}
@media (min-width: 1080px){ .nav-links{ display: flex; } }

.navbar__actions{ display: flex; align-items: center; gap: var(--sp-3); }
.navbar__phone{
  display: none; align-items: center; gap: var(--sp-2);
  font-family: var(--font-head); font-weight: 700; color: var(--ink);
}
.navbar__phone svg{ width: 18px; height: 18px; color: var(--forest); }
@media (min-width: 1080px){ .navbar__phone{ display: inline-flex; } }

.nav-toggle{
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
}
.nav-toggle svg{ width: 22px; height: 22px; }
@media (min-width: 1080px){ .nav-toggle{ display: none; } }

.mobile-menu{
  display: none;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.mobile-menu.is-open{ display: block; }
.mobile-menu .container{ padding-block: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-1); }
.mobile-menu a{
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  padding: var(--sp-3) var(--sp-2); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu a[aria-current="page"]{ color: var(--forest); }
.mobile-menu__actions{ display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-4); }
@media (min-width: 1080px){ .mobile-menu{ display: none !important; } }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
  padding-block: var(--sp-9) var(--sp-8);
}
.hero::before{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(560px 360px at 88% -10%, rgba(95,191,70,.30), transparent 60%),
    radial-gradient(480px 320px at 100% 100%, rgba(46,110,72,.35), transparent 65%);
  pointer-events: none;
}
.hero__grid{
  position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image:
    linear-gradient(rgba(243,245,241,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243,245,241,.5) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero .container{ position: relative; }
.hero h1, .hero h2, .hero h3{ color: var(--on-dark); }
.hero p{ color: var(--on-dark-muted); }
.hero .eyebrow{ color: var(--lime); }
.hero .btn--outline{ color: var(--on-dark); }
.hero .btn--outline:hover{ background: var(--on-dark); color: var(--ink); }
.hero__content{ max-width: 760px; }
.hero__badges{ display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-block: var(--sp-5) var(--sp-6); }
.hero__actions{ display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }
.hero__stats{
  margin-top: var(--sp-8);
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(2,1fr);
  border-top: 1px solid rgba(243,245,241,.14);
  padding-top: var(--sp-6);
}
@media (min-width: 640px){ .hero__stats{ grid-template-columns: repeat(4,1fr); } }
.hero__stat b{ display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--lime); }
.hero__stat span{ font-size: .85rem; color: var(--on-dark-muted); }

.page-hero{
  background: var(--ink); color: var(--on-dark);
  padding-block: var(--sp-8) var(--sp-7);
  position: relative; overflow: hidden;
}
.page-hero::before{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(480px 300px at 90% 0%, rgba(95,191,70,.28), transparent 65%);
}
.page-hero .container{ position: relative; }
.page-hero h1, .page-hero h2, .page-hero h3{ color: var(--on-dark); }
.page-hero p{ color: var(--on-dark-muted); }
.page-hero .eyebrow{ color: var(--lime); }
.page-hero .btn--outline{ color: var(--on-dark); }
.page-hero .btn--outline:hover{ background: var(--on-dark); color: var(--ink); }
.breadcrumbs{ display: flex; gap: var(--sp-2); font-size: .85rem; color: var(--on-dark-muted); margin-bottom: var(--sp-4); flex-wrap: wrap; }
.breadcrumbs a:hover{ color: var(--lime); }

/* ---------- Badge / pill ---------- */
.badge{
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: .4rem .85rem; border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 600;
  background: rgba(243,245,241,.08);
  border: 1px solid rgba(243,245,241,.18);
  color: var(--on-dark);
}
.badge svg{ width: 15px; height: 15px; color: var(--lime); flex: none; }
.badge--light{ background: var(--forest-light); border-color: transparent; color: var(--forest-dark); }
.badge--gold{ background: var(--gold-light); border-color: transparent; color: #7a5b16; }

/* ---------- Icon tile ---------- */
.icon-tile{
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--forest-light); color: var(--forest-dark); flex: none;
}
.icon-tile svg{ width: 28px; height: 28px; }
.icon-tile--dark{ background: rgba(243,245,241,.08); color: var(--lime); }
.icon-tile--lg{ width: 68px; height: 68px; border-radius: var(--radius-lg); }
.icon-tile--lg svg{ width: 34px; height: 34px; }

/* ---------- Cards ---------- */
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card h3{ margin-top: var(--sp-4); }
.card p{ margin-top: var(--sp-2); color: var(--text-muted); font-size: .96rem; }
.card__link{
  margin-top: var(--sp-4); display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-head); font-weight: 700; color: var(--forest); font-size: .9rem;
}
.card__link svg{ width: 16px; height: 16px; transition: transform .15s var(--ease); }
.card:hover .card__link svg{ transform: translateX(3px); }

.card--service{ display: flex; flex-direction: column; height: 100%; }

.stat-card{
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: var(--sp-5); text-align: center;
}
.stat-card b{ display:block; font-family: var(--font-head); font-size: 2rem; color: var(--forest); }
.stat-card span{ font-size: .85rem; color: var(--text-muted); }

/* ---------- Brand badges ---------- */
.brand-row{ display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.brand-chip{
  display: inline-flex; align-items: center; padding: .7rem 1.25rem;
  border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--ink);
  background: var(--surface);
}
.section--ink .brand-chip{ background: rgba(243,245,241,.06); border-color: rgba(243,245,241,.2); color: var(--on-dark); }

/* ---------- Photo media ---------- */
.media-frame{
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: var(--surface-alt); position: relative;
}
.media-frame img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.photo-banner{
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 320px; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-md);
}
.photo-banner img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.photo-banner::after{
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(18,33,26,.92) 0%, rgba(18,33,26,.55) 45%, rgba(18,33,26,.1) 80%);
}
.photo-banner__content{ position: relative; z-index: 2; padding: var(--sp-7); color: var(--on-dark); max-width: 640px; }
.photo-banner__content .eyebrow{ color: var(--lime); }
.photo-banner__content h2, .photo-banner__content h3{ color: var(--on-dark); }
.photo-banner__content p{ color: var(--on-dark-muted); margin-top: var(--sp-2); }

/* ---------- Steps / process ---------- */
.steps{ counter-reset: step; display: grid; gap: var(--sp-6); }
@media (min-width: 768px){ .steps{ grid-template-columns: repeat(4,1fr); } }
.step{ position: relative; padding-top: var(--sp-6); }
.step::before{
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 800; font-size: 1.6rem;
  color: var(--lime); -webkit-text-stroke: 1px var(--forest-dark);
  display: block; margin-bottom: var(--sp-3);
}

/* ---------- CTA banner ---------- */
.cta-banner{
  background: linear-gradient(120deg, var(--forest-dark), var(--forest) 60%, var(--lime-dark));
  color: var(--on-dark); border-radius: var(--radius-lg);
  padding: var(--sp-7); display: flex; flex-wrap: wrap; gap: var(--sp-6);
  align-items: center; justify-content: space-between;
}
.cta-banner h2, .cta-banner p{ color: var(--on-dark); }
.cta-banner p{ color: rgba(243,245,241,.85); }
.cta-banner__actions{ display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* ---------- Testimonials ---------- */
.testimonial{
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-4); height: 100%;
}
.stars{ display: flex; gap: 3px; color: var(--gold); }
.stars svg{ width: 16px; height: 16px; }
.testimonial blockquote{ font-size: 1rem; color: var(--text); }
.testimonial cite{ font-style: normal; font-family: var(--font-head); font-weight: 700; font-size: .88rem; color: var(--ink); display: block; }
.testimonial cite span{ display: block; font-family: var(--font-body); font-weight: 400; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom: 1px solid var(--border); }
.faq-item summary{
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding-block: var(--sp-5); font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary .plus{ flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border-strong); display: grid; place-items: center; transition: transform .2s var(--ease), background .2s; }
.faq-item summary .plus svg{ width: 14px; height: 14px; }
.faq-item[open] summary .plus{ background: var(--lime); border-color: var(--lime); transform: rotate(45deg); }
.faq-item p{ padding-bottom: var(--sp-5); color: var(--text-muted); max-width: 70ch; }

/* ---------- Table ---------- */
.data-table{ width: 100%; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.data-table th, .data-table td{ text-align: left; padding: var(--sp-4) var(--sp-5); font-size: .92rem; }
.data-table thead th{ background: var(--ink); color: var(--on-dark); font-family: var(--font-head); }
.data-table tbody tr:nth-child(even){ background: var(--surface-alt); }
.data-table tbody tr{ border-top: 1px solid var(--border); }
.table-scroll{ overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- Forms ---------- */
.form-grid{ display: grid; gap: var(--sp-5); }
@media (min-width: 640px){ .form-grid--2{ grid-template-columns: 1fr 1fr; } }
.field{ display: flex; flex-direction: column; gap: var(--sp-2); }
.field label{ font-weight: 600; font-size: .9rem; color: var(--ink); }
.field .hint{ font-size: .78rem; color: var(--text-faint); }
.field--required label::after{ content: " *"; color: var(--forest); }
.field input, .field select, .field textarea{
  border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: .8rem .95rem; background: var(--surface); min-height: 48px;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
  width: 100%;
}
.field textarea{ min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--forest); box-shadow: 0 0 0 4px var(--forest-light); outline: none;
}
.field-row{ display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.radio-group{ display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.radio-chip{
  display: inline-flex; align-items: center; gap: var(--sp-2);
  border: 1.5px solid var(--border-strong); border-radius: var(--radius-pill);
  padding: .6rem 1.1rem; font-size: .88rem; font-weight: 600; cursor: pointer;
  transition: all .15s var(--ease);
}
.radio-chip input{ accent-color: var(--forest); }
.radio-chip:has(input:checked){ background: var(--forest); border-color: var(--forest); color: var(--on-dark); }
.form-panel{
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
@media (min-width: 768px){ .form-panel{ padding: var(--sp-8); } }
.form-note{ font-size: .8rem; color: var(--text-faint); margin-top: var(--sp-4); }
.form-status{ display: none; padding: var(--sp-4); border-radius: var(--radius-sm); font-weight: 600; margin-top: var(--sp-5); }
.form-status.is-success{ display: block; background: var(--forest-light); color: var(--forest-dark); }
.form-status.is-error{ display: block; background: #fbeae5; color: var(--danger); }
.honeypot{ position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Info list ---------- */
.info-list{ display: flex; flex-direction: column; gap: var(--sp-5); }
.info-list__item{ display: flex; gap: var(--sp-4); }
.info-list__item svg{ width: 22px; height: 22px; color: var(--forest); flex: none; margin-top: 2px; }
.section--ink .info-list__item svg{ color: var(--lime); }
.info-list__item h4{ margin-bottom: 2px; }
.info-list__item p{ color: var(--text-muted); font-size: .92rem; }
.section--ink .info-list__item p{ color: var(--on-dark-muted); }

/* ---------- Map ---------- */
.map-frame{ border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.map-frame iframe{ width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--ink); color: var(--on-dark-muted); padding-top: var(--sp-8); }
.footer-logo-card{
  display: inline-flex; padding: var(--sp-3) var(--sp-4); background: var(--surface);
  border-radius: var(--radius-md); margin-bottom: var(--sp-5);
}
.footer-logo-card img{ height: 34px; width: auto; }
.site-footer h4{ color: var(--on-dark); font-family: var(--font-head); font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.site-footer a:hover{ color: var(--lime); }
.footer-grid{ display: grid; gap: var(--sp-7); grid-template-columns: 1fr; }
@media (min-width: 768px){ .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-links{ display: flex; flex-direction: column; gap: var(--sp-3); font-size: .92rem; }
.footer-contact-item{ display: flex; gap: var(--sp-3); align-items: flex-start; margin-bottom: var(--sp-3); font-size: .92rem; }
.footer-contact-item svg{ width: 18px; height: 18px; color: var(--lime); flex: none; margin-top: 2px; }
.footer-bottom{
  margin-top: var(--sp-8); border-top: 1px solid rgba(243,245,241,.12);
  padding-block: var(--sp-5); display: flex; flex-wrap: wrap; gap: var(--sp-3);
  justify-content: space-between; font-size: .82rem;
}
.footer-bottom a:hover{ color: var(--lime); }
.social-row{ display: flex; gap: var(--sp-3); }
.social-row a{
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(243,245,241,.08); border: 1px solid rgba(243,245,241,.18);
}
.social-row svg{ width: 16px; height: 16px; }

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--ink); border-top: 1px solid rgba(243,245,241,.14);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a{
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: .65rem 0 .55rem; color: var(--on-dark); font-size: .72rem; font-weight: 700;
  font-family: var(--font-head); min-height: 56px;
}
.mobile-bar a:nth-child(2){ background: var(--lime); color: var(--ink); }
.mobile-bar svg{ width: 20px; height: 20px; }
@media (min-width: 1080px){ .mobile-bar{ display: none; } }
.mobile-bar-spacer{ height: 68px; }
@media (min-width: 1080px){ .mobile-bar-spacer{ display: none; } }

/* ---------- Chat launcher (placeholder until Tawk.to configured) ---------- */
.chat-launcher{
  position: fixed; right: var(--sp-5); bottom: calc(var(--sp-5) + 68px);
  z-index: 95; width: 58px; height: 58px; border-radius: 50%;
  background: var(--lime); color: var(--ink); display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform .15s var(--ease);
}
.chat-launcher:hover{ transform: scale(1.06); }
.chat-launcher svg{ width: 26px; height: 26px; }
@media (min-width: 1080px){ .chat-launcher{ bottom: var(--sp-6); } }

/* ---------- Misc ---------- */
.divider{ height: 1px; background: var(--border); border: 0; margin-block: var(--sp-7); }
.text-center{ text-align: center; margin-inline: auto; }
.section-head{ max-width: 720px; margin-bottom: var(--sp-7); }
.section-head.text-center{ margin-inline: auto; }
