/* Living Greens marketing site — shared styles */
@import url("colors_and_type.css");

/* ---------- reset & base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-page);
  color: var(--fg-1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wp-site-blocks {
  padding: 0;
}
.wp-site-blocks > * {
  margin-block-start: 0;
  margin-block-end: 0;
}
.wp-block-template-part,
.wp-block-post-content {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.wp-block-template-part .wp-block-template-part__inner,
.wp-block-post-content > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}
img { display: block; max-width: 100%; }
button, input, textarea, select { font-family: inherit; }
a { color: inherit; }

/* ---------- soft hand-drawn flourishes ---------- */
.scribble-underline {
  position: relative;
  display: inline-block;
}
.scribble-underline::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%; bottom: -10px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 9 C 30 2, 60 12, 90 6 S 150 12, 198 5' stroke='%23FFE018' stroke-width='6' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
}
.scribble-underline.leaf::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 9 C 30 2, 60 12, 90 6 S 150 12, 198 5' stroke='%2380C848' stroke-width='6' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
}
.scribble-underline.berry::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 9 C 30 2, 60 12, 90 6 S 150 12, 198 5' stroke='%23C71F77' stroke-width='6' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
}

/* ---------- shared layout ---------- */
.lguf-page { min-height: 100vh; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- header ---------- */
.lguf-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 252, 247, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-default);
}
.lguf-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}
.lguf-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.lguf-logo img { width: 46px; height: 46px; object-fit: contain; }
.lguf-logo__text { line-height: 1.05; }
.lguf-logo__line1 {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 800; letter-spacing: 0.06em;
  color: var(--leaf-700);
}
.lguf-logo__line2 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--water-600);
}
.lguf-nav {
  display: flex; align-items: center; gap: 22px;
  flex-wrap: nowrap;
}
.lguf-nav a {
  font-family: var(--font-ui);
  font-size: 14px; font-weight: 600;
  color: var(--fg-1); text-decoration: none;
  padding: 8px 0; position: relative;
  transition: color var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.lguf-nav a.btn {
  white-space: nowrap;
  padding: 11px 18px;
  font-size: 13px;
  color: white;
}
.lguf-nav a.btn:hover { color: white; }
.lguf-nav a:hover { color: var(--leaf-700); }
.lguf-nav a.is-active { color: var(--leaf-700); }
.lguf-nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
  background: var(--sun-500); border-radius: 999px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 14px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--leaf-500); color: white; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--leaf-600); }
.btn--secondary { background: var(--water-500); color: white; box-shadow: var(--shadow-sm); }
.btn--secondary:hover { background: var(--water-600); }
.btn--sun { background: var(--sun-500); color: var(--leaf-900); box-shadow: var(--shadow-sm); }
.btn--ghost {
  background: transparent;
  color: var(--leaf-800);
  border: 1.5px solid var(--leaf-700);
}
.btn--ghost:hover { background: var(--leaf-50); }
.btn--white { background: white; color: var(--leaf-800); box-shadow: var(--shadow-sm); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--with-arrow::after {
  content: "\2192";
  display: inline-block;
  margin-left: 4px;
  font-size: 1.05em;
  line-height: 1;
}

/* ---------- footer ---------- */
.lguf-footer {
  background: var(--leaf-950);
  color: var(--leaf-100);
  padding: 80px 32px 32px;
}
.lguf-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lguf-footer__top {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 44px;
  margin-bottom: 40px;
}
.lguf-footer__heading {
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 800; letter-spacing: 0.12em;
  color: var(--sun-500); text-transform: uppercase;
  margin: 0 0 16px;
}
.lguf-footer__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.lguf-footer__list a {
  font-family: var(--font-ui);
  font-size: 14px; color: var(--leaf-100);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}
.lguf-footer__list a:hover { color: var(--sun-500); }
.lguf-footer__bottom {
  border-top: 1px solid var(--leaf-800);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-ui); font-size: 13px; color: var(--leaf-300);
  flex-wrap: wrap; gap: 16px;
}
.lguf-footer__brand {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 18px;
}
.lguf-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.lguf-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sun-500);
  text-decoration: none;
}
.lguf-footer__tag {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px; color: var(--leaf-200);
  line-height: 1.55;
  max-width: 320px;
  margin: 0;
}
.lguf-footer__legal { display: flex; gap: 24px; }
.lguf-footer__legal a { color: inherit; text-decoration: none; }

