/* Plan It Green Printing — pigp.css
   Fonts: Bitter (body), Sanchez (headings) — loaded via google-fonts.css
   Palette: dark-green #2d5a27 | mid-green #4a7c40 | text #1a1a1a | bg #fff | tint #f4f8f2
*/

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p a { color: var(--green-dark); text-decoration: underline; text-decoration-color: rgba(45,90,39,.45); text-decoration-thickness: 2px; text-underline-offset: .18em; cursor: pointer; transition: color .15s, text-decoration-color .15s; }
p a:hover { color: var(--green-dark); text-decoration-color: currentColor; }
button { background: none; border: none; cursor: pointer; font: inherit; }
ul { list-style: none; }

/* ─── Custom properties ──────────────────────────────────────────────────── */
:root {
  --green-dark:  #2d5a27;
  --green-mid:   #4a7c40;
  --green-light: #f4f8f2;
  --text:        #1a1a1a;
  --text-muted:  #555;
  --border:      #dde8d9;
  --white:       #ffffff;
  --max-w:       1200px;
  --nav-h:       72px;
  --radius:      4px;
  --shadow:      0 2px 12px rgba(0,0,0,.12);
}

/* ─── Base typography ────────────────────────────────────────────────────── */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Bitter', Georgia, serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sanchez', Georgia, serif;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2, h1.h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3, h1.h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }
em     { font-style: italic; }

