/* ▓▓▓▓▓▒▒▒▒▒░░░░░ MASTER STYLESHEET ░░░░░▒▒▒▒▒▓▓▓▓▓ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* old display font: Playfair+Display 'Playfair Display' */

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

:root {
  --ink:        #1C2617;
  --stone:      #C8B89A;
  --bark:       #482f23;
  --sage:       #7A9E7E;
  --green:      #3D6B4F;
  --parchment:  #F5F0E8;
  --cream:      #FDFAF5;
  --muted:      #6B7280;
  --border:     #DDD5C4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;

  --max-w:      1200px;
  --nav-h:      72px;
  --transition: 0.25s ease;
	
	
  --lb-bg: #0d0d0f;
  --lb-overlay: rgba(10, 10, 12, 0.92);
  --lb-accent: #e8e6df;

}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ▓▓▓▓▓▒▒▒▒▒░░░░░ Typography Scale ░░░░░▒▒▒▒▒▓▓▓▓▓ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.25;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}
.body-lg  { font-size: 1.0625rem; line-height: 1.7; }
.body-sm  { font-size: 0.875rem;  color: var(--muted); }
.label    { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); }

/* ▓▓▓▓▓▒▒▒▒▒░░░░░ Layout Helpers ░░░░░▒▒▒▒▒▓▓▓▓▓ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.75rem);
}
.section { padding-block: clamp(4rem, 8vw, 7rem); }

/* ▓▓▓▓▓▒▒▒▒▒░░░░░ Buttons ░░░░░▒▒▒▒▒▓▓▓▓▓ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover { background: var(--bark); border-color: var(--bark); box-shadow: 0 6px 24px rgba(61,107,79,.35); }

.btn-outline {
  background: rgba(28,38,23,0.75);
  color: var(--cream);
  border-color: rgba(245,240,232,.95);
}
.btn-outline:hover {
  background: rgba(61,107,79,0.75);
  border-color: var(--cream);
  transform: translateY(-2px);}

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

/* ▓▓▓▓▓▒▒▒▒▒░░░░░ HEADER / NAV ░░░░░▒▒▒▒▒▓▓▓▓▓ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(28,38,23,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,184,154,.15);
  transition: background var(--transition);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Wordmark */
.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wordmark-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: 0.01em;
}
.wordmark-tag {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--stone);
  margin-top: 1px;
  text-transform: lowercase;
}

/* Nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245,240,232,.75);
  letter-spacing: 0.03em;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--sage);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--parchment); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--sage); }

.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: #4a8360 !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 910;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--parchment);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(28,38,23,0.97);
  backdrop-filter: blur(14px);
  padding: 2rem 2rem 3rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 800;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}
.nav-drawer.open { transform: translateX(0); }
.drawer-link {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--parchment);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(200,184,154,.1);
  transition: color var(--transition), padding-left var(--transition);
}
.drawer-link:hover { color: var(--sage); padding-left: 0.5rem; }
.drawer-cta {
  margin-top: 1.5rem;
  align-self: flex-start;
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* ▓▓▓▓▓▒▒▒▒▒░░░░░ HERO ░░░░░▒▒▒▒▒▓▓▓▓▓ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  padding-bottom: 2.5rem;
  overflow: hidden;
/*  background: var(--ink);*/
  background-image: url("banner.webp");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-shadow : 0 0 10px var(--ink), 0 0 20px #000, 0 0 30px #000, 0 0 30px #000;
}


.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
}
.hero-eyebrow-text {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.25rem);
  font-weight: 700;
  color: var(--parchment);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--sage); }

.hero h2 {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.hero h3 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  font-weight: 300;
  color: rgba(245,240,232,.78);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 3.5rem;
}

/* Stats Grid */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 480px;
}
.stat-card {
  background: rgba(245,240,232,.07);
  border: 1px solid rgba(200,184,154,.18);
  border-radius: var(--radius-md);
  padding: 1rem 1.125rem;
  backdrop-filter: blur(6px);
  transition: background var(--transition);
}
.stat-card:hover { background: rgba(245,240,232,.11); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-icon { color: var(--stone); font-size: 1rem; }

.stat-icon-grn { font-size: 1rem; }

.stat-label {
  font-size: 1rem;
  color: rgba(245,240,232,.65);
  line-height: 1.3;
}

/* ▓▓▓▓▓▒▒▒▒▒░░░░░ WHAT WE DO ░░░░░▒▒▒▒▒▓▓▓▓▓ */
.services { background: var(--parchment); }
.services-header {
  text-align: center;
  margin-bottom: 3rem;
}
.services-header .label { margin-bottom: 0.75rem; }
.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28,38,23,.1);
  border-color: var(--sage);
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green) 0%, var(--sage) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.75; }

.service-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.service-card p,
.service-card ul {
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.75;
}
.service-card li {
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.service-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}
.services-link {
  font-size: 0.9375rem;
  color: var(--green);
  transition: color var(--transition), padding-left var(--transition);
}
.services-link:hover { color: var(--sage); padding-left: 0.35rem; }

/* ▓▓▓▓▓▒▒▒▒▒░░░░░ WHO WE ARE ░░░░░▒▒▒▒▒▓▓▓▓▓ */
.about { background: var(--ink); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #2a3d26 0%, #3d2b1f 100%);
}