/* ---------- common section bits ---------- */
.section {
  padding: 96px 0;
}
.section--leaf { background: var(--bg-leaf-tint); }
.section--sky { background: var(--bg-sky-tint); }
.section--cream { background: var(--bg-sun-tint); }
.section--white { background: var(--neutral-0); }
.section--dark { background: var(--leaf-900); color: var(--neutral-0); }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  color: var(--leaf-700); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.eyebrow--sun { color: var(--sun-700); }
.eyebrow--water { color: var(--water-600); }

.section-title {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--leaf-900);
  margin: 0 0 16px;
}
.section-title--sm { font-size: 36px; }
.section-title--lg { font-size: 60px; }

.section-lede {
  font-family: var(--font-body);
  font-size: 19px; line-height: 1.65;
  color: var(--fg-1); max-width: 640px;
  margin: 0;
}

.pill-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: white;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--leaf-700); text-transform: uppercase;
  box-shadow: var(--shadow-xs);
}
.pill-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--leaf-500);
}

/* ---------- cards ---------- */
.card {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- leaf pattern bg helper ---------- */
.bg-leaf-pattern {
  background-image:
    radial-gradient(rgba(128, 200, 72, 0.08) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.bg-doodle {
  position: relative; overflow: hidden;
}
.bg-doodle::before, .bg-doodle::after {
  content: ""; position: absolute; pointer-events: none;
  background-repeat: no-repeat; background-size: contain;
  opacity: 0.08;
}
.bg-doodle::before {
  width: 240px; height: 240px;
  top: -40px; left: -40px;
  background-image: url("assets/glyph-leaf.svg");
  transform: rotate(-15deg);
}
.bg-doodle::after {
  width: 180px; height: 180px;
  bottom: -30px; right: -30px;
  background-image: url("assets/glyph-leaf.svg");
  transform: rotate(70deg);
}

/* ---------- hand-drawn doodle border ---------- */
.doodle-border {
  border: 2.5px solid var(--leaf-700);
  border-radius: 22px 30px 24px 28px / 28px 24px 30px 22px;
}

/* ---------- "stamp" label ---------- */
.stamp {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sun-500);
  color: var(--leaf-900);
  transform: rotate(-3deg);
  box-shadow: var(--shadow-xs);
}

.lguf-hero-badge {
  position: absolute;
  top: 0;
  left: -28px;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(-6deg);
}
.lguf-hero-badge__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--leaf-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--leaf-700);
  font-size: 20px;
}
.lguf-hero-badge__eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  color: var(--leaf-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lguf-hero-badge__label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--leaf-900);
  margin-top: 2px;
}

.lguf-marquee {
  overflow: hidden;
  max-width: 100%;
}
.lguf-marquee__track {
  display: flex;
  width: max-content;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  flex-wrap: nowrap;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: lguf-marquee 24s linear infinite;
  will-change: transform;
}
.lguf-marquee__track > span {
  display: inline-block;
  flex: 0 0 auto;
  white-space: nowrap;
}
.lguf-marquee__sep {
  color: var(--sun-500);
  display: inline-block;
  margin: 0 0.9em;
  vertical-align: middle;
}
@keyframes lguf-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 24px)); }
}

/* ---------- mila floating helper ---------- */
.mila-tag {
  position: absolute;
  pointer-events: none;
}

