@layer reset, base, layout, components, content, responsive;
@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  body,
  h1,
  h2,
  h3,
  p,
  ul,
  ol {
    margin: 0;
  }
  img,
  svg {
    display: block;
    max-width: 100%;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  button,
  input,
  summary {
    font: inherit;
  }
  button,
  summary {
    -webkit-tap-highlight-color: transparent;
  }
  [hidden] {
    display: none !important;
  }
}
@layer base {
  :root {
    --line: #245040;
    --text: #eff8f2;
    --muted: #abc2b6;
    --soft: #88a99a;
    --green: #20dd80;
    --gold: #e9d17b;
    --header-height: 76px;
    color-scheme: dark;
    font-family:
      Inter,
      ui-sans-serif,
      system-ui,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
  }
  html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
    scroll-padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }
  body {
    background: linear-gradient(120deg, #06261c 0, #051c18 45%, #07111f 100%);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    min-width: 280px;
  }
  ::selection {
    background: #20dd8040;
    color: #fff;
  }
  :focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 5px;
    border-radius: 3px;
  }
  h1,
  h2,
  h3 {
    line-height: 1.16;
    text-wrap: balance;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }
  h1 {
    font-size: clamp(1.8rem, 3.3vw, 3.4rem);
    font-weight: 760;
  }
  h2 {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 700;
  }
  h3 {
    font-size: 1.1rem;
    font-weight: 680;
  }
  input {
    min-width: 0;
    color: var(--text);
  }
  input::placeholder {
    color: var(--muted);
    opacity: 1;
  }
  .icon {
    flex: none;
    width: 20px;
    height: 20px;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }
  .skip-link {
    position: fixed;
    top: 8px;
    left: 12px;
    padding: 12px 20px;
    background: var(--gold);
    color: #061c14;
    z-index: 100;
    transform: translateY(-150%);
  }
  .skip-link:focus {
    transform: translateY(0);
  }
  .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 750;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: var(--green);
    color: #032417;
    font-weight: 750;
    font-size: 0.95rem;
    transition:
      background 0.15s,
      transform 0.15s;
  }
  .button:hover {
    background: #53eda0;
    transform: translateY(-1px);
  }
  .button-small {
    min-height: 40px;
    padding: 8px 17px;
    font-size: 0.875rem;
  }
  .button-outline {
    border-color: #347452;
    background: #0a2a20;
    color: var(--text);
  }
  .button-outline:hover {
    background: #154834;
  }
  .button-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
  }
  .text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--green);
    font-weight: 650;
    min-height: 44px;
  }
}
@layer layout {
  .header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 28px;
    background: #031b15f5;
    border-bottom: 1px solid #245040;
    position: sticky;
    top: 0;
    z-index: 30;
  }
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: none;
    color: var(--gold);
    line-height: 1.05;
  }
  .brand > span {
    font-size: 1.25rem;
    font-weight: 850;
    letter-spacing: 0.035em;
  }
  .brand small {
    display: block;
    font-size: 0.6rem;
    font-weight: 650;
    letter-spacing: 0.19em;
    color: var(--muted);
    margin-top: 7px;
  }
  .brand img {
    width: 169px;
    height: auto;
    object-fit: contain;
  }
  .top-nav {
    display: flex;
    align-self: stretch;
    gap: 23px;
    margin-left: 18px;
    white-space: nowrap;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: thin;
  }
  .top-nav a {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 0.875rem;
    color: var(--muted);
    font-weight: 550;
  }
  .top-nav a:hover,
  .top-nav a[aria-current] {
    color: var(--green);
  }
  .top-nav a[aria-current]::after {
    content: "";
    position: absolute;
    height: 3px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green);
    border-radius: 4px 4px 0 0;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }
  .locale {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 0.8rem;
    white-space: nowrap;
    margin-right: 8px;
  }
  .locale .icon {
    width: 17px;
    color: var(--green);
  }
  .site-layout {
    max-width: 1680px;
    margin: auto;
    display: grid;
    grid-template-columns: 222px minmax(0, 1fr);
  }
  .sidebar {
    padding: 25px 16px 20px;
    position: sticky;
    top: var(--header-height);
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    scrollbar-width: thin;
    border-right: 1px solid #1c4334;
    background: #05231b80;
  }
  .sidebar nav > a {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 42px;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--muted);
    margin: 3px 0;
    transition:
      background 0.15s,
      color 0.15s;
  }
  .sidebar nav > a:hover {
    background: #10382a;
    color: var(--text);
  }
  .sidebar nav > a[aria-current] {
    color: #042718;
    background: linear-gradient(100deg, #20dd80, #17c991);
    font-weight: 750;
  }
  .nav-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--soft);
    font-weight: 700;
    margin: 24px 12px 8px;
  }
  .nav-tag {
    margin-left: auto;
    border: 1px solid #387253;
    padding: 0 5px;
    border-radius: 4px;
    color: var(--gold);
    font-size: 0.625rem;
    line-height: 1.6;
  }
  .sidebar [aria-current] .nav-tag {
    border-color: #065b31;
    color: #06351e;
  }
  .sidebar-note {
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--line);
    margin: 24px 8px 0;
    padding-top: 20px;
    align-items: center;
  }
  .sidebar-note p {
    font-size: 0.7rem;
    line-height: 1.6;
    color: var(--muted);
  }
  .sidebar-note p span {
    color: var(--soft);
  }
  .age-badge {
    border: 1px solid #557965;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 750;
    display: grid;
    place-items: center;
    flex: none;
    width: 34px;
    height: 34px;
    color: var(--muted);
  }
  .main-column {
    min-width: 0;
    padding: 28px 30px 0;
  }
  .main-column main {
    outline: none;
  }
  .mobile-menu,
  .mobile-bar {
    display: none;
  }
}
@layer components {
  .search-trigger {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 0 10px;
    background: #092d22;
    border: 1px solid #6b9680;
    border-radius: 6px;
    color: var(--muted);
  }
  .search-trigger input {
    background: transparent;
    border: 0;
    width: 100%;
    font-size: 0.8rem;
    height: 42px;
  }
  .search-trigger .icon {
    width: 16px;
  }
  .search-trigger:focus-within {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }
  .search-trigger input:focus {
    outline: 0;
  }
  .search-results {
    background: #0c3125;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 5px;
    margin-top: 8px;
  }
  .search-results a {
    display: block;
    padding: 10px;
    font-size: 0.8rem;
    border-radius: 4px;
    line-height: 1.4;
  }
  .search-results a:hover {
    background: #20523d;
  }
  .search-results p {
    padding: 10px;
    font-size: 0.8rem;
    color: var(--muted);
  }
  .hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid #315644;
    border-radius: 14px;
    background: #0a2a20;
    min-height: 350px;
  }
  .hero-copy {
    position: relative;
    z-index: 2;
    padding: 36px 0 34px 32px;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .hero h1 {
    max-width: 660px;
    margin-bottom: 19px;
  }
  .hero-lead {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #c2d7ca;
  }
  .hero-lead p {
    margin-bottom: 15px;
  }
  .hero-lead strong {
    color: var(--text);
    font-weight: 650;
  }
  .hero-lead a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .hero-lead .hero-actions {
    font-size: 0.8rem;
    line-height: 2.5;
  }
  .hero-actions>a:first-child[href^="https://cawabanga.com"],.hero-actions>strong:first-child>a[href^="https://cawabanga.com"],.hero-actions>strong:first-child>a[href^="mailto:"]
  {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 16px;
    margin: 4px 9px 4px 0;
    background: var(--green);
    color: #032417;
    border-radius: 6px;
    font-weight: 750;
    line-height: 1.5;
    text-decoration: none;
  }
  .hero-lead p:last-child {
    margin-bottom: 0;
  }
  .hero-art {
    position: relative;
    min-width: 0;
  }
  .hero-art img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: 55% center;
  }
  .hero-art-shade {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, #0a2a20 0%, #0a2a2000 40%),
      linear-gradient(0deg, #0a2a2080, transparent 45%);
  }
  .art-caption {
    position: absolute;
    bottom: 23px;
    right: 24px;
    color: #e4eee6;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-shadow: 0 1px 4px #000;
  }
  .hero-article {
    grid-template-columns: minmax(0, 1fr) 28%;
    min-height: 250px;
  }
  .hero-article .hero-copy {
    padding: 30px 0 30px 30px;
  }
  .hero-article h1 {
    font-size: clamp(1.8rem, 2.7vw, 2.7rem);
  }
  .hero-article .hero-art img {
    object-position: center;
  }
  .hero-article .hero-art-shade {
    background: linear-gradient(90deg, #0a2a20 0%, #0a2a2040 50%);
  }
  .offer-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 23px;
    background: linear-gradient(100deg, #183f2a, #0a2920);
    border: 1px solid #3b6042;
    border-radius: 9px;
    margin-top: 16px;
  }
  .offer-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: none;
    border: 1px solid #6a7242;
    border-radius: 10px;
    color: var(--gold);
    background: #55612b30;
  }
  .offer-strip strong {
    display: block;
    font-size: 1.1rem;
    letter-spacing: -0.025em;
    color: var(--gold);
  }
  .offer-strip div > span {
    font-size: 0.76rem;
    color: var(--muted);
    display: block;
    margin-top: 2px;
  }
  .offer-strip > a {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: none;
    color: var(--gold);
    font-size: 0.83rem;
    font-weight: 650;
    min-height: 44px;
  }
  .category-section,
  .utility-section {
    margin-top: 38px;
  }
  .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 18px;
  }
  .section-heading .eyebrow {
    font-size: 0.625rem;
    margin-bottom: 8px;
    color: var(--soft);
  }
  .category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
  }
  .category-card {
    min-width: 0;
    background: #09271f;
    border: 1px solid #284b3e;
    border-radius: 10px;
    overflow: hidden;
    transition:
      border-color 0.2s,
      transform 0.2s;
  }
  .category-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
  }
  .category-art {
    aspect-ratio: 1.55;
    position: relative;
    overflow: hidden;
    background: #0a3024;
  }
  .category-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }
  .category-card:hover img {
    transform: scale(1.035);
  }
  .category-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #06211675, transparent 55%);
  }
  .card-index {
    position: absolute;
    z-index: 1;
    top: 12px;
    left: 12px;
    border: 1px solid #ffffff45;
    background: #06261990;
    backdrop-filter: blur(5px);
    padding: 3px 9px;
    border-radius: 4px;
    font-size: 0.7rem;
    color: #fff;
    letter-spacing: 0.07em;
  }
  .card-copy {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 17px;
  }
  .card-copy h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }
  .card-copy p {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.5;
  }
  .card-arrow {
    margin-left: auto;
    border: 1px solid #386448;
    border-radius: 50%;
    padding: 7px;
    flex: none;
    color: var(--green);
  }
  .card-arrow .icon {
    width: 16px;
    height: 16px;
  }
  .utility-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  .utility-card {
    padding: 20px 18px;
    background: #08271e90;
    border: 1px solid #244b3b;
    border-radius: 8px;
    position: relative;
    transition: background 0.15s;
  }
  .utility-card:hover {
    background: #113b2a;
    border-color: #477a58;
  }
  .utility-icon {
    color: var(--green);
    display: block;
    margin-bottom: 19px;
  }
  .utility-card h3 {
    font-size: 0.98rem;
    letter-spacing: -0.015em;
    margin-bottom: 9px;
  }
  .utility-card p {
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.6;
  }
  .utility-arrow {
    position: absolute;
    right: 18px;
    top: 21px;
    width: 16px;
    color: var(--soft);
  }
  .breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0 0 18px;
  }
  .breadcrumbs a:hover {
    color: var(--green);
    text-decoration: underline;
  }
  .reading-section {
    margin-top: 42px;
    border-top: 1px solid var(--line);
    padding: 34px 0 20px;
  }
  .article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    grid-template-areas: "article aside";
    gap: 36px;
    align-items: start;
  }
  .article-layout > .prose {
    grid-area: article;
  }
  .article-aside {
    grid-area: aside;
    position: sticky;
    top: 100px;
    min-width: 0;
  }
  .toc {
    border: 1px solid #294b3a;
    border-radius: 9px;
    background: #08251d;
    overflow: hidden;
  }
  .toc summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 16px 18px;
    cursor: pointer;
  }
  .toc summary:focus-visible {
    outline-offset: -5px;
  }
  summary::-webkit-details-marker {
    display: none;
  }
  .toc[open] summary .icon {
    transform: rotate(180deg);
  }
  .toc nav {
    display: grid;
    gap: 2px;
    padding: 0 8px 12px;
    max-height: 60dvh;
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .toc nav a {
    padding: 8px 10px;
    font-size: 0.74rem;
    line-height: 1.5;
    color: var(--muted);
    border-radius: 5px;
    border-left: 2px solid transparent;
  }
  .toc nav a:hover {
    background: #12392a;
    color: var(--green);
    border-left-color: var(--green);
  }
  .aside-guide {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #49633a;
    border-radius: 9px;
    padding: 20px;
    margin-top: 18px;
    background: linear-gradient(150deg, #1b3928, #09251d);
    color: var(--gold);
  }
  .aside-guide strong {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .aside-guide span {
    color: var(--muted);
    font-size: 0.78rem;
  }
  .aside-guide:hover {
    border-color: var(--gold);
  }
  .footer {
    margin-top: 40px;
    padding: 35px 0 20px;
    border-top: 1px solid var(--line);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 24px;
  }
  .footer .brand > span {
    font-size: 1rem;
  }
  .footer-top > div > p {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 17px;
  }
  .footer nav h2 {
    font-size: 0.8rem;
    letter-spacing: 0;
    margin: 4px 0 14px;
  }
  .footer nav a {
    display: block;
    color: var(--muted);
    font-size: 0.75rem;
    padding: 5px 0;
  }
  .footer nav a:hover {
    color: var(--green);
    text-decoration: underline;
  }
  .footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #1b3c2e;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--soft);
    font-size: 0.65rem;
  }
  .footer-bottom strong {
    color: var(--gold);
    margin-right: 7px;
  }
  .footer-operator {
    margin-top: 18px;
    max-width: 110ch;
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.8;
    overflow-wrap: anywhere;
  }
  .footer-operator a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .simple-page {
    max-width: 850px;
    min-height: 50vh;
    padding: 35px 20px 50px;
  }
  .simple-page > p {
    margin-top: 20px;
    color: var(--muted);
  }
  .publisher-header {
    padding: 22px 0 0;
    max-width: 850px;
  }
  .publisher-header h1 {
    margin-bottom: 22px;
  }
  .publisher-header .prose {
    max-width: 75ch;
  }
  .publisher-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--line);
  }
  .footer .publisher-links a {
    font-size: 0.85rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .publisher-aside {
    display: grid;
    gap: 4px;
    margin-top: 18px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .publisher-aside a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    min-height: 44px;
    font-size: 0.8rem;
    color: var(--muted);
    border-radius: 5px;
  }
  .publisher-aside a:hover,
  .publisher-aside a[aria-current] {
    color: var(--green);
    background: #173d2d;
  }
}
@layer content {
  .prose {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    color: #c6d8cd;
    font-size: 1rem;
    line-height: 1.85;
    overflow-wrap: anywhere;
  }
  .prose > p,
  .prose > ul,
  .prose > ol,
  .prose > blockquote {
    max-width: 78ch;
  }
  .prose > a[id] {
    display: block;
    height: 0;
    scroll-margin-top: 100px;
  }
  .prose h2 {
    color: var(--text);
    font-size: 1.55rem;
    margin: 45px 0 18px;
    line-height: 1.3;
    letter-spacing: -0.025em;
  }
  .prose > h2:first-child,
  .prose > a:first-child + h2 {
    margin-top: 0;
  }
  .prose h3 {
    color: #e4efe7;
    font-size: 1.12rem;
    line-height: 1.45;
    margin: 28px 0 12px;
    letter-spacing: -0.012em;
  }
  .prose p {
    margin: 0 0 18px;
  }
  .article-figure {
    margin: 28px 0 32px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #08251d;
    break-inside: avoid;
  }
  .article-figure img {
    width: 100%;
    height: auto;
  }
  .article-figure figcaption {
    padding: 13px 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }
  .prose a {
    color: #57e5a0;
    text-decoration: underline;
    text-decoration-color: #57e5a04d;
    text-underline-offset: 4px;
  }
  .prose a:hover {
    text-decoration-color: currentColor;
    color: #98f2c3;
  }
  .prose strong {
    color: #edf6ef;
    font-weight: 680;
  }
  .prose ul,
  .prose ol {
    padding-left: 24px;
    margin: 16px 0 24px;
  }
  .prose li {
    margin: 9px 0;
    padding-left: 4px;
  }
  .prose li::marker {
    color: var(--green);
  }
  .prose blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    background: #28472a60;
    color: #dbe6d9;
  }
  .prose blockquote p:last-child {
    margin-bottom: 0;
  }
  .table-scroll {
    max-width: 100%;
    overflow-x: auto;
    margin: 22px 0 27px;
    border: 1px solid #2a513f;
    border-radius: 8px;
    scrollbar-color: #427658 #0b2a20;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
  }
  .prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.83rem;
    line-height: 1.7;
    text-align: left;
  }
  .prose th {
    padding: 13px 16px;
    background: #163e2d;
    color: #eef6ec;
    font-weight: 700;
  }
  .prose td {
    padding: 14px 16px;
    border-top: 1px solid #264937;
    vertical-align: top;
    min-width: 135px;
  }
  .prose td:first-child {
    color: #deebe1;
    font-weight: 500;
    min-width: 150px;
  }
  .prose .numeric-cell {
    text-align: right;
  }
  .prose tbody tr:nth-child(even) {
    background: #0b2e2290;
  }
  .prose td a {
    overflow-wrap: anywhere;
  }
}
@layer responsive {
  @media (min-width: 1600px) {
    .main-column {
      padding-right: 40px;
      padding-left: 40px;
    }
    .hero-copy {
      padding: 44px 0 42px 40px;
    }
    .hero-home {
      min-height: 420px;
    }
  }
  @media (max-width: 1250px) {
    .header {
      gap: 16px;
      padding: 0 20px;
    }
    .top-nav {
      gap: 16px;
      margin-left: 0;
    }
    .locale {
      display: none;
    }
    .site-layout {
      grid-template-columns: 195px minmax(0, 1fr);
    }
    .sidebar {
      padding-inline: 10px;
    }
    .main-column {
      padding: 24px 22px 0;
    }
    .article-layout {
      grid-template-columns: minmax(0, 1fr) 190px;
      gap: 24px;
    }
    .hero-copy {
      padding: 28px 0 26px 26px;
    }
    .hero-lead {
      font-size: 0.86rem;
    }
    .hero-home h1 {
      font-size: 2.4rem;
    }
    .card-copy {
      padding: 14px;
    }
    .card-copy h3 {
      font-size: 1rem;
    }
    .card-copy p {
      font-size: 0.7rem;
    }
    .card-arrow {
      display: none;
    }
    .offer-strip {
      padding: 16px;
    }
    .offer-strip > a {
      font-size: 0.75rem;
    }
  }
  @media (max-width: 1050px) {
    .top-nav {
      display: none;
    }
    .site-layout {
      grid-template-columns: 1fr;
    }
    .sidebar {
      display: none;
    }
    .header {
      height: 68px;
      --header-height: 68px;
    }
    .main-column {
      padding: 22px 24px 0;
    }
    :root {
      --header-height: 68px;
    }
    .mobile-menu {
      display: block;
      position: relative;
    }
    .mobile-menu summary {
      display: flex;
      align-items: center;
      gap: 7px;
      min-height: 44px;
      padding: 9px;
      border: 1px solid #335744;
      border-radius: 6px;
      cursor: pointer;
      font-size: 0.8rem;
      list-style: none;
    }
    .mobile-menu summary span {
      display: none;
    }
    .mobile-menu nav {
      position: absolute;
      right: 0;
      top: 54px;
      width: min(360px, calc(100vw - 28px));
      padding: 10px;
      max-height: calc(100dvh - 100px);
      overflow-y: auto;
      overscroll-behavior: contain;
      background: #0b2c21;
      border: 1px solid #466c4d;
      border-radius: 9px;
      box-shadow: 0 16px 35px #0008;
    }
    .mobile-menu nav a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      min-height: 46px;
      font-size: 0.9rem;
      border-radius: 5px;
    }
    .mobile-menu nav a[aria-current] {
      background: #215038;
      color: var(--green);
    }
    .mobile-menu nav a:hover {
      background: #173d2d;
    }
    .hero-home {
      min-height: 370px;
    }
    .hero-home h1 {
      font-size: 2.65rem;
    }
    .hero-lead {
      font-size: 0.92rem;
    }
    .hero-copy {
      padding: 32px 0 32px 30px;
    }
    .hero-article h1 {
      font-size: 2.1rem;
    }
    .article-layout {
      grid-template-columns: minmax(0, 1fr) 210px;
      gap: 28px;
    }
    .card-copy h3 {
      font-size: 1.1rem;
    }
    .mobile-menu [data-guide-search] {
      margin: 4px 4px 10px;
    }
    .mobile-menu .search-trigger input {
      font-size: 1rem;
      height: 44px;
    }
    .mobile-menu .search-results {
      max-height: 240px;
      overflow: auto;
    }
  }
  @media (max-width: 760px) {
    .article-layout {
      display: flex;
      flex-direction: column;
      gap: 26px;
    }
    .article-aside {
      position: static;
      order: -1;
      width: 100%;
    }
    .aside-guide {
      display: none;
    }
    .toc nav {
      max-height: 230px;
      grid-template-columns: 1fr 1fr;
      column-gap: 10px;
    }
    .hero-article {
      grid-template-columns: minmax(0, 1fr) 24%;
    }
    .hero-article .hero-art-shade {
      background: linear-gradient(90deg, #0a2a20, #0a2a2040);
    }
    .utility-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .offer-strip {
      flex-wrap: wrap;
      gap: 12px;
    }
    .offer-strip div {
      flex: 1;
    }
    .offer-strip > a {
      margin-left: 56px;
      min-height: 32px;
    }
    .footer-top {
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .footer-top > div {
      grid-column: 1/-1;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
    }
    .footer-top > div > p {
      margin: 0;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 8px;
    }
    .hero-home h1 {
      font-size: 2.25rem;
    }
    .hero-home {
      grid-template-columns: 1.25fr 0.75fr;
    }
    .hero-copy {
      padding: 26px 0 26px 24px;
    }
    .section-heading .text-link {
      font-size: 0.75rem;
    }
  }
  @media (max-width: 620px) {
    body {
      padding-bottom: calc(64px + env(safe-area-inset-bottom));
    }
    .header {
      height: 64px;
      padding: 0 14px;
      gap: 10px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto auto;
    }
    :root {
      --header-height: 64px;
    }
    .brand {
      gap: 5px;
    }
    .brand > span {
      font-size: 0.98rem;
      letter-spacing: 0.02em;
    }
    .brand img {
      width: 145px;
    }
    .brand small {
      font-size: 0.57rem;
      letter-spacing: 0.12em;
      margin-top: 5px;
    }
    .header-actions {
      gap: 7px;
      margin-left: 0;
    }
    .header-actions .button-outline {
      display: none;
    }
    .header-actions .button-small {
      min-height: 44px;
      font-size: 0.78rem;
      padding: 8px 11px;
    }
    .mobile-menu summary {
      padding: 10px;
      min-height: 44px;
    }
    .main-column {
      padding: 16px 14px 0;
    }
    .hero {
      display: flex;
      flex-direction: column-reverse;
      border-radius: 10px;
    }
    .hero-art {
      flex: none;
    }
    .hero-art img {
      object-position: center 43%;
    }
    .hero-art-shade {
      background: linear-gradient(0deg, #0a2a20, transparent 75%);
    }
    .hero-copy {
      padding: 0 21px 25px;
      margin-top: -13px;
    }
    .hero-home h1 {
      font-size: 2.12rem;
      line-height: 1.13;
    }
    .hero .eyebrow {
      font-size: 0.65rem;
      margin-bottom: 12px;
    }
    .hero-lead {
      font-size: 1rem;
      line-height: 1.75;
    }
    .hero-lead p {
      margin-bottom: 14px;
    }
    .hero-lead .hero-actions {
      line-height: 2.7;
    }
    .art-caption {
      top: 14px;
      bottom: auto;
      right: 16px;
      font-size: 0.52rem;
      background: #06291b90;
      padding: 4px 7px;
      border-radius: 3px;
    }
    .hero-article .hero-art {
      height: auto;
      aspect-ratio: 3;
    }
    .hero-article .hero-copy {
      padding: 0 21px 23px;
    }
    .hero-article .hero-art-shade {
      background: linear-gradient(0deg, #0a2a20, transparent 90%);
    }
    .hero-article h1 {
      font-size: 1.85rem;
    }
    .offer-strip {
      margin-top: 12px;
      padding: 14px;
      gap: 10px;
    }
    .offer-strip strong {
      font-size: 1rem;
    }
    .offer-strip div > span {
      font-size: 0.72rem;
      line-height: 1.6;
    }
    .offer-mark {
      width: 36px;
      height: 40px;
    }
    .offer-strip > a {
      margin-left: 46px;
      font-size: 0.78rem;
    }
    .category-section,
    .utility-section {
      margin-top: 30px;
    }
    .section-heading {
      gap: 8px;
      align-items: center;
      margin-bottom: 14px;
    }
    .section-heading h2 {
      font-size: 1.45rem;
    }
    .section-heading .text-link {
      max-width: 100px;
      line-height: 1.4;
      font-size: 0.7rem;
    }
    .section-heading .text-link .icon {
      width: 16px;
    }
    .category-grid {
      grid-template-columns: 1fr;
      gap: 9px;
    }
    .category-art {
      aspect-ratio: 1;
    }
    .category-art img {
      object-position: center;
    }
    .card-copy {
      padding: 16px;
      gap: 12px;
    }
    .card-copy h3 {
      line-height: 1.35;
      letter-spacing: -0.015em;
    }
    .card-copy p {
      font-size: 0.8rem;
    }
    .card-index {
      top: 7px;
      left: 7px;
      padding: 2px 6px;
      font-size: 0.58rem;
      display: none;
    }
    .utility-grid {
      gap: 10px;
    }
    .utility-card {
      padding: 17px 14px;
    }
    .utility-card h3 {
      font-size: 0.95rem;
    }
    .utility-icon {
      margin-bottom: 14px;
    }
    .utility-arrow {
      right: 14px;
      top: 18px;
    }
    .reading-section {
      margin-top: 30px;
      padding-top: 24px;
    }
    .toc nav {
      grid-template-columns: 1fr;
      max-height: 205px;
    }
    .toc nav a {
      font-size: 0.8rem;
      padding: 9px 10px;
    }
    .prose h2 {
      font-size: 1.4rem;
      margin-top: 36px;
    }
    .prose h3 {
      font-size: 1.1rem;
    }
    .prose table {
      font-size: 0.82rem;
    }
    .prose th,
    .prose td {
      padding: 12px;
    }
    .prose td {
      min-width: 150px;
    }
    .prose blockquote {
      padding: 17px 18px;
    }
    .footer {
      margin-top: 28px;
      padding-top: 28px;
    }
    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .footer-top > div {
      display: block;
    }
    .footer-top > div > p {
      margin-top: 15px;
    }
    .footer nav a {
      font-size: 0.8rem;
      padding: 7px 0;
    }
    .footer nav h2 {
      font-size: 0.85rem;
    }
    .footer-bottom {
      font-size: 0.7rem;
      line-height: 1.7;
    }
    .mobile-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 25;
      min-height: 64px;
      padding: 5px 8px calc(5px + env(safe-area-inset-bottom));
      background: #06231bef;
      border-top: 1px solid #365d44;
      backdrop-filter: blur(14px);
    }
    .mobile-bar a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      color: var(--muted);
      font-size: 0.65rem;
      min-height: 50px;
      border-radius: 6px;
    }
    .mobile-bar a[aria-current] {
      color: var(--green);
      background: #103a2850;
    }
    .mobile-bar .nav-tag {
      display: none;
    }
    .mobile-bar .icon {
      width: 21px;
      height: 21px;
    }
    .simple-page {
      padding: 18px 7px 30px;
    }
    .simple-page h1 {
      font-size: 2rem;
    }
    .breadcrumbs {
      font-size: 0.7rem;
      margin-bottom: 13px;
      gap: 7px;
    }
    .header .brand,
    .header .brand > span {
      min-width: 0;
    }
    .hero-home .hero-art {
      height: auto;
      aspect-ratio: 2.3;
    }
    .hero-home .hero-art img {
      object-fit: contain;
    }
    .category-card {
      display: grid;
      grid-template-columns: 115px minmax(0, 1fr);
    }
    .card-arrow {
      display: block;
    }
    .mobile-menu .nav-tag {
      color: var(--gold);
      border-color: #7b8252;
    }
    .footer .brand img {
      width: 169px;
    }
  }
  @media (max-width: 360px) {
    .brand > span {
      font-size: 0.87rem;
    }
    .brand img {
      width: 125px;
    }
    .brand small {
      font-size: 0.5rem;
    }
    .header {
      padding-inline: 10px;
      gap: 7px;
    }
    .header-actions .button-small {
      padding-inline: 9px;
    }
    .hero-copy,
    .hero-article .hero-copy {
      padding-inline: 16px;
    }
    .hero-home h1 {
      font-size: 1.9rem;
    }
    .category-card {
      grid-template-columns: 100px 1fr;
    }
    .card-copy h3 {
      font-size: 1rem;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
      transition: none !important;
      animation: none !important;
    }
  }
  @media print {
    body {
      background: #fff;
      color: #111;
      padding: 0;
    }
    .header,
    .sidebar,
    .article-aside,
    .mobile-bar,
    .footer,
    .category-section,
    .utility-section,
    .offer-strip,
    .hero-art,
    .skip-link {
      display: none;
    }
    .site-layout,
    .article-layout,
    .hero {
      display: block;
    }
    .main-column {
      padding: 0;
    }
    .hero {
      background: #fff;
      border: 0;
    }
    .hero-copy {
      padding: 0;
    }
    .prose,
    .hero-lead,
    .prose strong,
    .prose h2,
    .prose h3,
    .hero h1 {
      color: #111;
    }
    .prose a {
      color: #16482d;
    }
    .prose table,
    .prose td,
    .prose th {
      color: #111;
      background: #fff;
    }
    .reading-section {
      border: 0;
    }
    .table-scroll {
      overflow: visible;
    }
  }
}
