@layer components {
  .announcement { padding: .55rem 1rem; color: white; background: var(--brand-green-900); font-size: .9rem; text-align: center; }
  .announcement a { color: #f7e9b8; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
  .site-header { position: sticky; top: 0; z-index: 1000; min-height: var(--header-height); background: color-mix(in srgb, white 94%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--line) 75%, transparent); backdrop-filter: blur(16px); transition: box-shadow var(--transition), background var(--transition); }
  .site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.98); }
  .site-header__inner { min-height: var(--header-height); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.25rem; }
  .brand-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
  .brand-logo img { width: clamp(148px, 13vw, 200px); height: auto; }
  .site-nav { justify-self: center; }
  .site-nav__list { display: flex; align-items: center; gap: clamp(.55rem, 1.1vw, 1.15rem); list-style: none; margin: 0; padding: 0; }
  /* nowrap is load-bearing: with nine top-level items every label wrapped to
     two lines at 1440px, which pushed the header to 67px rows and made the
     nav read as a ragged block instead of one line. */
  .site-nav a { position: relative; display: inline-flex; padding-block: .6rem; color: var(--ink-800); font-weight: 600; font-size: .9rem; white-space: nowrap; letter-spacing: -.005em; }
  .site-nav a::after { content: ""; position: absolute; inset: auto 0 .25rem; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--brand-green); transition: transform var(--transition); }
  .site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
  /* The one nav item that is an offer rather than a destination, so it is gold
     and enclosed instead of borrowing the underline treatment. Font metrics are
     kept identical to .site-nav a so the pill cannot change the header row height. */
  .site-nav__offer { display: inline-flex; align-items: center; gap: .35rem; padding: .4rem .7rem; border: 1px solid color-mix(in srgb, var(--brand-gold) 45%, transparent); border-radius: 999px; background: var(--brand-gold-100); color: var(--brand-gold-700); font-weight: 700; font-size: .9rem; line-height: 1.2; white-space: nowrap; letter-spacing: -.005em; transition: background var(--transition), border-color var(--transition), color var(--transition); }
  .site-nav__offer:hover { background: color-mix(in srgb, var(--brand-gold) 22%, white); border-color: var(--brand-gold); color: #7d6210; }
  .header-actions { display: flex; align-items: center; gap: .55rem; }
  .icon-button { width: 2.6rem; height: 2.6rem; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--ink-700); transition: color var(--transition), border-color var(--transition), background var(--transition); }
  .icon-button:hover { border-color: color-mix(in srgb, var(--brand-green) 35%, var(--line)); color: var(--brand-green-700); background: var(--brand-green-100); }
  .nav-toggle { display: none; }
  /* Shared by the public site and admin. line-height:1 plus the flex centring
     keeps the label optically centred whether or not the button has an icon. */
  .button { min-height: 2.7rem; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; padding: .68rem 1.1rem; border: 1px solid transparent; border-radius: var(--radius-sm); background: var(--brand-green); color: white; font-size: .93rem; font-weight: 600; line-height: 1; letter-spacing: -.005em; box-shadow: var(--shadow-xs); transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition); }
  .button:hover { color: white; background: var(--brand-green-700); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
  .button:active { transform: translateY(0); }
  .button:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: var(--shadow-xs); }
  .button .icon { flex: 0 0 auto; }
  .button--gold { color: var(--ink-950); background: var(--brand-gold); }
  .button--gold:hover { color: var(--ink-950); background: #dab643; }
  .button--outline { color: var(--brand-green-700); background: transparent; border-color: var(--brand-green); box-shadow: none; }
  .button--outline:hover { color: white; background: var(--brand-green); }
  .button--ghost { color: var(--ink-700); background: var(--surface); border-color: var(--line); box-shadow: none; }
  .button--ghost:hover { color: var(--brand-green-700); background: var(--brand-green-100); border-color: color-mix(in srgb, var(--brand-green) 35%, var(--line)); }
  .button--danger { color: white; background: var(--danger); }
  .button--danger:hover { color: white; background: #99190f; }
  .button--sm { min-height: 2.3rem; padding: .5rem .8rem; font-size: .875rem; }
  .eyebrow { display: inline-flex; align-items: center; gap: .55rem; color: var(--brand-green-700); font-size: .92rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .eyebrow::before { content: ""; width: 1.7rem; height: 2px; background: var(--brand-gold); }
  .section-heading { max-width: 760px; display: grid; gap: 1rem; margin-bottom: 2.25rem; }
  .section-heading--center { text-align: center; margin-inline: auto; }
  .section-heading--center .eyebrow { justify-self: center; }
  .lead { font-size: clamp(1.05rem, 1.7vw, 1.25rem); line-height: 1.75; }
  .badge { display: inline-flex; align-items: center; gap: .4rem; padding: .36rem .68rem; border-radius: 999px; color: var(--brand-green-700); background: var(--brand-green-100); font-size: .78rem; font-weight: 800; }
  .badge--gold { color: #74590b; background: var(--brand-gold-100); }
  .card { position: relative; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
  .card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand-lime) 65%, var(--line)); box-shadow: var(--shadow-md); }
  .card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--surface-muted); }
  .card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms ease; }
  .card:hover .card__media img { transform: scale(1.045); }
  .card__body { display: grid; gap: .9rem; padding: 1.35rem; }
  .card__title { font-size: 1.25rem; }
  .card__meta { display: flex; align-items: center; flex-wrap: wrap; gap: .75rem; color: var(--ink-600); font-size: .86rem; }
  .card__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
  .category-card { min-height: 270px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; color: white; background: linear-gradient(180deg, rgba(5,56,29,.02), rgba(5,56,29,.88)), var(--category-image, var(--brand-green)); background-size: cover; background-position: center; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
  .category-card:hover { color: white; transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .category-card p { color: #dbece2; }
  .category-card__icon { width: 3rem; height: 3rem; display: grid; place-items: center; margin-bottom: auto; border-radius: .9rem; background: rgba(255,255,255,.14); backdrop-filter: blur(8px); }
  .stat { padding: 1.5rem; border-left: 3px solid var(--brand-gold); background: white; border-radius: 0 var(--radius-md) var(--radius-md) 0; box-shadow: var(--shadow-xs); }
  .stat strong { display: block; color: var(--brand-green-700); font-size: 2rem; line-height: 1.1; }
  .feature { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
  .feature__icon { width: 3.15rem; height: 3.15rem; display: grid; place-items: center; border-radius: 1rem; color: white; background: linear-gradient(135deg, var(--brand-green), var(--brand-lime)); }
  .feature p { margin-top: .4rem; }
  .breadcrumb { padding-block: 1.2rem; color: var(--ink-600); font-size: .88rem; }
  .breadcrumb ol { display: flex; align-items: center; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; margin: 0; }
  .breadcrumb li:not(:last-child)::after { content: "/"; margin-left: .55rem; color: var(--ink-500); }
  /* Fixed home for every page's breadcrumb, decoupled from whichever hero
     variant follows it — see PageBreadcrumbBar.razor. */
  .breadcrumb-bar { padding-block: .7rem; background: var(--surface); border-bottom: 1px solid var(--line); }
  .breadcrumb-bar .breadcrumb { padding-block: 0; }
  .page-hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 8vw, 7rem); background: linear-gradient(135deg, var(--brand-green-100), white 55%, var(--brand-gold-100)); }
  .page-hero::after { content: ""; position: absolute; width: 29rem; height: 29rem; right: -10rem; top: -11rem; border: 70px solid rgba(139,199,81,.18); transform: rotate(32deg); }
  .page-hero__inner { position: relative; z-index: 1; max-width: 860px; display: grid; gap: 1.2rem; }
  .cta-band { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.6fr auto; align-items: center; gap: 2rem; padding: clamp(2rem, 5vw, 4rem); color: white; background: linear-gradient(115deg, var(--brand-green-900), var(--brand-green) 65%, var(--brand-lime)); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
  .cta-band p { color: #e4f2e9; }
  .cta-band::after { content: ""; position: absolute; inset: -80% -10% auto auto; width: 24rem; aspect-ratio: 1; border: 55px solid rgba(255,255,255,.09); transform: rotate(40deg); }
  .form-shell { padding: clamp(1.4rem, 4vw, 2.5rem); background: white; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); }
  .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
  .form-field { display: grid; gap: .45rem; }
  .form-field--full { grid-column: 1/-1; }
  .form-field label { color: var(--ink-800); font-size: .875rem; font-weight: 600; letter-spacing: -.005em; }
  .input, input:not([type="checkbox"]):not([type="radio"]), select, textarea { width: 100%; min-height: 2.7rem; padding: .62rem .8rem; color: var(--ink-950); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: .93rem; line-height: 1.5; transition: border-color var(--transition), box-shadow var(--transition); }
  input::placeholder, textarea::placeholder { color: var(--ink-500); }
  textarea { min-height: 7.5rem; resize: vertical; }
  /* Native select arrows differ per OS/browser and none of them match this
     type scale — replace with one inline chevron so every control in a form
     row has the same affordance. background-image, not a wrapper element, so
     Blazor's <InputSelect> needs no markup change. */
  select { appearance: none; padding-right: 2.4rem; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f7067' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .7rem center; background-size: 1.05rem; }
  input:hover:not(:disabled), select:hover:not(:disabled), textarea:hover:not(:disabled) { border-color: color-mix(in srgb, var(--brand-green) 30%, var(--line)); }
  input:focus, select:focus, textarea:focus { border-color: var(--brand-green); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-green) 16%, transparent); outline: 0; }
  /* These repeat the :not(...) chain from the base rule on purpose. Without it
     the base selector — specificity (0,3,1) — outranks a plain `input:disabled`
     (0,1,1), so disabled and invalid fields silently rendered as normal ones. */
  input:not([type="checkbox"]):not([type="radio"]):disabled, select:disabled, textarea:disabled { color: var(--ink-500); background: var(--surface-muted); cursor: not-allowed; }
  input:not([type="checkbox"]):not([type="radio"]).invalid, select.invalid, textarea.invalid { border-color: var(--danger); }
  input:not([type="checkbox"]):not([type="radio"]).invalid:focus, select.invalid:focus, textarea.invalid:focus { box-shadow: 0 0 0 3px color-mix(in srgb, var(--danger) 16%, transparent); }
  .field-hint { color: var(--ink-600); font-size: .82rem; line-height: 1.5; }
  .field-validation-error, .form-error, .validation-message { color: var(--danger); font-size: .84rem; }
  .alert { display: flex; align-items: flex-start; gap: .6rem; padding: .85rem 1rem; border-radius: var(--radius-sm); border: 1px solid; font-size: .9rem; line-height: 1.55; }
  .alert--success { color: #05603a; background: #ecfdf3; border-color: #abefc6; }
  .alert--error { color: #b42318; background: #fef3f2; border-color: #fecdca; }

  /* Floating confirmation for save/submit results, used by Site/Toast.razor on
     both the public forms and every admin screen — hence here rather than in
     admin.css, which only loads inside AdminLayout.

     Cleared the public header (84px) rather than the admin topbar (68px): the
     larger of the two works in both places, where the smaller would sit on top
     of the site header. z-index is above .site-header (1000) and the admin
     sidebar (30) so nothing can cover it. Distinct from .toast below, which is
     presentation.js's own bottom-right dark bar. */
  .app-toast {
    position: fixed; top: calc(var(--header-height) + 1rem); right: 1.5rem; z-index: 1200;
    display: flex; align-items: center; gap: .55rem;
    max-width: min(28rem, calc(100vw - 3rem));
    padding: .7rem 1rem;
    border: 1px solid; border-radius: var(--radius-sm);
    font-size: .88rem; line-height: 1.5; font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: app-toast-in .18s ease-out;
  }
  .app-toast--success { color: #05603a; background: #ecfdf3; border-color: #abefc6; }
  .app-toast--error { color: #b42318; background: #fef3f2; border-color: #fecdca; }
  .app-toast .icon { flex-shrink: 0; }

  @keyframes app-toast-in {
    from { opacity: 0; transform: translateY(-.4rem); }
    to { opacity: 1; transform: none; }
  }

  @media (prefers-reduced-motion: reduce) { .app-toast { animation: none; } }

  .honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
  .tabs { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.5rem; }
  .tab { padding: .65rem 1rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-700); background: white; font-weight: 750; }
  .tab.is-active, .tab[aria-selected="true"] { color: white; border-color: var(--brand-green); background: var(--brand-green); }
  .pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem; margin-top: 2.5rem; }
  .pagination a { min-width: 2.65rem; height: 2.65rem; display: grid; place-items: center; border: 1px solid var(--line); border-radius: .7rem; background: white; font-weight: 700; }
  .pagination a.active, .pagination a[aria-current="page"] { color: white; border-color: var(--brand-green); background: var(--brand-green); }
  .accordion { display: grid; gap: .75rem; }
  .accordion details { padding: 1rem 1.2rem; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); }
  .accordion summary { cursor: pointer; color: var(--ink-900); font-weight: 800; }
  .accordion details p { margin-top: .8rem; }
  .media-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: .75rem; }
  .media-gallery a { overflow: hidden; border-radius: var(--radius-md); background: var(--surface-muted); }
  .media-gallery img { width: 100%; height: 100%; object-fit: cover; }
  .media-gallery a:first-child { grid-row: span 2; }
  .toast-region { position: fixed; right: 1rem; bottom: 1rem; z-index: 1300; display: grid; gap: .75rem; }
  .toast { max-width: 340px; padding: .9rem 1rem; color: white; background: var(--ink-950); border-radius: var(--radius-md); box-shadow: var(--shadow-md); animation: toast-in .22s ease both; }
  @keyframes toast-in { from { opacity: 0; transform: translateY(12px); } }
  .search-dialog { width: min(720px, calc(100% - 2rem)); padding: 0; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
  .search-dialog::backdrop { background: rgba(5,26,15,.58); backdrop-filter: blur(4px); }
  .search-dialog__body { padding: 1.5rem; }
  .search-dialog__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
  .lead-dialog { position: fixed; width: min(460px, calc(100% - 2rem)); padding: 0; border: 0; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); overflow: hidden; }
  .lead-dialog::backdrop { background: rgba(5,26,15,.58); backdrop-filter: blur(4px); }
  .lead-dialog__body { position: relative; padding: clamp(1.5rem, 4vw, 2.25rem); background: linear-gradient(160deg, #fff, var(--surface-soft)); }
  .lead-dialog__close { position: absolute; top: .9rem; right: .9rem; width: 2.35rem; height: 2.35rem; }
  .lead-dialog__panel { display: grid; gap: 1rem; }
  .lead-dialog__panel h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
  .lead-dialog__code { display: grid; place-items: center; padding: 1.1rem; color: var(--brand-green-900); background: var(--brand-gold-100); border: 1px dashed var(--brand-gold); border-radius: var(--radius-md); font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: .08em; }
  /* Footer-only: pale gold reads against the dark green footer. Anything on a
     light surface (admin table rows) must use .table-action instead — this
     used to be reused there and was near-invisible. The gift glyph is now an
     <Icon Name="gift" /> in the markup rather than an emoji pseudo-element,
     so it matches the rest of the icon set instead of rendering as whatever
     colour emoji the OS ships. */
  .lead-open-link { display: inline-flex; align-items: center; gap: .4rem; padding: 0; color: #f7e9b8; background: none; border: 0; font: inherit; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
  .lead-open-link:hover { color: white; }
  /* Style-guide scaffolding (/components). Only used by ComponentsShowcase —
     kept here rather than in a page-specific file so the guide always picks up
     the same tokens as everything else it is demonstrating. */
  .spec-row { display: flex; align-items: center; flex-wrap: wrap; gap: .65rem; }
  .spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-5); }
  .spec-card { display: grid; gap: var(--space-4); padding: var(--space-5); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); }
  .icon-catalog { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: .75rem; }
  .icon-catalog__item { display: grid; justify-items: center; gap: .4rem; padding: .7rem .4rem; text-align: center; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); }
  .icon-catalog__item code { font-size: .72rem; color: var(--ink-600); word-break: break-all; }
  .spec-note { display: grid; gap: .35rem; margin-top: var(--space-5); padding: var(--space-4) var(--space-5); background: var(--brand-gold-100); border-left: 3px solid var(--brand-gold); border-radius: var(--radius-sm); }
  .spec-note strong { color: var(--ink-900); font-size: .95rem; }
  .spec-note p { display: flex; align-items: center; flex-wrap: wrap; gap: .35rem; color: var(--ink-700); font-size: .9rem; }
  .spec-note code, .spec-row code { padding: .1rem .35rem; background: color-mix(in srgb, var(--surface) 70%, transparent); border-radius: .3rem; font-family: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace; font-size: .85em; }

  /* Sign-in screen (Gisc.Ui/Pages/Login.razor, BareLayout). Centred card on a
     tinted ground — no site or admin chrome, so nothing competes with the one
     thing the page is for. */
  .auth-shell { min-height: 100vh; display: grid; align-content: center; justify-items: center; gap: var(--space-5); padding: var(--space-8) var(--space-4); background: linear-gradient(160deg, var(--brand-green-100), var(--surface-soft) 45%, var(--brand-gold-100)); }
  .auth-card { width: min(430px, 100%); display: grid; gap: var(--space-6); padding: clamp(1.75rem, 4vw, 2.5rem); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
  .auth-card__head { display: grid; gap: .5rem; }
  .auth-card__head h1 { font-family: var(--font-sans); font-size: 1.6rem; font-weight: 700; letter-spacing: -.02em; }
  .auth-card__head p { color: var(--ink-600); font-size: .9rem; line-height: 1.55; }
  .auth-card__submit { width: 100%; margin-top: .25rem; }
  .auth-shell__foot { font-size: .88rem; }
  .auth-shell__foot a { color: var(--ink-600); }
  .auth-shell__foot a:hover { color: var(--brand-green-700); }

  .lightbox { position: fixed; inset: 0; z-index: 1400; display: none; place-items: center; padding: 1.5rem; background: rgba(0,0,0,.86); }
  .lightbox.is-open { display: grid; }
  .lightbox img { max-height: 86vh; border-radius: var(--radius-md); }
  .lightbox__close { position: absolute; right: 1rem; top: 1rem; color: white; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
  .site-footer { color: #e8f3ec; background: var(--brand-green-900); }
  .site-footer__main { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 2.5rem; padding-block: 4rem; }
  .site-footer h3 { margin-bottom: 1rem; color: white; font-size: 1rem; letter-spacing: .02em; }
  .site-footer p, .site-footer a { color: #cfe3d6; }
  .site-footer a:hover { color: white; }
  .footer-list { display: grid; gap: .65rem; list-style: none; margin: 0; padding: 0; }
  .footer-brand img { width: 220px; margin-bottom: 1rem; }
  .site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.1rem; border-top: 1px solid rgba(255,255,255,.13); font-size: .86rem; }
  .back-to-top { position: fixed; right: 1rem; bottom: 1rem; z-index: 900; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity var(--transition), transform var(--transition); }
  .back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

  /* Floating contact-channel widget (Zalo/Messenger/LinkedIn/Viber/phone). Anchored
     above back-to-top so the two never overlap. The popout list is positioned
     absolutely off the toggle button so it never affects the container's own box
     — otherwise the hidden (opacity:0) items would still push the button around. */
  .channel-widget { position: fixed; right: 1.1rem; bottom: 5.5rem; z-index: 950; }
  .channel-widget__toggle { width: 3.25rem; height: 3.25rem; border: none; border-radius: 999px; display: inline-grid; place-items: center; background: var(--brand-green); box-shadow: var(--shadow-md); cursor: pointer; transition: transform var(--transition), background var(--transition); }
  .channel-widget__toggle:hover { background: var(--brand-green-700); transform: translateY(-2px); }
  .channel-widget__toggle svg { width: 1.5rem; height: 1.5rem; }
  .channel-widget__list { position: absolute; right: 0; bottom: calc(100% + .65rem); display: flex; flex-direction: column-reverse; align-items: flex-end; gap: .6rem; list-style: none; margin: 0; padding: 0; }
  .channel-widget__item { opacity: 0; transform: translateY(14px) scale(.85); pointer-events: none; transition: opacity .22s ease, transform .22s ease; }
  .channel-widget__list.is-open .channel-widget__item { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .channel-widget__link { width: 2.85rem; height: 2.85rem; display: inline-grid; place-items: center; border-radius: 999px; box-shadow: var(--shadow-sm); transition: transform var(--transition); }
  .channel-widget__link:hover { transform: translateY(-2px) scale(1.05); }
  .channel-widget__link svg { width: 100%; height: 100%; }
  @media (max-width: 680px) {
    .channel-widget { right: .75rem; bottom: 5rem; }
    .back-to-top { right: .75rem; }
  }

  /* Language switcher in the header — same absolute-popover approach as the
     channel widget so the hidden list never affects layout. */
  .lang-switcher { position: relative; }
  .lang-switcher__list { position: absolute; right: 0; top: calc(100% + .5rem); min-width: 150px; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: .4rem; display: none; z-index: 200; list-style: none; margin: 0; }
  .lang-switcher__list.is-open { display: grid; gap: .15rem; }
  .lang-switcher__list a { display: block; padding: .55rem .7rem; border-radius: .5rem; color: var(--ink-800); text-decoration: none; font-size: .92rem; }
  .lang-switcher__list a:hover { background: var(--brand-green-100); }
  .lang-switcher__list a.is-active { color: var(--brand-green-700); font-weight: 700; }
  @media (max-width: 1020px) {
    .site-header__inner { grid-template-columns: auto auto; justify-content: space-between; }
    .site-nav { position: fixed; inset: calc(var(--header-height) + 1px) 1rem auto; display: none; padding: 1rem; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
    .site-nav.is-open { display: block; }
    .site-nav__list { align-items: stretch; flex-direction: column; gap: .15rem; }
    .site-nav a { display: flex; padding: .8rem; border-radius: .6rem; }
    .site-nav a:hover { background: var(--brand-green-100); }
    /* The pill sits in header-actions, which stays visible when the nav collapses.
       Its label is the first thing to give: on a 375px screen the icon alone keeps
       the offer reachable without crowding the menu toggle. */
    .site-nav__offer span { display: none; }
    /* Matches .icon-button's 2.6rem box so the three header actions sit on one
       optical line instead of the pill riding 9px short of its neighbours. */
    .site-nav__offer { width: 2.6rem; height: 2.6rem; padding: 0; justify-content: center; }
    .nav-toggle { display: inline-grid; }
    .header-actions .button { display: none; }
    .site-footer__main { grid-template-columns: repeat(2, minmax(0,1fr)); }
  }
  @media (max-width: 680px) {
    .brand-logo img { width: 165px; }
    .site-footer__main { grid-template-columns: 1fr; }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; }
    .cta-band { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .media-gallery { grid-template-columns: 1fr 1fr; }
    .media-gallery a:first-child { grid-column: span 2; grid-row: auto; }
    .lead-dialog { width: calc(100% - 1.5rem); }
    .lead-dialog__body { padding: 1.5rem; }
  }
}


.site-nav a.is-active{color:var(--brand-green-700);font-weight:800}.site-nav a.is-active::after{transform:scaleX(1)}.presentation-ribbon{position:fixed;left:1rem;bottom:1rem;z-index:40;background:#102b1c;color:white;padding:.55rem .8rem;border-radius:999px;font-size:.78rem;box-shadow:0 10px 30px rgba(0,0,0,.2);opacity:.86}.presentation-ribbon a{color:#d8f6df}.presentation-ribbon:hover{opacity:1}@media(max-width:640px){.presentation-ribbon{display:none}}
