@layer reset, base, components, sections, utilities;

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body,
  h1,
  h2,
  h3,
  p,
  ul,
  ol,
  figure {
    margin: 0;
  }

  ul,
  ol {
    padding: 0;
    list-style: none;
  }

  img,
  picture,
  svg {
    display: block;
    max-width: 100%;
  }

  button,
  input,
  select,
  textarea {
    color: inherit;
    font: inherit;
  }

  button,
  a {
    -webkit-tap-highlight-color: transparent;
  }
}

@layer base {
  :root {
    --forest-950: #0d291c;
    --forest-900: #123522;
    --forest-800: #193f2a;
    --forest-700: #25573a;
    --forest-600: #39704d;
    --moss-500: #718a47;
    --sage-300: #bacaa4;
    --sage-200: #d5dfc7;
    --lime-400: #d8e86d;
    --lime-300: #e6ef9f;
    --cream-50: #fffdf7;
    --cream-100: #faf6eb;
    --cream-200: #f1eadb;
    --cream-300: #e6dcc9;
    --terracotta-500: #c9694b;
    --terracotta-100: #f1d5c9;
    --gold-400: #ddb959;
    --ink: #17251c;
    --muted: #647067;
    --line: rgb(23 37 28 / 13%);
    --line-light: rgb(255 255 255 / 15%);
    --white: #fff;
    --shadow-sm: 0 12px 32px rgb(20 42 29 / 8%);
    --shadow-md: 0 24px 70px rgb(20 42 29 / 13%);
    --shadow-lg: 0 32px 100px rgb(9 31 19 / 24%);
    --display: Georgia, "Times New Roman", ui-serif, serif;
    --sans: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
    --shell: min(100% - 2.5rem, 1240px);
    --section-space: clamp(5rem, 10vw, 9.5rem);
    --radius-sm: 0.75rem;
    --radius-md: 1.25rem;
    --radius-lg: 2rem;
    --radius-xl: 3rem;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  body {
    min-width: 320px;
    color: var(--ink);
    background: var(--cream-50);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }

  body.menu-open {
    overflow: hidden;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  button {
    border: 0;
    background: none;
    cursor: pointer;
  }

  :focus-visible {
    outline: 3px solid var(--terracotta-500);
    outline-offset: 4px;
  }

  ::selection {
    color: var(--forest-950);
    background: var(--lime-400);
  }

  h1,
  h2,
  h3 {
    font-family: var(--display);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  h1 {
    font-size: clamp(3.5rem, 7.3vw, 7.35rem);
  }

  h2 {
    font-size: clamp(2.85rem, 5.4vw, 5.4rem);
  }

  h3 {
    font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  }

  .shell {
    width: var(--shell);
    margin-inline: auto;
  }

  .section {
    padding-block: var(--section-space);
    scroll-margin-top: 6rem;
  }

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

  .skip-link {
    position: fixed;
    z-index: 9999;
    top: 1rem;
    left: 1rem;
    padding: 0.8rem 1.1rem;
    color: var(--white);
    background: var(--forest-900);
    border-radius: 999px;
    transform: translateY(-200%);
    transition: transform 180ms ease;
  }

  .skip-link:focus {
    transform: translateY(0);
  }

  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 700ms var(--ease),
      transform 700ms var(--ease);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@layer components {
  .announcement {
    position: relative;
    z-index: 60;
    color: var(--cream-100);
    background: var(--forest-950);
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .announcement__inner {
    display: flex;
    min-height: 2.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
  }

  .announcement__dot {
    width: 0.45rem;
    height: 0.45rem;
    background: var(--lime-400);
    border-radius: 50%;
    box-shadow: 0 0 0 0.28rem rgb(216 232 109 / 12%);
  }

  .announcement a {
    margin-left: 0.4rem;
    color: var(--lime-300);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
  }

  .site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgb(255 253 247 / 88%);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(16px) saturate(140%);
    transition:
      border-color 250ms ease,
      box-shadow 250ms ease;
  }

  .site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 7px 30px rgb(20 42 29 / 6%);
  }

  .site-header__inner {
    display: flex;
    min-height: 5.4rem;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.75rem;
  }

  .brand__image {
    width: auto;
    height: 3.2rem;
    object-fit: contain;
  }

  .brand--has-image .brand__mark {
    display: none;
  }

  .brand__mark {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 auto;
    place-items: center;
    color: var(--forest-800);
    background: var(--lime-400);
    border-radius: 50% 50% 46% 54% / 53% 48% 52% 47%;
    transform: rotate(-4deg);
  }

  .brand__mark svg {
    width: 2rem;
    height: 2rem;
    overflow: visible;
    fill: currentColor;
    transform: rotate(4deg);
  }

  .brand__mark .brand__mark-line {
    fill: none;
    stroke: var(--lime-400);
    stroke-linecap: round;
    stroke-width: 1.7;
  }

  .brand__words {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .brand__name {
    color: var(--forest-900);
    font-family: var(--display);
    font-size: 1.28rem;
    letter-spacing: -0.035em;
  }

  .brand__tagline {
    margin-top: 0.3rem;
    color: var(--muted);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2.5rem);
    margin-left: auto;
  }

  .desktop-nav a,
  .site-footer__nav a {
    position: relative;
    font-size: 0.82rem;
    font-weight: 650;
    letter-spacing: 0.02em;
  }

  .desktop-nav a::after,
  .site-footer__nav a::after {
    position: absolute;
    right: 0;
    bottom: -0.5rem;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 300ms var(--ease);
  }

  .desktop-nav a:hover::after,
  .site-footer__nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }

  .language {
    position: relative;
  }

  .language__trigger {
    display: flex;
    min-height: 2.65rem;
    align-items: center;
    gap: 0.42rem;
    padding: 0.35rem 0.65rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    transition:
      border-color 180ms ease,
      background 180ms ease;
  }

  .language__trigger:hover,
  .language__trigger[aria-expanded="true"] {
    background: var(--cream-200);
    border-color: rgb(23 37 28 / 24%);
  }

  .language__current-code {
    display: grid;
    min-width: 1.9rem;
    height: 1.9rem;
    place-items: center;
    color: var(--cream-50);
    background: var(--forest-800);
    border-radius: 50%;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .language__current-name {
    max-width: 5.8rem;
    overflow: hidden;
    font-size: 0.7rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language__trigger > svg {
    width: 0.85rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 180ms ease;
  }

  .language__trigger[aria-expanded="true"] > svg {
    transform: rotate(180deg);
  }

  .language__popover {
    position: absolute;
    z-index: 90;
    top: calc(100% + 0.65rem);
    right: 0;
    width: 13rem;
    padding: 0.45rem;
    background: var(--cream-50);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transform-origin: top right;
    animation: popover-in 180ms var(--ease);
  }

  .language__option {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.7rem;
    text-align: left;
    border-radius: 0.7rem;
  }

  .language__option:hover,
  .language__option[aria-selected="true"] {
    background: var(--cream-200);
  }

  .language__option-code {
    width: 2.15rem;
    color: var(--forest-700);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .language__option-name {
    flex: 1;
    font-size: 0.82rem;
    font-weight: 650;
  }

  .language__option-check {
    width: 0.45rem;
    height: 0.45rem;
    background: var(--forest-700);
    border-radius: 50%;
    opacity: 0;
  }

  .language__option[aria-selected="true"] .language__option-check {
    opacity: 1;
  }

  @keyframes popover-in {
    from {
      opacity: 0;
      transform: translateY(-5px) scale(0.97);
    }
  }

  .button {
    display: inline-flex;
    min-height: 3.3rem;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.78rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 750;
    letter-spacing: 0.025em;
    line-height: 1;
    transition:
      color 250ms ease,
      background 250ms ease,
      border-color 250ms ease,
      transform 250ms var(--ease),
      box-shadow 250ms ease;
  }

  .button svg,
  .text-link svg {
    width: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform 250ms var(--ease);
  }

  .button:hover {
    transform: translateY(-2px);
  }

  .button:hover svg,
  .text-link:hover svg {
    transform: translateX(4px);
  }

  .button--small {
    min-height: 2.75rem;
    padding-inline: 1.05rem;
    font-size: 0.72rem;
  }

  .button--solid {
    color: var(--cream-50);
    background: var(--forest-800);
    box-shadow: 0 9px 25px rgb(25 63 42 / 15%);
  }

  .button--solid:hover {
    background: var(--forest-700);
    box-shadow: 0 14px 28px rgb(25 63 42 / 22%);
  }

  .button--ghost {
    padding-inline: 0.4rem;
    color: var(--forest-900);
    border-radius: 0;
    border-bottom-color: currentColor;
  }

  .button--outline {
    color: var(--forest-800);
    border-color: var(--forest-800);
  }

  .button--outline:hover {
    color: var(--cream-50);
    background: var(--forest-800);
  }

  .button--cream {
    color: var(--forest-950);
    background: var(--cream-100);
  }

  .button--cream:hover {
    background: var(--lime-400);
  }

  .menu-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    align-content: center;
    justify-items: center;
    gap: 0.35rem;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .menu-toggle span {
    width: 1.1rem;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    z-index: 49;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100svh - 5.4rem);
    color: var(--cream-50);
    background: var(--forest-950);
    animation: menu-in 300ms var(--ease);
  }

  .mobile-menu__inner {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    padding-block: 3rem 7rem;
  }

  .mobile-menu__inner > a:not(.button) {
    padding-block: 0.75rem;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--display);
    font-size: clamp(2.1rem, 10vw, 3.5rem);
    line-height: 1;
  }

  .mobile-menu .button {
    margin-top: 1.5rem;
    color: var(--forest-950);
    background: var(--lime-400);
  }

  @keyframes menu-in {
    from {
      opacity: 0;
      transform: translateY(-12px);
    }
  }

  .eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--forest-700);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .eyebrow__line {
    width: 2.4rem;
    height: 1px;
    background: currentColor;
  }

  .eyebrow--light {
    color: var(--lime-300);
  }

  .section-heading {
    margin-bottom: clamp(2.5rem, 5vw, 5rem);
  }

  .section-heading__row {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
    align-items: end;
    gap: 3rem;
    margin-top: 1.35rem;
  }

  .section-heading__row p,
  .section-heading--compact > p,
  .section-heading--products > p {
    max-width: 31rem;
    color: var(--muted);
    font-size: 1.02rem;
  }

  .section-heading--compact,
  .section-heading--products {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 3rem;
  }

  .section-heading--compact .eyebrow,
  .section-heading--products .eyebrow {
    margin-bottom: 1.3rem;
  }

  .text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding-bottom: 0.35rem;
    color: var(--forest-800);
    border-bottom: 1px solid currentColor;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.03em;
  }

  .product-state {
    color: var(--muted);
    text-align: center;
  }

  .state-card {
    display: grid;
    min-height: 17rem;
    place-items: center;
    padding: 2rem;
    background: var(--cream-100);
    border: 1px dashed rgb(23 37 28 / 20%);
    border-radius: var(--radius-lg);
  }

  .state-card__inner {
    max-width: 30rem;
    text-align: center;
  }

  .state-card__icon {
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    place-items: center;
    color: var(--forest-700);
    background: var(--sage-200);
    border-radius: 50%;
  }

  .state-card__icon svg {
    width: 1.5rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .state-card h3 {
    margin-bottom: 0.65rem;
    font-size: 1.85rem;
  }

  .state-card p {
    margin-bottom: 1.25rem;
  }

  .skeleton {
    display: block;
    overflow: hidden;
    background: #e7e3d8;
    border-radius: 0.4rem;
  }

  .skeleton::after {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 55%), transparent);
    content: "";
    transform: translateX(-100%);
    animation: shimmer 1.5s infinite;
  }

  @keyframes shimmer {
    to {
      transform: translateX(100%);
    }
  }
}