/* ─── Layout helpers ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .65em 1.5em;
  border-radius: var(--radius);
  font-family: 'Sanchez', Georgia, serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background-color .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border: 2px solid var(--green-dark);
}
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); }

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-outline:hover { background: var(--green-dark); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border: 2px solid var(--white);
}
.btn-white:hover { background: var(--green-light); }
.no-top-margin { margin-top: 0 !important; }

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(0,0,0,.1);
  height: var(--nav-h);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

.nav-logo a {
  display: flex;
  align-items: center;
}
.nav-logo {
  flex: 0 0 auto;
}
.nav-logo img {
  width: auto;
  height: 48px;
  margin-bottom: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
  transform: translateY(5px);
}

.site-nav a,
.site-nav button {
  padding: .5rem .75rem;
  font-size: .9rem;
  font-family: 'Sanchez', Georgia, serif;
  letter-spacing: .03em;
  color: var(--text);
  border-radius: var(--radius);
  transition: color .15s, background-color .15s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav button:hover { color: var(--green-dark); background: var(--green-light); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > button {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.nav-dropdown > button::after {
  content: '';
  display: inline-block;
  width: .45em;
  height: .45em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -.15em;
  transition: transform .2s;
}
.nav-dropdown.open > button::after { transform: rotate(-135deg); margin-top: .15em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: .5rem 0;
}
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: .55rem 1.25rem;
  font-size: .875rem;
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--green-light); color: var(--green-dark); }

.nav-cta { margin-left: .5rem; }
.nav-cta .btn-primary,
.nav-cta .btn-primary:hover {
  color: var(--white);
}
/* Override the generic .site-nav a:hover light-bg rule for the CTA button */
.site-nav .nav-cta a:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: auto;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: .75rem 1rem 1rem;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .site-nav.open { display: flex; }

  .site-nav a,
  .site-nav button {
    padding: .75rem;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-dropdown > button { width: 100%; justify-content: space-between; }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--green-light);
    padding: 0;
    margin-left: 1rem;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { padding: .6rem 1rem; font-size: .9rem; }

  .nav-cta { margin-left: 0; margin-top: .5rem; }
  .nav-cta .btn { width: 100%; text-align: center; }
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  z-index: 1;
  padding: 15px 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 3rem clamp(1rem,5vw,4rem);
  max-width: 860px;
}
.hero-content h1 { color: var(--white); margin-bottom: .5rem; }
.hero-content h3 { color: var(--white); font-weight: 400; margin-bottom: .5rem; }
.hero-content p  { color: rgba(255,255,255,.9); font-size: 1.15rem; margin-bottom: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.hero-home .hero-content {
  background: rgba(255, 255, 255, .5);
  color: var(--black);
  margin-block: 30px;
  max-height: calc(100% - 60px);
  box-sizing: border-box;
}

.hero-home .hero-content h1,
.hero-home .hero-content h3,
.hero-home .hero-content p {
  color: var(--black);
}

/* ─── Page header (non-hero pages) ──────────────────────────────────────── */
.page-header {
  background: var(--green-light);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
}
.page-header h1 { margin-bottom: .5rem; }
.page-header p { color: var(--text-muted); max-width: 640px; margin-inline: auto; }
.breadcrumb {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.breadcrumb a { color: var(--green-dark); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { margin-inline: .4rem; }

/* ─── Sections ───────────────────────────────────────────────────────────── */
.section       { padding: 4rem 0; }
.section-sm    { padding: 2.5rem 0; }
.section-lg    { padding: 6rem 0; }
.section-tint  { background: var(--green-light); }
.section-dark  { background: var(--green-dark); color: var(--white); }
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title p { color: var(--text-muted); max-width: 640px; margin-inline: auto; margin-top: .5rem; }

/* ─── Two-column product layout ─────────────────────────────────────────── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.product-layout.image-right .product-text { order: 1; }
.product-layout.image-right .product-image { order: 2; }
@media (max-width: 768px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-layout.image-right .product-text,
  .product-layout.image-right .product-image { order: unset; }
}
.product-image img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.product-text h3 { margin-bottom: 1rem; color: var(--green-dark); }
.product-text h3.h3-small { font-size: clamp(1.1rem, 2.3vw, 1.6rem); }
.product-text h3 + p,
.product-text > p { margin-bottom: 1rem; }
.product-text hr { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

/* Home print menu */
.print-menu-section {
  background:
    linear-gradient(135deg, rgba(255,255,255,.84), rgba(244,248,242,.72)),
    var(--green-light);
}
.print-menu-intro {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}
.print-menu-intro .eyebrow {
  margin-bottom: .45rem;
  font-family: 'Sanchez', Georgia, serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.print-menu-intro h2 {
  margin-bottom: .5rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
}
.print-menu-intro p {
  line-height: 1.0;
}
.print-menu-intro p:last-child {
  max-width: 660px;
  margin-inline: auto;
  color: var(--text-muted);
}
.print-menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr) minmax(0, .9fr);
  gap: 1rem;
  align-items: stretch;
}
.print-menu-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border: 1px solid rgba(45,90,39,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 32px rgba(45,90,39,.10);
}
.print-menu-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: .4rem;
  background: var(--green-dark);
}
.print-menu-card:nth-child(2)::before { background: #6f8d46; }
.print-menu-card:nth-child(3)::before { background: #8b6f3f; }
.print-menu-card h3 {
  margin-bottom: 1rem;
  color: var(--green-dark);
}
.print-menu-card ul {
  display: grid;
  gap: .58rem;
}

.print-menu-card ul.bulleted {
  display: block;
  padding-left: 1.25rem;
  margin: 0.25rem 0 0 0;
}

.print-menu-card ul.bulleted li {
  margin: 0.45rem 0;
  line-height: 1.25;
  list-style: disc outside;
}
.print-menu-card a {
  display: inline;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(45,90,39,.45);
  text-decoration-thickness: 2px;
  text-underline-offset: .18em;
  transition: color .15s, text-decoration-color .15s, text-underline-offset .15s;
}
.print-menu-card a:hover,
.print-menu-card a:focus {
  color: var(--green-dark);
  text-decoration-color: currentColor;
  text-underline-offset: .28em;
}
.print-menu-cta {
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 900px) {
  .print-menu-grid { grid-template-columns: 1fr; }
}

/* Client logo wall */
.client-showcase {
  background: var(--white);
}
.client-showcase .section-title {
  margin-bottom: 1.75rem;
}
.client-showcase .section-title a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: .2em;
}
.client-logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: .85rem;
  align-items: stretch;
}
.client-logo-item {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid rgba(45,90,39,.12);
  border-radius: 8px;
  background: rgba(244,248,242,.62);
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.client-logo-item:hover {
  transform: translateY(-2px);
  border-color: rgba(45,90,39,.25);
  box-shadow: 0 10px 26px rgba(45,90,39,.10);
}
.client-logo-item-dark {
  background: rgba(150, 195, 161, .62);
}
.client-logo-item img {
  width: auto;
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}
.client-logo-item:nth-child(5) img,
.client-logo-item:nth-child(7) img,
.client-logo-item:nth-child(9) img,
.client-logo-item:nth-child(14) img {
  max-height: 82px;
}

@media (max-width: 620px) {
  .client-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
  }
  .client-logo-item {
    min-height: 92px;
    padding: .85rem;
  }
  .client-logo-item img { max-height: 62px; }
}

/* ─── Product grid (category pages) ─────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-card-body { padding: 1.25rem; }
.product-card-body h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--green-dark); }
.product-card-body p  { font-size: .9rem; color: var(--text-muted); margin-bottom: 1rem; }

/* ─── Feature strip (icon + text blocks) ────────────────────────────────── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.feature-item h4 { color: var(--green-dark); margin-bottom: .5rem; }
.feature-item p  { font-size: .9rem; color: var(--text-muted); }

/* ─── Uses list ──────────────────────────────────────────────────────────── */
.uses-list {
  columns: 2;
  column-gap: 2rem;
}
.uses-list li { margin-bottom: .4rem; font-size: .9rem; break-inside: avoid; }
@media (max-width: 600px) { .uses-list { columns: 1; } }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  font-family: 'Sanchez', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-dark);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 1.25rem; }
.faq-item.open .faq-answer { display: block; }

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--green-mid);
}
.testimonial-card blockquote { font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card cite { font-size: .875rem; color: var(--text-muted); font-style: normal; font-weight: 700; }

/* ─── Contact / request section ─────────────────────────────────────────── */
.contact-request {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  align-items: stretch;
}
.contact-info-panel {
  background: var(--green-dark);
  color: var(--white);
  padding: 3.5rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contact-info-panel h1 { color: var(--white); margin-bottom: .75rem; }
.accent-line { width: 3rem; height: 3px; background: #8dc87a; margin-bottom: 1.75rem; border-radius: 2px; }
.contact-info-panel p { color: rgba(255,255,255,.85); margin-bottom: .6rem; }
.contact-info-panel a { color: rgba(255,255,255,.85); text-decoration: underline; text-underline-offset: .2em; }
.contact-info-panel a:hover { color: var(--white); }
.contact-form-panel { padding: 3rem clamp(1.5rem, 4vw, 3rem); background: var(--white); }
@media (max-width: 820px) { .contact-request { grid-template-columns: 1fr; } }

/* Form fields */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: .35rem; font-size: .875rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .65rem .85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Bitter', Georgia, serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74,124,64,.15);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* Validation states */
.field-error {
  font-size: .8rem;
  color: #c0392b;
  margin-top: .25rem;
  min-height: 1.1rem;
  display: none;
}
.field-error.visible { display: block; }
.input-error { border-color: #c0392b !important; }
.input-error:focus { box-shadow: 0 0 0 3px rgba(192,57,43,.15) !important; }

/* Submit button states */
.form-submit { margin-top: 1.25rem; }
.button-submit {
  display: inline-block;
  padding: .75em 2.2em;
  background: var(--green-dark);
  color: var(--white);
  border: 2px solid var(--green-dark);
  border-radius: var(--radius);
  font-family: 'Sanchez', Georgia, serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .18s, border-color .18s;
}
.button-submit:hover { background: var(--green-mid); border-color: var(--green-mid); }
.button-submit.button-disabled {
  background: #aaa;
  border-color: #aaa;
  cursor: not-allowed;
  opacity: .75;
}

/* Toast notification */
.form-toast {
  margin-top: 1rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  display: none;
}
.form-toast.success { display: block; background: #e8f5e9; border: 1px solid #4caf50; color: #2e7d32; }
.form-toast.error   { display: block; background: #fdecea; border: 1px solid #c0392b; color: #b71c1c; }

/* Honeypot */
.honeypot { display: none !important; visibility: hidden; }

/* Quote accordion */
.accordion-section {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.1rem;
  overflow: hidden;
}
.accordion-toggle {
  width: 100%;
  text-align: left;
  padding: .85rem 1rem;
  font-family: 'Sanchez', Georgia, serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  background: var(--green-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: background-color .15s;
  border: none;
}
.accordion-toggle:hover { background: var(--border); }
.accordion-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green-dark);
  flex-shrink: 0;
  transition: transform .2s;
  line-height: 1;
}
.accordion-toggle[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  padding: 1.25rem 1rem;
  border-top: 1px solid var(--border);
  display: none;
}
.accordion-body.open { display: block; }

/* ─── About / rich content ───────────────────────────────────────────────── */
.rich-content { max-width: 820px; margin-inline: auto; }
.rich-content h2,
.rich-content h3 { margin-top: 2rem; margin-bottom: .75rem; color: var(--green-dark); }
.rich-content p   { margin-bottom: 1.25rem; }
.rich-content ul  { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.rich-content ul li { margin-bottom: .4rem; }

/* ─── Image gallery / multi-image ───────────────────────────────────────── */
.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}
.image-row img { max-width: 320px; border-radius: var(--radius); flex: 1 1 260px; object-fit: cover; }

/* ─── CTA banner ─────────────────────────────────────────────────────────── */
.cta-banner {
  text-align: center;
  padding: 4rem 2rem;
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.1rem; }
.section-tint .cta-banner h2 { color: var(--text); }
.section-tint .cta-banner p  { color: var(--text); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, .9fr) minmax(180px, .9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-bottom: 2.5rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; } }

.footer-award-img { max-width: 260px; }
.footer-award-copy { margin-top: .75rem; font-size: .9rem; line-height: 1.5; }
.footer-award-copy a { color: rgba(255,255,255,.8); text-decoration: underline; }
.footer-award-copy a:hover { color: var(--white); }

.footer-boss img {
  display: block;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.5);
  margin-inline: auto;
  margin-bottom: .75rem;
}
.footer-boss h4 { font-size: 1rem; font-weight: normal;}
.footer-boss h4 a { color: var(--white); text-decoration: underline; }
.footer-boss h4 a:hover { color: var(--green-light); }
@media (max-width: 720px) { .footer-boss img { margin-inline: auto; } }

.footer-social h4 {
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.8);
}
.social-links { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  color: var(--white);
  transition: background-color .18s, border-color .18s;
}
.social-link:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.social-link svg { width: 22px; height: 22px; fill: currentColor; }
@media (max-width: 720px) { .social-links { justify-content: center; } }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 1.25rem;
  font-size: .82rem;
  text-align: center;
  color: rgba(255,255,255,.7);
}
.footer-bottom a { color: rgba(255,255,255,.7); text-decoration: underline; }
.footer-bottom a:hover { color: var(--white); }

/* ─── Utility ────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-green  { color: var(--green-dark); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.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;
}