/* ---------- icons ---------- */
.icon-circle {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.lguf-glyph {
  width: 28px;
  height: 28px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex: 0 0 auto;
}
.lguf-glyph--quote {
  width: 36px;
  height: 36px;
}
.lguf-glyph--heart-white {
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21s-7-4.5-9.5-9.5C.7 7 4 3 7.5 4 9.4 4.5 12 6 12 6s2.6-1.5 4.5-2C20 3 23.3 7 21.5 11.5 19 16.5 12 21 12 21z'/></svg>");
}
.lguf-glyph--heart {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23578D2B' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21s-7-4.5-9.5-9.5C.7 7 4 3 7.5 4 9.4 4.5 12 6 12 6s2.6-1.5 4.5-2C20 3 23.3 7 21.5 11.5 19 16.5 12 21 12 21z'/></svg>");
}
.lguf-glyph--heart-gold {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFE018' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21s-7-4.5-9.5-9.5C.7 7 4 3 7.5 4 9.4 4.5 12 6 12 6s2.6-1.5 4.5-2C20 3 23.3 7 21.5 11.5 19 16.5 12 21 12 21z'/></svg>");
}
.lguf-glyph--school {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23314D82' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><path d='M3 21h18'/><path d='M5 21V8l7-4 7 4v13'/><path d='M9 21v-6h6v6'/></svg>");
}
.lguf-glyph--arrow {
  width: 20px;
  height: 20px;
}
.lguf-glyph--arrow.lguf-glyph--water {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23314D82' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14'/><path d='M12 5l7 7-7 7'/></svg>");
}
.lguf-glyph--arrow.lguf-glyph--leaf {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23578D2B' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14'/><path d='M12 5l7 7-7 7'/></svg>");
}
.lguf-glyph--quote.lguf-glyph--leaf {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2380C848'><path d='M2.5 20c3.6-1.8 5.5-4.6 5.5-8.2V5H2.5v7h3c0 2.6-1 4.6-3 8zm11 0c3.6-1.8 5.5-4.6 5.5-8.2V5h-5.5v7h3c0 2.6-1 4.6-3 8z'/></svg>");
}
.lguf-glyph--quote.lguf-glyph--water {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235078C0'><path d='M2.5 20c3.6-1.8 5.5-4.6 5.5-8.2V5H2.5v7h3c0 2.6-1 4.6-3 8zm11 0c3.6-1.8 5.5-4.6 5.5-8.2V5h-5.5v7h3c0 2.6-1 4.6-3 8z'/></svg>");
}
.lguf-glyph--quote.lguf-glyph--berry {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C71F77'><path d='M2.5 20c3.6-1.8 5.5-4.6 5.5-8.2V5H2.5v7h3c0 2.6-1 4.6-3 8zm11 0c3.6-1.8 5.5-4.6 5.5-8.2V5h-5.5v7h3c0 2.6-1 4.6-3 8z'/></svg>");
}
.lguf-glyph--yt {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFE018' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><rect x='2.5' y='5' width='19' height='14' rx='3'/><path d='M10 9l5 3-5 3z' fill='%23FFE018' stroke='none'/></svg>");
}
.lguf-glyph--mail {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFE018' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='14' rx='2'/><path d='M3 7l9 6 9-6'/></svg>");
}
.lguf-home-icon::before {
  content: "";
  width: 28px;
  height: 28px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}
.lguf-home-icon--box::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23578D2B' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 7l9-4 9 4'/><path d='M3 7l9 4 9-4'/><path d='M3 7v10l9 4 9-4V7'/></svg>");
}
.lguf-home-icon--school::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233B5C9A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 21h18'/><path d='M5 21V8l7-4 7 4v13'/><path d='M9 21v-6h6v6'/></svg>");
}
.lguf-home-icon--heart::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B99A00' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21s-7-4.5-9.5-9.5C.7 7 4 3 7.5 4 9.4 4.5 12 6 12 6s2.6-1.5 4.5-2C20 3 23.3 7 21.5 11.5 19 16.5 12 21 12 21z'/></svg>");
}
.lguf-inside-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: white;
  border-radius: 14px;
  padding: 16px 20px 16px 168px;
  box-shadow: var(--shadow-md);
}
.lguf-inside-mila {
  position: absolute;
  left: -56px;
  bottom: -38px;
}
.lguf-sprig {
  position: absolute;
  width: var(--sprig-size, 80px);
  height: var(--sprig-size, 80px);
  color: var(--sprig-color, var(--leaf-600));
  transform: rotate(var(--sprig-rotate, 0deg));
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.lguf-sprig svg {
  display: block;
  width: 100%;
  height: 100%;
}
.lguf-sprig path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lguf-sustain-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
}
.lguf-sustain-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow-xs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.lguf-sustain-icon::before,
.lguf-stats-mark::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}
.lguf-sustain-icon--recycle::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23578D2B' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><path d='M11 3 8.5 7h3.2a4.6 4.6 0 0 1 4.1 2.4'/><path d='M11 3 6.8 4.1'/><path d='M11 3 12.1 7.2'/><path d='M19.2 9.2 14.8 9l1.6 2.8a4.6 4.6 0 0 1-.1 4.8'/><path d='M19.2 9.2 17.5 5.2'/><path d='M19.2 9.2 15.7 11.8'/><path d='M12.7 20.1 15 16.3l-3.2.1a4.6 4.6 0 0 1-4-2.5'/><path d='M12.7 20.1 16.9 19.1'/><path d='M12.7 20.1 11.5 15.9'/></svg>");
}
.lguf-sustain-icon--drop::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23578D2B' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3C8 8 6 11 6 14a6 6 0 0 0 12 0c0-3-2-6-6-11z'/></svg>");
}
.lguf-sustain-icon--leaf::before,
.lguf-stats-mark--leaf::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23578D2B' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 20A7 7 0 0 1 5 13c0-3.5 2-6.5 7-8 5 1.5 7 4.5 7 8a7 7 0 0 1-7 7Z'/><path d='M12 20l1-7'/></svg>");
}
.lguf-sustain-icon--box::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23578D2B' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 7l9-4 9 4'/><path d='M3 7l9 4 9-4'/><path d='M3 7v10l9 4 9-4V7'/></svg>");
}
.lguf-stats-mark {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.lguf-stats-mark--recycle::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFE018' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><path d='M11 3 8.5 7h3.2a4.6 4.6 0 0 1 4.1 2.4'/><path d='M11 3 6.8 4.1'/><path d='M11 3 12.1 7.2'/><path d='M19.2 9.2 14.8 9l1.6 2.8a4.6 4.6 0 0 1-.1 4.8'/><path d='M19.2 9.2 17.5 5.2'/><path d='M19.2 9.2 15.7 11.8'/><path d='M12.7 20.1 15 16.3l-3.2.1a4.6 4.6 0 0 1-4-2.5'/><path d='M12.7 20.1 16.9 19.1'/><path d='M12.7 20.1 11.5 15.9'/></svg>");
}

/* ---------- responsive crumbs ---------- */
@media (max-width: 900px) {
  .lguf-header__inner {
    padding: 14px 20px 16px;
    flex-wrap: wrap;
    row-gap: 14px;
  }
  .lguf-nav {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-top: 12px;
    border-top: 1px solid var(--border-default);
  }
  .lguf-nav a {
    font-size: 13px;
    padding: 6px 0;
  }
  .lguf-nav a.btn {
    margin-left: auto;
    padding: 10px 16px;
  }
  .lguf-footer__top { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .section-title { font-size: 36px; }
  .section-title--lg { font-size: 44px; }
}

/* ---------- breadcrumb ---------- */
.breadcrumb {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--fg-3);
  display: flex; gap: 8px; align-items: center;
}
.breadcrumb a {
  color: var(--leaf-700);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- form ---------- */
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field label {
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 700;
  color: var(--fg-1);
}
.field input, .field select, .field textarea {
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-1);
  background: white;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--leaf-500);
  box-shadow: var(--shadow-focus);
}
.field--inline { flex-direction: row; align-items: center; gap: 12px; }

/* small reusable */
.muted { color: var(--fg-2); }
.center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 32px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 32px; }
.mt-8 { margin-top: 64px; }