@layer sections {
  .hero {
    position: relative;
    min-height: min(840px, calc(100svh - 7.65rem));
    overflow: hidden;
    background:
      radial-gradient(circle at 6% 92%, rgb(216 232 109 / 28%), transparent 28%),
      var(--cream-100);
  }

  .hero::before {
    position: absolute;
    z-index: 1;
    bottom: -9rem;
    left: -8rem;
    width: 27rem;
    height: 27rem;
    border: 1px solid rgb(25 63 42 / 10%);
    border-radius: 50%;
    content: "";
  }

  .hero__image {
    position: absolute;
    inset: 0 0 0 auto;
    width: 59%;
    overflow: hidden;
    border-bottom-left-radius: clamp(3rem, 9vw, 9rem);
  }

  .hero__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--cream-100) 0%, transparent 19%);
    content: "";
    pointer-events: none;
  }

  .hero__image picture,
  .hero__image img {
    width: 100%;
    height: 100%;
  }

  .hero__image img {
    object-fit: cover;
    object-position: 62% center;
  }

  .hero__inner {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: inherit;
    align-items: center;
    padding-block: clamp(4rem, 8vw, 7rem);
  }

  .hero__content {
    width: min(53%, 650px);
  }

  .hero h1 {
    max-width: 9ch;
    margin-top: 1.3rem;
    color: var(--forest-950);
  }

  .hero h1 span,
  .hero h1 em {
    display: block;
  }

  .hero h1 em {
    color: var(--terracotta-500);
    font-weight: 400;
  }

  .hero__lede {
    max-width: 34rem;
    margin-top: 1.65rem;
    color: #46554a;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.7;
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.2rem;
  }

  .hero__meta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 2.2rem;
    color: var(--forest-700);
    font-size: 0.75rem;
    font-weight: 700;
  }

  .hero__pin {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    color: var(--forest-800);
    background: var(--lime-400);
    border-radius: 50%;
  }

  .hero__pin svg {
    width: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .hero__meta-separator {
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 50%;
  }

  .hero__scroll {
    position: absolute;
    z-index: 4;
    right: 2rem;
    bottom: 2rem;
    display: grid;
    width: 2.7rem;
    height: 4.3rem;
    place-items: start center;
    padding-top: 0.75rem;
    border: 1px solid rgb(255 255 255 / 55%);
    border-radius: 999px;
  }

  .hero__scroll span {
    width: 0.3rem;
    height: 0.3rem;
    background: var(--white);
    border-radius: 50%;
    animation: scroll-dot 1.8s ease-in-out infinite;
  }

  @keyframes scroll-dot {
    60%,
    100% {
      opacity: 0;
      transform: translateY(1.8rem);
    }
  }

  .promises {
    color: var(--cream-100);
    background: var(--forest-900);
  }

  .promises__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .promise {
    display: grid;
    min-height: 10rem;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.2rem;
    padding: 2.1rem clamp(1.2rem, 3vw, 2.6rem);
    border-right: 1px solid var(--line-light);
  }

  .promise:first-child {
    padding-left: 0;
  }

  .promise:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .promise__number {
    display: grid;
    width: 2.9rem;
    height: 2.9rem;
    place-items: center;
    color: var(--lime-400);
    border: 1px solid rgb(216 232 109 / 40%);
    border-radius: 50%;
    font-family: var(--display);
    font-size: 0.82rem;
    font-style: italic;
  }

  .promise h2 {
    margin-bottom: 0.35rem;
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.2;
  }

  .promise p {
    color: rgb(250 246 235 / 68%);
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .categories {
    background: var(--cream-50);
  }

  .category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .category-card {
    position: relative;
    min-height: 27rem;
    overflow: hidden;
    padding: 1.6rem;
    border-radius: var(--radius-md);
    transition:
      transform 400ms var(--ease),
      box-shadow 400ms ease;
  }

  .category-card:nth-child(1) {
    color: var(--cream-50);
    background: var(--forest-800);
  }

  .category-card:nth-child(2) {
    color: var(--forest-950);
    background: var(--lime-300);
  }

  .category-card:nth-child(3) {
    color: var(--forest-950);
    background: #e8d6a8;
  }

  .category-card:nth-child(4) {
    color: var(--forest-950);
    background: var(--terracotta-100);
  }

  .category-card:hover {
    z-index: 2;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px) rotate(-0.6deg);
  }

  .category-card__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .category-card__index {
    font-family: var(--display);
    font-size: 0.83rem;
    font-style: italic;
  }

  .category-card__arrow {
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    transition:
      color 250ms ease,
      background 250ms ease,
      transform 250ms var(--ease);
  }

  .category-card__arrow svg {
    width: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .category-card:hover .category-card__arrow {
    color: var(--cream-50);
    background: var(--forest-900);
    transform: rotate(-35deg);
  }

  .category-card__art {
    position: absolute;
    top: 18%;
    right: -8%;
    width: 104%;
    height: 58%;
    color: currentColor;
    opacity: 0.83;
    transition: transform 650ms var(--ease);
  }

  .category-card:hover .category-card__art {
    transform: scale(1.06) rotate(2deg);
  }

  .category-card__art svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.3;
    vector-effect: non-scaling-stroke;
  }

  .category-card__bottom {
    position: absolute;
    z-index: 2;
    right: 1.6rem;
    bottom: 1.6rem;
    left: 1.6rem;
  }

  .category-card h3 {
    margin-bottom: 0.7rem;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  }

  .category-card p {
    max-width: 25ch;
    font-size: 0.78rem;
    line-height: 1.5;
    opacity: 0.78;
  }

  .about {
    overflow: hidden;
    background: var(--cream-200);
  }

  .about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
  }

  .about__visual {
    position: relative;
    min-height: 41rem;
  }

  .about__orb {
    position: absolute;
    inset: 0 7% 0 0;
  }

  .about__orb svg {
    width: 100%;
    height: 100%;
  }

  .about__orb > svg > path:first-child {
    fill: var(--forest-800);
  }

  .about__orb .about__leaf {
    fill: var(--lime-400);
    opacity: 0.88;
  }

  .about__orb .about__leaf-line {
    fill: none;
    stroke: var(--forest-800);
    stroke-linecap: round;
    stroke-width: 5;
  }

  .about__quote {
    position: absolute;
    z-index: 2;
    top: 23%;
    left: 13%;
    width: min(62%, 21rem);
    color: var(--cream-100);
  }

  .about__quote > span {
    display: block;
    height: 3.3rem;
    color: var(--lime-400);
    font-family: var(--display);
    font-size: 6rem;
    line-height: 0.8;
  }

  .about__quote p {
    font-family: var(--display);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .about__stamp {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 4%;
    width: 8.2rem;
    padding: 0.85rem;
    color: var(--forest-950);
    background: var(--lime-400);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transform: rotate(8deg);
  }

  .about__stamp text {
    fill: currentColor;
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
  }

  .about__stamp-leaf {
    fill: currentColor;
  }

  .about__content .eyebrow {
    margin-bottom: 1.35rem;
  }

  .about__content h2 {
    max-width: 10ch;
  }

  .about__lead {
    margin-top: 1.7rem;
    color: var(--forest-800);
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    font-weight: 500;
    line-height: 1.55;
  }

  .about__content > p:not(.about__lead) {
    margin-top: 1rem;
    color: var(--muted);
  }

  .about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-block: 2.2rem;
    border-block: 1px solid var(--line);
  }

  .about-value {
    padding: 1rem 0.7rem 1rem 0;
  }

  .about-value:nth-child(even) {
    padding-left: 1.2rem;
    border-left: 1px solid var(--line);
  }

  .about-value span {
    display: block;
    color: var(--terracotta-500);
    font-family: var(--display);
    font-size: 1.9rem;
    line-height: 1;
  }

  .about-value p {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .team {
    background: var(--cream-50);
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  .team-card {
    position: relative;
    min-height: 30rem;
    overflow: hidden;
    background: var(--sage-200);
    border-radius: var(--radius-md);
  }

  .team-card:nth-child(2) {
    background: var(--terracotta-100);
  }

  .team-card:nth-child(3) {
    background: #e8d6a8;
  }

  .team-card__image,
  .team-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .team-card__placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
  }

  .team-card__placeholder::before,
  .team-card__placeholder::after {
    position: absolute;
    border-radius: 50%;
    content: "";
  }

  .team-card__placeholder::before {
    top: 19%;
    width: 8rem;
    height: 8rem;
    background: rgb(25 63 42 / 12%);
  }

  .team-card__placeholder::after {
    bottom: -14%;
    width: 24rem;
    height: 24rem;
    background: rgb(25 63 42 / 12%);
  }

  .team-card__leaf {
    position: absolute;
    top: 11%;
    right: 8%;
    width: 8rem;
    color: rgb(25 63 42 / 25%);
    transform: rotate(18deg);
  }

  .team-card__leaf svg {
    fill: currentColor;
  }

  .team-card__info {
    position: absolute;
    z-index: 2;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 1.1rem 1.2rem;
    background: rgb(255 253 247 / 88%);
    border: 1px solid rgb(255 255 255 / 50%);
    border-radius: 0.9rem;
    backdrop-filter: blur(12px);
  }

  .team-card__info h3 {
    font-family: var(--sans);
    font-size: 0.98rem;
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.3;
  }

  .team-card__info p {
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.72rem;
  }

  .team-card__placeholder-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
    color: var(--terracotta-500);
    font-size: 0.62rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .team-card__placeholder-label::before {
    width: 0.4rem;
    height: 0.4rem;
    background: currentColor;
    border-radius: 50%;
    content: "";
  }

  .products {
    background:
      radial-gradient(circle at 94% 4%, rgb(216 232 109 / 24%), transparent 20rem),
      var(--cream-200);
  }

  .catalog-toolbar {
    display: grid;
    grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 1.3rem;
    padding: 1rem;
    background: rgb(255 253 247 / 66%);
    border: 1px solid rgb(23 37 28 / 9%);
    border-radius: 1.35rem;
  }

  .search-field {
    position: relative;
    display: flex;
    min-height: 3.35rem;
    align-items: center;
    gap: 0.75rem;
    padding: 0 0.95rem;
    background: var(--cream-50);
    border: 1px solid var(--line);
    border-radius: 999px;
    transition:
      border-color 180ms ease,
      box-shadow 180ms ease;
  }

  .search-field:focus-within {
    border-color: var(--forest-700);
    box-shadow: 0 0 0 3px rgb(25 63 42 / 8%);
  }

  .search-field > svg {
    width: 1.15rem;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--forest-700);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .search-field input {
    width: 100%;
    min-width: 0;
    padding-block: 0.75rem;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 0.84rem;
  }

  .search-field input::placeholder {
    color: #899289;
  }

  .search-field__clear {
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    flex: 0 0 auto;
    place-items: center;
    color: var(--muted);
    background: var(--cream-200);
    border-radius: 50%;
  }

  .search-field__clear svg {
    width: 0.8rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
  }

  .filter-scroll {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-scroll::-webkit-scrollbar {
    display: none;
  }

  .filter-chip {
    flex: 0 0 auto;
    padding: 0.8rem 1rem;
    color: var(--forest-700);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
    transition:
      color 180ms ease,
      background 180ms ease,
      border-color 180ms ease;
  }

  .filter-chip:hover,
  .filter-chip[aria-pressed="true"] {
    color: var(--cream-50);
    background: var(--forest-800);
    border-color: var(--forest-800);
  }

  .catalog-meta {
    display: flex;
    min-height: 4rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.72rem;
  }

  .catalog-refresh {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--forest-700);
    font-size: 0.68rem;
    font-weight: 750;
  }

  .catalog-refresh svg {
    width: 0.95rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  .catalog-refresh.is-loading svg {
    animation: spin 800ms linear infinite;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .product-card {
    position: relative;
    overflow: hidden;
    background: var(--cream-50);
    border: 1px solid rgb(23 37 28 / 9%);
    border-radius: 1.15rem;
    box-shadow: 0 8px 25px rgb(25 63 42 / 4%);
    transition:
      transform 350ms var(--ease),
      box-shadow 350ms ease,
      border-color 350ms ease;
  }

  .product-card:not(.product-card--skeleton) {
    cursor: pointer;
  }

  .product-card:not(.product-card--skeleton):hover {
    border-color: rgb(25 63 42 / 20%);
    box-shadow: var(--shadow-sm);
    transform: translateY(-6px);
  }

  .product-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.86;
    overflow: hidden;
    background: #e8e7dc;
  }

  .product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 550ms var(--ease);
  }

  .product-card:hover .product-card__image img {
    transform: scale(1.045);
  }

  .product-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--forest-700);
    background:
      radial-gradient(circle at 30% 24%, rgb(216 232 109 / 70%), transparent 36%),
      var(--sage-200);
  }

  .product-card__placeholder svg {
    width: 45%;
    max-width: 7rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.2;
  }

  .product-card__tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    max-width: calc(100% - 1.5rem);
    overflow: hidden;
    padding: 0.45rem 0.65rem;
    color: var(--forest-950);
    background: rgb(255 253 247 / 84%);
    border: 1px solid rgb(255 255 255 / 70%);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .product-card__body {
    padding: 1.1rem;
  }

  .product-card__brand {
    min-height: 1.1rem;
    color: var(--terracotta-500);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .product-card h3 {
    min-height: 2.6em;
    margin-top: 0.45rem;
    display: -webkit-box;
    overflow: hidden;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-card__footer {
    display: flex;
    min-height: 2.4rem;
    align-items: end;
    justify-content: space-between;
    gap: 0.7rem;
    margin-top: 0.9rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--line);
  }

  .product-card__price {
    color: var(--forest-800);
    font-family: var(--display);
    font-size: 1.15rem;
    line-height: 1;
  }

  .product-card__unit {
    color: var(--muted);
    font-size: 0.62rem;
  }

  .product-card__open {
    display: grid;
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    place-items: center;
    color: var(--cream-50);
    background: var(--forest-800);
    border-radius: 50%;
  }

  .product-card__open svg {
    width: 0.85rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  .product-card--skeleton .product-card__body {
    display: grid;
    gap: 0.65rem;
  }

  .product-card--skeleton .skeleton--short {
    width: 32%;
    height: 0.55rem;
  }

  .product-card--skeleton .skeleton--title {
    width: 82%;
    height: 1.1rem;
  }

  .product-card--skeleton .skeleton--text {
    width: 60%;
    height: 0.72rem;
  }

  .catalog-more {
    margin-top: 2.5rem;
    text-align: center;
  }

  .product-dialog {
    width: min(100% - 2rem, 920px);
    max-height: min(90svh, 760px);
    padding: 0;
    overflow: hidden;
    color: var(--ink);
    background: var(--cream-50);
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .product-dialog::backdrop {
    background: rgb(13 41 28 / 72%);
    backdrop-filter: blur(8px);
  }

  .product-dialog[open] {
    animation: dialog-in 330ms var(--ease);
  }

  @keyframes dialog-in {
    from {
      opacity: 0;
      transform: translateY(20px) scale(0.97);
    }
  }

  .product-dialog__shell {
    position: relative;
    max-height: inherit;
    overflow-y: auto;
  }

  .product-dialog__close {
    position: absolute;
    z-index: 3;
    top: 1rem;
    right: 1rem;
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    color: var(--forest-950);
    background: rgb(255 253 247 / 88%);
    border: 1px solid rgb(23 37 28 / 12%);
    border-radius: 50%;
    backdrop-filter: blur(10px);
  }

  .product-dialog__close svg {
    width: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
  }

  .product-detail {
    display: grid;
    min-height: 35rem;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .product-detail__media {
    min-height: 29rem;
    background: var(--sage-200);
  }

  .product-detail__media img,
  .product-detail__media .product-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-detail__content {
    padding: clamp(2.2rem, 5vw, 4.5rem);
  }

  .product-detail__category {
    color: var(--terracotta-500);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .product-detail h2 {
    margin-top: 0.75rem;
    font-size: clamp(2.3rem, 4.4vw, 4rem);
  }

  .product-detail__brand {
    margin-top: 0.9rem;
    color: var(--forest-700);
    font-weight: 750;
  }

  .product-detail__description {
    margin-top: 1.3rem;
    color: var(--muted);
  }

  .product-detail__facts {
    display: grid;
    gap: 0;
    margin-top: 1.7rem;
    border-top: 1px solid var(--line);
  }

  .product-detail__fact {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 1rem;
    padding-block: 0.75rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.74rem;
  }

  .product-detail__fact dt {
    color: var(--muted);
  }

  .product-detail__fact dd {
    margin: 0;
    overflow-wrap: anywhere;
    font-weight: 650;
  }

  .product-detail__price {
    margin-top: 1.7rem;
    color: var(--forest-800);
    font-family: var(--display);
    font-size: 1.75rem;
  }

  .anti-waste {
    color: var(--cream-100);
    background: var(--forest-950);
  }

  .anti-waste__card {
    display: grid;
    grid-template-columns: 1fr 0.94fr;
    overflow: hidden;
    background: var(--forest-800);
    border: 1px solid var(--line-light);
    border-radius: var(--radius-xl);
  }

  .anti-waste__image {
    position: relative;
    min-height: 40rem;
    overflow: hidden;
  }

  .anti-waste__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 66%, rgb(25 63 42 / 46%));
    content: "";
  }

  .anti-waste__image picture,
  .anti-waste__image img {
    width: 100%;
    height: 100%;
  }

  .anti-waste__image img {
    object-fit: cover;
  }

  .anti-waste__badge {
    position: absolute;
    z-index: 2;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    width: 8rem;
    height: 8rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--forest-950);
    background: var(--lime-400);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    text-align: center;
    transform: rotate(-7deg);
  }

  .anti-waste__badge span {
    max-width: 8ch;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .anti-waste__badge strong {
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
  }

  .anti-waste__badge svg {
    width: 4rem;
    height: 4rem;
  }

  .anti-waste__badge svg path:nth-child(-n + 2) {
    fill: var(--forest-950);
  }

  .anti-waste__badge svg path:last-child {
    fill: none;
    stroke: var(--lime-400);
    stroke-linecap: round;
    stroke-width: 2;
  }

  .anti-waste__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(3rem, 6vw, 5.5rem);
  }

  .anti-waste__content h2 {
    max-width: 8ch;
    margin-top: 1.35rem;
  }

  .anti-waste__lead {
    margin-top: 1.5rem;
    color: var(--lime-300);
    font-family: var(--display);
    font-size: 1.35rem;
    line-height: 1.35;
  }

  .anti-waste__content > p:not(.anti-waste__lead) {
    margin-top: 0.9rem;
    color: rgb(250 246 235 / 67%);
  }

  .anti-waste__content .anti-waste__note {
    margin-block: 1.7rem 2rem;
    padding: 0.9rem 1rem;
    color: var(--cream-200);
    border: 1px solid var(--line-light);
    border-radius: 0.8rem;
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .anti-waste__steps {
    display: grid;
    width: 100%;
    gap: 0.65rem;
    margin-block: 2rem;
  }

  .anti-waste__steps > div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--line-light);
  }

  .anti-waste__steps span {
    display: grid;
    width: 1.7rem;
    height: 1.7rem;
    flex: 0 0 auto;
    place-items: center;
    color: var(--forest-950);
    background: var(--lime-400);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
  }

  .anti-waste__steps p {
    color: var(--cream-200);
    font-size: 0.78rem;
  }

  .brands {
    overflow: hidden;
    padding-block: 3.3rem 3.8rem;
    background: var(--lime-400);
  }

  .brands__heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--forest-900);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .brands__heading span {
    height: 1px;
    flex: 1;
    background: rgb(25 63 42 / 30%);
  }

  .brands__rail {
    display: flex;
    width: max-content;
    margin-top: 2rem;
    animation: brand-scroll 26s linear infinite;
  }

  .brands__rail:hover {
    animation-play-state: paused;
  }

  .brand-word {
    position: relative;
    padding-inline: clamp(1.6rem, 4vw, 3.8rem);
    color: var(--forest-950);
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    white-space: nowrap;
  }

  .brand-word::after {
    position: absolute;
    top: 50%;
    right: -0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--terracotta-500);
    border-radius: 50%;
    content: "";
  }

  @keyframes brand-scroll {
    to {
      transform: translateX(-50%);
    }
  }

  .visit {
    background: var(--cream-50);
  }

  .visit__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
    gap: 1.2rem;
  }

  .visit__map-card,
  .visit__details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
  }

  .visit__map-card {
    position: relative;
    min-height: 37rem;
    background: var(--cream-200);
  }

  .visit__map-art {
    position: absolute;
    inset: 0;
  }

  .visit__map-art svg {
    width: 100%;
    height: 100%;
  }

  .visit__map-art path:not(.visit__map-pin) {
    fill: none;
    stroke: var(--forest-700);
    stroke-width: 1.8;
    opacity: 0.15;
  }

  .visit__map-art > svg > circle:first-of-type {
    fill: var(--lime-400);
    opacity: 0.35;
    animation: map-pulse 2.2s ease-out infinite;
  }

  .visit__map-pin {
    fill: var(--forest-800);
  }

  .visit__map-pin-dot {
    fill: var(--lime-400);
  }

  @keyframes map-pulse {
    70%,
    100% {
      opacity: 0;
      transform: scale(2.2);
      transform-origin: 356px 278px;
    }
  }

  .visit__map-info {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    background: rgb(255 253 247 / 88%);
    border: 1px solid rgb(255 255 255 / 70%);
    border-radius: 1rem;
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
  }

  .visit__map-info span {
    display: block;
    color: var(--terracotta-500);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .visit__map-info strong {
    display: block;
    margin-top: 0.3rem;
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.25;
  }

  .visit__details {
    display: flex;
    flex-direction: column;
    background: var(--forest-900);
  }

  .visit__hours {
    flex: 1;
    padding: clamp(2rem, 4vw, 3.3rem);
    color: var(--cream-100);
  }

  .visit__details-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .visit__details-heading span:not(.open-pill) {
    color: var(--lime-300);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .visit__details-heading h3 {
    margin-top: 0.35rem;
    font-size: 2rem;
  }

  .open-pill {
    display: inline-flex;
    min-height: 1.9rem;
    align-items: center;
    padding: 0.4rem 0.65rem;
    color: var(--forest-950);
    background: var(--lime-400);
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    line-height: 1;
    text-transform: uppercase;
  }

  .open-pill.is-closed {
    color: var(--cream-50);
    background: var(--terracotta-500);
  }

  .hours-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1rem;
    padding-block: 0.62rem;
    border-bottom: 1px solid var(--line-light);
    font-size: 0.75rem;
  }

  .hours-row.is-today {
    color: var(--lime-300);
    font-weight: 750;
  }

  .hours-row span:last-child {
    text-align: right;
  }

  .contact-list {
    background: var(--cream-100);
  }

  .contact-list > a {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.2rem;
    border-top: 1px solid var(--line);
    transition: background 180ms ease;
  }

  .contact-list > a:hover {
    background: var(--lime-300);
  }

  .contact-list__icon {
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    place-items: center;
    color: var(--cream-50);
    background: var(--forest-800);
    border-radius: 50%;
  }

  .contact-list__icon svg {
    width: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  .contact-list small {
    display: block;
    color: var(--muted);
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .contact-list strong {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.8rem;
  }

  .contact-list__arrow {
    width: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
  }

  .social-section {
    padding-block: clamp(4rem, 7vw, 6rem);
    color: var(--cream-100);
    background: var(--terracotta-500);
  }

  .social-section__inner {
    display: grid;
    grid-template-columns: 1fr 0.75fr auto;
    align-items: end;
    gap: 3rem;
  }

  .social-section h2 {
    max-width: 8ch;
    margin-top: 1rem;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
  }

  .social-section__inner > p {
    color: rgb(255 253 247 / 75%);
  }

  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
  }

  .social-link {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    place-items: center;
    color: var(--terracotta-500);
    background: var(--cream-100);
    border-radius: 50%;
    transition:
      color 220ms ease,
      background 220ms ease,
      transform 220ms var(--ease);
  }

  .social-link:hover {
    color: var(--forest-950);
    background: var(--lime-400);
    transform: translateY(-4px) rotate(-5deg);
  }

  .social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
  }

  .site-footer {
    color: var(--cream-100);
    background: var(--forest-950);
  }

  .site-footer__top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
    padding-block: 4rem;
  }

  .brand--footer .brand__name,
  .brand--footer .brand__tagline {
    color: var(--cream-100);
  }

  .site-footer__nav {
    display: flex;
    gap: 1.7rem;
  }

  .site-footer__back {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 0.65rem;
    font-size: 0.7rem;
    font-weight: 750;
  }

  .site-footer__back svg {
    width: 1.05rem;
    fill: none;
    stroke: var(--lime-400);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  .site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-block: 1.25rem;
    color: rgb(250 246 235 / 55%);
    border-top: 1px solid var(--line-light);
    font-size: 0.63rem;
    letter-spacing: 0.03em;
  }
}