.about-text .label { margin-bottom: 1rem; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.about-text p {
  font-size: 1rem;
  color: rgba(245,240,232,.7);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-text p:last-of-type { margin-bottom: 2rem; }

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  border: 1px solid rgba(200,184,154,.25);
  font-size: 0.8125rem;
  color: var(--stone);
  background: rgba(245,240,232,.05);
}

.badge:hover { background: rgba(245,240,232,.11); }

/* ▓▓▓▓▓▒▒▒▒▒░░░░░ PROJECTS PAGE  ░░░░░▒▒▒▒▒▓▓▓▓▓ */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background-image: url("projects-banner.webp");
  background-size: cover;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.0625rem;
  color: rgba(245,240,232,.65);
  max-width: 520px;
  margin-inline: auto;
}

.portfolio-section { background: var(--parchment); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
}
.project-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(28,38,23,.12); }
.project-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d4cfc6 0%, #bfb9ae 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(100,90,80,.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.project-body { padding: 1.5rem; }
.project-category { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; }
.project-body h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.project-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.project-imgs {display: grid;
    grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
    gap: 4px;
    max-width: 720px;
	margin-top: 11px;
    margin-bottom: 4px;
}

.project-imgs img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: zoom-in;
    display: block;
    transition: opacity 0.15s ease, transform 0.15s ease;
}
 
.project-imgs img:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

/* lightbox */

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: var(--lb-overlay);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 40px;
}
 
.lightbox-overlay.is-open {
    display: flex;
}
 
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
 
.lightbox-content img {
    max-width: 90vw;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
 
.lightbox-counter {
    margin-top: 4px;
    font-size: 0.78rem;
    color: #8a8a8a;
    letter-spacing: 0.02em;
}
 
.lightbox-btn {
    position: absolute;
    background: var(--lb-control-bg);
    border: none;
    color: var(--lb-text);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.lightbox-btn:hover {
    background: var(--lb-control-bg-hover);
}
 
.lightbox-btn:focus-visible {
    outline: 2px solid var(--lb-accent);
    outline-offset: 2px;
}
 
.lightbox-close {
    top: -56px;
    right: 0;
}
 
.lightbox-prev {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 2rem;
  font-weight: 600;
}
 
.lightbox-next {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 2rem;
  font-weight: 600;
}

.lightbox-prev:hover { background: #4a8360 !important; }
.lightbox-next:hover { background: #4a8360 !important; }
 
@media (max-width: 640px) {
    .lightbox-prev { left: 4px; }
    .lightbox-next { right: 4px; }
    .lightbox-close { top: 8px; right: 8px; }
}

/* ▓▓▓▓▓▒▒▒▒▒░░░░░ REVIEWS PAGE ░░░░░▒▒▒▒▒▓▓▓▓▓ */

.reviews-section { background: var(--parchment); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 100%), 1fr));
  gap: 1.5rem;
}

/* CTA strip */
    .cta-strip {
      background: var(--ink);
      padding-block: clamp(3.5rem, 6vw, 5.5rem);
      text-align: center;
    }
    .cta-strip .label { margin-bottom: 1rem; }
    .cta-strip h2 {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      font-weight: 700;
      color: var(--parchment);
      margin-bottom: 1rem;
      max-width: 560px;
      margin-inline: auto;
      line-height: 1.2;
    }
    .cta-strip p {
      font-size: 1.0625rem;
      color: rgba(245,240,232,.65);
      max-width: 480px;
      margin-inline: auto;
      margin-bottom: 2rem;
      line-height: 1.65;
    }
    .cta-strip-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.875rem;
      justify-content: center;
    }

/* ▓▓▓▓▓▒▒▒▒▒░░░░░ FOOTER ░░░░░▒▒▒▒▒▓▓▓▓▓ */
.site-footer {
  background: var(--bark);
  color: var(--parchment);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,.12);
}
.footer-brand h1 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(245,240,232,.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 340px;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(245,240,232,.8);
  transition: color var(--transition);
}
.footer-contact-item:hover { color: var(--sage); }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--sage); fill: none; stroke-width: 2; flex-shrink: 0; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link {
  font-size: 0.9375rem;
  color: rgba(245,240,232,.65);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-link:hover { color: var(--parchment); padding-left: 0.35rem; }

.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-meta { font-size: 0.8125rem; color: rgba(245,240,232,.4); display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.footer-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(245,240,232,.3); }
.footer-star { color: var(--stone); font-size: 0.75rem; }
.footer-copy { font-size: 0.8125rem; color: rgba(245,240,232,.35); }

/* ▓▓▓▓▓▒▒▒▒▒░░░░░ Responsive ░░░░░▒▒▒▒▒▓▓▓▓▓*/
@media (max-width : 1501px ){
  .about-inner { grid-template-columns: 1fr; }
  .about-image-wrap { aspect-ratio: 16/9; max-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-drawer { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ▓▓▓▓▓▒▒▒▒▒░░░░░ Reduced Motion ░░░░░▒▒▒▒▒▓▓▓▓▓ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ▓▓▓▓▓▒▒▒▒▒░░░░░ Focus Styles ░░░░░▒▒▒▒▒▓▓▓▓▓ */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 3px;
}