@layer utilities {
  [hidden] {
    display: none !important;
  }

  @media (max-width: 1100px) {
    :root {
      --shell: min(100% - 2rem, 1020px);
    }

    .desktop-nav {
      display: none;
    }

    .menu-toggle {
      display: grid;
    }

    .header-cta {
      display: none;
    }

    .hero__content {
      width: min(57%, 590px);
    }

    .category-grid,
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
      min-height: 24rem;
    }

    .about__grid {
      gap: 3rem;
    }

    .team-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .team-card {
      min-height: 25rem;
    }

    .social-section__inner {
      grid-template-columns: 1fr 0.8fr;
    }

    .social-links {
      grid-column: 1 / -1;
      justify-content: flex-start;
    }
  }

  @media (max-width: 840px) {
    .announcement__inner {
      justify-content: flex-start;
      overflow: hidden;
      white-space: nowrap;
    }

    .announcement a {
      margin-left: auto;
    }

    .site-header__inner {
      min-height: 4.75rem;
    }

    .mobile-menu {
      height: calc(100svh - 4.75rem);
    }

    .language__current-name {
      display: none;
    }

    .language__trigger {
      padding-inline: 0.3rem 0.5rem;
    }

    .hero {
      display: flex;
      min-height: auto;
      flex-direction: column;
    }

    .hero__image {
      position: relative;
      order: 1;
      width: 100%;
      height: min(58svh, 34rem);
      border-bottom-left-radius: 3.5rem;
    }

    .hero__image::after {
      background: linear-gradient(0deg, var(--cream-100), transparent 24%);
    }

    .hero__image img {
      object-position: 65% center;
    }

    .hero__inner {
      order: 2;
      min-height: auto;
      padding-block: 3rem 4.5rem;
    }

    .hero__content {
      width: 100%;
    }

    .hero h1 {
      max-width: 11ch;
      font-size: clamp(3.5rem, 13vw, 6rem);
    }

    .hero__scroll {
      display: none;
    }

    .promises__grid {
      grid-template-columns: 1fr;
      padding-block: 0.75rem;
    }

    .promise,
    .promise:first-child,
    .promise:last-child {
      min-height: auto;
      padding: 1.2rem 0;
      border-right: 0;
      border-bottom: 1px solid var(--line-light);
    }

    .promise:last-child {
      border-bottom: 0;
    }

    .section-heading__row,
    .section-heading--compact,
    .section-heading--products {
      grid-template-columns: 1fr;
      gap: 1.3rem;
    }

    .section-heading__row p,
    .section-heading--compact > p,
    .section-heading--products > p {
      max-width: 39rem;
    }

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

    .about__visual {
      min-height: 34rem;
      max-width: 34rem;
      order: 2;
      margin-inline: auto;
    }

    .team-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .catalog-toolbar {
      grid-template-columns: 1fr;
    }

    .anti-waste__card {
      grid-template-columns: 1fr;
    }

    .anti-waste__image {
      min-height: 30rem;
    }

    .anti-waste__image::after {
      background: linear-gradient(0deg, var(--forest-800), transparent 30%);
    }

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

    .visit__map-card {
      min-height: 31rem;
    }

    .social-section__inner {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .site-footer__top {
      grid-template-columns: 1fr auto;
      gap: 2rem;
    }

    .site-footer__nav {
      display: none;
    }
  }

  @media (max-width: 580px) {
    :root {
      --shell: min(100% - 1.25rem, 540px);
      --section-space: 4.7rem;
    }

    h2 {
      font-size: clamp(2.7rem, 14vw, 4.25rem);
    }

    .announcement {
      font-size: 0.58rem;
    }

    .announcement__inner {
      gap: 0.45rem;
    }

    .announcement a {
      display: none;
    }

    .brand__tagline {
      display: none;
    }

    .brand__name {
      font-size: 1.05rem;
    }

    .brand__mark {
      width: 2.45rem;
      height: 2.45rem;
    }

    .site-header__actions {
      gap: 0.4rem;
    }

    .language__trigger {
      border: 0;
    }

    .language__trigger > svg {
      display: none;
    }

    .language__popover {
      position: fixed;
      top: 7.65rem;
      right: 0.65rem;
      left: 0.65rem;
      width: auto;
    }

    .hero__image {
      height: 54svh;
      min-height: 25rem;
      border-bottom-left-radius: 2.7rem;
    }

    .hero__inner {
      padding-block: 2.8rem 3.8rem;
    }

    .hero h1 {
      font-size: clamp(3.25rem, 17vw, 5.2rem);
    }

    .hero__actions {
      align-items: stretch;
    }

    .hero__actions .button--solid {
      width: 100%;
    }

    .hero__meta {
      flex-wrap: wrap;
    }

    .hero__meta-separator,
    .hero__meta-separator + span {
      display: none;
    }

    .category-grid,
    .product-grid,
    .team-grid {
      grid-template-columns: 1fr;
    }

    .category-card {
      min-height: 23rem;
    }

    .about__visual {
      min-height: 29rem;
    }

    .about__stamp {
      width: 6.5rem;
    }

    .about__quote {
      left: 11%;
      width: 69%;
    }

    .about__quote p {
      font-size: 1.65rem;
    }

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

    .about-value:nth-child(even) {
      padding-left: 0;
      border-top: 1px solid var(--line);
      border-left: 0;
    }

    .team-card {
      min-height: 27rem;
    }

    .catalog-toolbar {
      margin-inline: -0.1rem;
      padding: 0.65rem;
      border-radius: 1rem;
    }

    .filter-scroll {
      margin-inline: -0.65rem;
      padding-inline: 0.65rem;
    }

    .product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.65rem;
    }

    .product-card__body {
      padding: 0.8rem;
    }

    .product-card h3 {
      font-size: 0.82rem;
    }

    .product-card__tag {
      top: 0.5rem;
      left: 0.5rem;
      max-width: calc(100% - 1rem);
    }

    .product-card__open {
      display: none;
    }

    .product-dialog {
      width: 100%;
      max-height: 94svh;
      margin: auto 0 0;
      border-radius: 1.5rem 1.5rem 0 0;
    }

    .product-detail {
      grid-template-columns: 1fr;
    }

    .product-detail__media {
      min-height: 16rem;
      max-height: 42svh;
    }

    .product-detail__content {
      padding: 1.7rem 1.2rem 2.5rem;
    }

    .anti-waste__card {
      border-radius: 1.7rem;
    }

    .anti-waste__image {
      min-height: 23rem;
    }

    .anti-waste__badge {
      right: 1rem;
      bottom: 1rem;
      width: 6.5rem;
      height: 6.5rem;
    }

    .anti-waste__badge strong {
      font-size: 1.75rem;
    }

    .anti-waste__content {
      padding: 2.4rem 1.25rem 2.8rem;
    }

    .brands__heading p:last-child {
      display: none;
    }

    .visit__map-card {
      min-height: 28rem;
    }

    .visit__map-info {
      align-items: stretch;
      flex-direction: column;
    }

    .visit__map-info .button {
      width: 100%;
    }

    .visit__hours {
      padding: 1.6rem 1.1rem;
    }

    .site-footer__top {
      grid-template-columns: 1fr;
    }

    .site-footer__back {
      justify-self: start;
    }

    .site-footer__bottom {
      align-items: flex-start;
      flex-direction: column;
      gap: 0.5rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }

    .reveal {
      opacity: 1;
      transform: none;
    }
  }
}
