/* Aventico 2026 — editorial outdoor system */
:root {
  --avt-ink: #12211b;
  --avt-forest: #173f32;
  --avt-moss: #4d705f;
  --avt-mist: #e8eee9;
  --avt-paper: #f5f2ea;
  --avt-sun: #f3c969;
  --avt-white: #fffdf8;
  --avt-line: rgba(18, 33, 27, .14);
  --avt-serif: Georgia, "Times New Roman", serif;
  --avt-radius-lg: 28px;
  --avt-radius-md: 18px;
  --avt-shadow: 0 24px 80px rgba(18, 33, 27, .13);
  --c-bg: var(--avt-paper);
  --c-surface: var(--avt-white);
  --c-text: var(--avt-ink);
  --c-muted: #5e6d65;
  --c-primary: var(--avt-forest);
  --c-primary-weak: rgba(23, 63, 50, .1);
  --c-accent: #b37326;
  --container: 1240px;
}

body {
  background: var(--avt-paper);
  color: var(--avt-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
.avt-footer__logo,
.avt-brand-wordmark {
  font-family: var(--avt-serif);
  letter-spacing: -.035em;
}

.site-header {
  background: rgba(255, 253, 248, .91);
  border-bottom: 1px solid var(--avt-line);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.navbar {
  min-height: 76px;
  padding: 10px 0;
  gap: 22px;
}

.logo {
  gap: 10px;
}

.logo:hover {
  transform: none;
}

.logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: none;
}

.avt-brand-wordmark {
  color: var(--avt-ink);
  display: grid;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.avt-brand-wordmark small {
  color: var(--avt-moss);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  margin-top: 5px;
  text-transform: uppercase;
}

.nav-list {
  gap: 0;
}

.nav-link {
  color: var(--avt-ink);
  font-size: .9rem;
  font-weight: 650;
  padding: 9px 11px;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  background: var(--avt-mist);
  box-shadow: none;
  color: var(--avt-forest);
  transform: none;
}

.avt-header-cta {
  background: var(--avt-forest);
  border-radius: 999px;
  color: var(--avt-white);
  font-size: .86rem;
  font-weight: 750;
  padding: 10px 17px;
  white-space: nowrap;
}

.avt-header-cta:hover {
  background: var(--avt-ink);
  color: #fff;
  text-decoration: none;
}

.avt-home {
  overflow: clip;
}

.avt-hero {
  align-items: center;
  background: var(--avt-ink);
  color: #fff;
  display: flex;
  min-height: min(800px, calc(100vh - 76px));
  overflow: hidden;
  position: relative;
}

.avt-hero__media,
.avt-hero__veil {
  inset: 0;
  position: absolute;
}

.avt-hero__media img {
  border-radius: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  width: 100%;
}

.avt-hero__veil {
  background:
    linear-gradient(90deg, rgba(8, 27, 22, .92) 0%, rgba(8, 27, 22, .68) 47%, rgba(8, 27, 22, .22) 100%),
    linear-gradient(0deg, rgba(8, 27, 22, .54) 0%, transparent 48%);
}

.avt-hero__inner {
  align-items: end;
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  padding-bottom: clamp(64px, 9vh, 108px);
  padding-top: clamp(72px, 12vh, 136px);
  position: relative;
  z-index: 1;
}

.avt-eyebrow {
  color: var(--avt-moss);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.avt-eyebrow--light {
  color: var(--avt-sun);
}

.avt-hero h1 {
  color: #fff;
  font-size: clamp(4rem, 9.7vw, 8.3rem);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .86;
  margin: 0;
  max-width: 900px;
  text-wrap: balance;
}

.avt-hero__lead {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.05rem, 1.8vw, 1.36rem);
  line-height: 1.58;
  margin: 34px 0 0;
  max-width: 670px;
}

.avt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.avt-button {
  align-items: center;
  background: var(--avt-forest);
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: .91rem;
  font-weight: 800;
  justify-content: center;
  padding: 13px 20px;
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.avt-button:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.avt-button--sun {
  background: var(--avt-sun);
  color: var(--avt-ink);
}

.avt-button--glass {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
}

.avt-button--outline-light {
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
}

.avt-hero__brief {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--avt-radius-lg);
  padding: 28px;
}

.avt-hero__brief-label {
  color: var(--avt-sun);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.avt-hero__brief > p:not(.avt-hero__brief-label) {
  font-family: var(--avt-serif);
  font-size: 1.45rem;
  line-height: 1.35;
}

.avt-hero__brief dl {
  border-top: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0 0;
  padding-top: 22px;
}

.avt-hero__brief dl div {
  display: grid;
}

.avt-hero__brief dt {
  color: #fff;
  font-family: var(--avt-serif);
  font-size: 2rem;
  line-height: 1;
}

.avt-hero__brief dd {
  color: rgba(255, 255, 255, .68);
  font-size: .76rem;
  margin: 7px 0 0;
}

.avt-proof-strip {
  background: var(--avt-white);
  border-bottom: 1px solid var(--avt-line);
}

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

.avt-proof-strip p {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 25px 34px;
}

.avt-proof-strip p + p {
  border-left: 1px solid var(--avt-line);
}

.avt-proof-strip strong {
  font-family: var(--avt-serif);
  font-size: 1.08rem;
}

.avt-proof-strip span {
  color: var(--c-muted);
  font-size: .78rem;
}

.avt-section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.avt-section-head {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  margin-bottom: 45px;
}

.avt-section-head h2,
.avt-method-preview h2,
.avt-newsletter h2 {
  color: var(--avt-ink);
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  font-weight: 500;
  line-height: .98;
  margin: 0;
  text-wrap: balance;
}

.avt-section-head > p {
  color: var(--c-muted);
  font-size: 1.05rem;
  margin: 0;
  max-width: 520px;
}

.avt-journey-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.avt-journey-card {
  background: var(--avt-white);
  border: 1px solid var(--avt-line);
  border-radius: var(--avt-radius-lg);
  display: flex;
  flex-direction: column;
  min-height: 370px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.avt-journey-card:hover {
  box-shadow: var(--avt-shadow);
  transform: translateY(-6px);
}

.avt-journey-card__number {
  color: rgba(23, 63, 50, .08);
  font-family: var(--avt-serif);
  font-size: 8rem;
  line-height: .8;
  position: absolute;
  right: 18px;
  top: 20px;
}

.avt-journey-card h3 {
  font-family: var(--avt-serif);
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 500;
  letter-spacing: -.045em;
  margin: 18px 0 10px;
  max-width: 260px;
  position: relative;
}

.avt-journey-card > p:not(.avt-eyebrow) {
  color: var(--c-muted);
  margin-bottom: 28px;
  position: relative;
}

.avt-journey-card > a {
  border-top: 1px solid var(--avt-line);
  color: var(--avt-forest);
  font-weight: 800;
  margin-top: auto;
  padding-top: 20px;
}

.avt-latest {
  background: var(--avt-white);
}

.avt-text-link {
  color: var(--avt-forest);
  font-weight: 800;
  justify-self: end;
}

.avt-story-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.avt-story-card {
  background: var(--avt-paper);
  border: 1px solid var(--avt-line);
  border-radius: var(--avt-radius-lg);
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
}

.avt-story-card--featured {
  grid-column: 1 / -1;
  grid-template-columns: 58% 42%;
}

.avt-story-card__image {
  background: var(--avt-mist);
  display: block;
  min-height: 240px;
  overflow: hidden;
}

.avt-story-card--featured .avt-story-card__image {
  min-height: 460px;
}

.avt-story-card__image img {
  border-radius: 0;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  width: 100%;
}

.avt-story-card:hover .avt-story-card__image img {
  transform: scale(1.03);
}

.avt-story-card__placeholder {
  align-items: center;
  color: var(--avt-moss);
  display: flex;
  height: 100%;
  justify-content: center;
}

.avt-story-card__body {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.avt-story-card--featured .avt-story-card__body {
  padding: clamp(34px, 5vw, 62px);
}

.avt-story-card__meta {
  color: var(--avt-moss);
  display: flex;
  flex-wrap: wrap;
  font-size: .7rem;
  font-weight: 800;
  gap: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.avt-story-card h3 {
  font-family: var(--avt-serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: 15px 0 12px;
}

.avt-story-card--featured h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.avt-story-card h3 a {
  color: var(--avt-ink);
}

.avt-story-card p {
  color: var(--c-muted);
  font-size: .92rem;
}

.avt-story-card__read {
  color: var(--avt-forest);
  font-size: .84rem;
  font-weight: 800;
  margin-top: auto;
  padding-top: 18px;
}

.avt-method-preview {
  background: var(--avt-forest);
  color: #fff;
}

.avt-method-preview__grid {
  display: grid;
  gap: clamp(50px, 9vw, 120px);
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
}

.avt-method-preview h2 {
  color: #fff;
}

.avt-method-preview__content > p {
  color: rgba(255, 255, 255, .78);
  font-size: 1.08rem;
}

.avt-method-preview__content ul {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  border-top: 1px solid rgba(255, 255, 255, .2);
  list-style: none;
  margin: 28px 0;
  padding: 10px 0;
}

.avt-method-preview__content li {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding: 13px 0 13px 26px;
  position: relative;
}

.avt-method-preview__content li:last-child { border-bottom: 0; }
.avt-method-preview__content li::before { color: var(--avt-sun); content: "✓"; left: 0; position: absolute; }

.avt-newsletter__card {
  align-items: center;
  background: var(--avt-sun);
  border-radius: 36px;
  display: grid;
  gap: 48px;
  grid-template-columns: 1.15fr .85fr;
  padding: clamp(38px, 6vw, 76px);
}

.avt-newsletter h2 {
  font-size: clamp(2.25rem, 4.4vw, 4rem);
}

.avt-newsletter__card > div:first-child > p:last-child {
  max-width: 620px;
}

.site-footer {
  background: var(--avt-ink);
  color: rgba(255, 255, 255, .72);
  padding: 78px 0 28px;
}

.avt-footer__top {
  display: grid;
  gap: 60px;
  grid-template-columns: 1.1fr .9fr;
  padding-bottom: 58px;
}

.avt-footer__brand p {
  max-width: 490px;
}

.avt-footer__logo {
  color: #fff;
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.avt-footer__logo:hover { color: var(--avt-sun); text-decoration: none; }

.avt-footer__nav {
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 1fr;
}

.avt-footer__nav > div { display: grid; gap: 9px; align-content: start; }
.avt-footer__nav h2 { color: var(--avt-sun); font-family: inherit; font-size: .7rem; letter-spacing: .13em; margin: 0 0 9px; text-transform: uppercase; }
.avt-footer__nav a { color: rgba(255, 255, 255, .8); font-size: .88rem; }

.avt-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  font-size: .72rem;
  gap: 30px;
  justify-content: space-between;
  padding-top: 24px;
}

.avt-footer__bottom p { margin: 0; }
.avt-footer__bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }
.avt-footer__bottom a,
.avt-cookie-link { color: rgba(255, 255, 255, .66); font: inherit; }
.avt-cookie-link { background: none; border: 0; cursor: pointer; padding: 0; }

/* Generic trust and information pages */
.avt-page-hero {
  background: var(--avt-forest);
  color: #fff;
  padding: clamp(72px, 10vw, 126px) 0;
}

.avt-page-hero h1 {
  color: #fff;
  font-size: clamp(3.3rem, 8vw, 7rem);
  font-weight: 500;
  line-height: .9;
  margin: 0;
  max-width: 920px;
}

.avt-page-hero p:last-child {
  color: rgba(255, 255, 255, .76);
  font-size: 1.15rem;
  max-width: 680px;
}

.avt-trust-page {
  padding: clamp(64px, 9vw, 112px) 0;
}

.avt-trust-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 48px 0;
}

.avt-trust-card {
  background: var(--avt-white);
  border: 1px solid var(--avt-line);
  border-radius: var(--avt-radius-lg);
  padding: 30px;
}

.avt-trust-card h2 { font-family: var(--avt-serif); font-size: 1.8rem; font-weight: 500; margin-top: 0; }
.avt-trust-card p { color: var(--c-muted); }

.avt-content-narrow {
  margin: 0 auto;
  max-width: 820px;
}

.avt-content-narrow h2 { font-family: var(--avt-serif); font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 500; margin-top: 54px; }

/* Guide reading experience */
.guide { background: var(--avt-paper); }
.guide__container { max-width: 1240px; }
.guide__header { padding-top: 26px; }
.guide__hero { border-radius: 32px; box-shadow: var(--avt-shadow); overflow: hidden; }
.guide__hero-image { border-radius: 0; }
.guide__header-content { max-width: 980px; }
.guide__title { color: var(--avt-ink); font-family: var(--avt-serif); font-size: clamp(2.8rem, 6vw, 5.6rem); font-weight: 500; letter-spacing: -.055em; line-height: .98; }
.guide__excerpt { color: var(--c-muted); font-size: 1.1rem; }
.guide__category-tag { background: var(--avt-mist); border-color: transparent; color: var(--avt-forest); }
.guide__layout { gap: clamp(28px, 5vw, 66px); }
.guide__body { background: var(--avt-white); border: 1px solid var(--avt-line); border-radius: 28px; padding: clamp(26px, 5vw, 58px); }
.guide__body h2 { color: var(--avt-ink); font-family: var(--avt-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; letter-spacing: -.035em; }
.guide__body h3 { color: var(--avt-ink); font-family: var(--avt-serif); font-weight: 500; }
.guide__body p, .guide__body li { color: #2f3c35; }
.guide__toc-wrapper { background: var(--avt-white); border: 1px solid var(--avt-line); border-radius: 22px; box-shadow: none; }

.avt-guide-byline {
  align-items: center;
  border-top: 1px solid var(--avt-line);
  display: flex;
  gap: 13px;
  margin-top: 26px;
  padding-top: 20px;
}

.avt-guide-byline__mark {
  align-items: center;
  background: var(--avt-forest);
  border-radius: 50%;
  color: var(--avt-sun);
  display: flex;
  flex: 0 0 42px;
  font-family: var(--avt-serif);
  font-size: 1.2rem;
  height: 42px;
  justify-content: center;
}

.avt-guide-byline p { color: var(--c-muted); font-size: .76rem; margin: 1px 0; }
.avt-guide-byline strong { color: var(--avt-ink); font-size: .9rem; }

.avt-guide-safety-note,
.avt-affiliate-notice {
  background: var(--avt-mist);
  border: 0;
  border-left: 4px solid var(--avt-forest);
  border-radius: 0 15px 15px 0;
  margin: 0 0 34px;
  padding: 18px 20px;
}

.avt-paid-link-label {
  color: var(--c-muted);
  font-size: .82em;
  font-weight: 700;
  white-space: nowrap;
}

.avt-affiliate-notice { background: #fff5d6; border-left-color: #b37326; }
.avt-guide-safety-note p,
.avt-affiliate-notice p { font-size: .86rem; margin: 4px 0 0; }

.avt-editorial-related,
.avt-editorial-sources {
  border-radius: 22px;
  margin: 42px 0 0;
  padding: clamp(22px, 4vw, 32px);
}

.avt-editorial-related {
  background: var(--avt-mist);
  border: 1px solid rgba(22, 83, 68, .14);
}

.avt-editorial-sources {
  background: #f8f6ef;
  border: 1px solid var(--avt-line);
}

.guide__body .avt-editorial-related h2,
.guide__body .avt-editorial-sources h2 {
  font-size: clamp(1.55rem, 4vw, 2rem);
  margin-top: 0;
}

.avt-editorial-related ul,
.avt-editorial-sources ul {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
  padding-left: 20px;
}

.avt-editorial-related a,
.avt-editorial-sources a {
  font-weight: 750;
}

.avt-editorial-sources__date {
  color: var(--c-muted);
  font-size: .78rem;
  margin-bottom: 0;
  margin-top: 18px;
}

/* Archives and activity hubs */
.avt-archive-hero {
  background: var(--avt-forest);
  color: #fff;
  overflow: hidden;
  padding: clamp(82px, 12vw, 150px) 0;
  position: relative;
}

.avt-archive-hero--activity.has-image::before {
  background-image: linear-gradient(90deg, rgba(8, 27, 22, .93), rgba(8, 27, 22, .48)), var(--avt-archive-image);
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
}

.avt-archive-hero .container { position: relative; z-index: 1; }
.avt-archive-hero h1 { color: #fff; font-family: var(--avt-serif); font-size: clamp(4rem, 10vw, 8rem); font-weight: 500; letter-spacing: -.06em; line-height: .88; margin: 0; text-wrap: balance; }
.avt-archive-hero__description { color: rgba(255, 255, 255, .78); font-size: 1.1rem; margin-top: 28px; max-width: 700px; }
.avt-archive-hero__description p { margin: 0; }
.avt-archive-hero__count { color: var(--avt-sun); font-size: .76rem; font-weight: 800; letter-spacing: .08em; margin-top: 24px; text-transform: uppercase; }
.avt-archive-breadcrumb { color: rgba(255, 255, 255, .6); display: flex; font-size: .74rem; gap: 8px; margin-bottom: 38px; }
.avt-archive-breadcrumb a { color: rgba(255, 255, 255, .82); }
.avt-archive-body { background: var(--avt-paper); padding: clamp(64px, 9vw, 110px) 0; }
.avt-archive-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0, 1fr)); }

.avt-archive-grid .card {
  background: var(--avt-white);
  border: 1px solid var(--avt-line);
  border-radius: 24px;
  box-shadow: none;
  overflow: hidden;
}

.avt-archive-grid .card-image-wrapper { aspect-ratio: 3 / 2; overflow: hidden; }
.avt-archive-grid .card-thumb { height: 100%; }
.avt-archive-grid .card-thumb img { border-radius: 0; height: 100%; object-fit: cover; width: 100%; }
.avt-archive-grid .card-body { padding: 24px; }
.avt-archive-grid .card-title { font-family: var(--avt-serif); font-size: 1.55rem; font-weight: 500; letter-spacing: -.03em; line-height: 1.15; }
.avt-archive-grid .card-title a { color: var(--avt-ink); }
.avt-archive-grid .card-excerpt { color: var(--c-muted); font-size: .86rem; }
.avt-archive-grid .card-footer { border-top-color: var(--avt-line); }
.avt-empty-state { background: var(--avt-white); border: 1px solid var(--avt-line); border-radius: 24px; padding: 46px; text-align: center; }

@media (max-width: 980px) {
  .avt-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Consent manager */
.avt-consent {
  background: var(--avt-white);
  border: 1px solid var(--avt-line);
  border-radius: 24px;
  bottom: 20px;
  box-shadow: var(--avt-shadow);
  color: var(--avt-ink);
  display: none;
  left: 20px;
  max-width: 520px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  padding: 24px;
  position: fixed;
  right: 20px;
  z-index: 10000;
}

.avt-consent.is-open { display: block; }
.avt-consent h2 { font-family: var(--avt-serif); font-size: 1.65rem; margin: 0 0 8px; }
.avt-consent p { color: var(--c-muted); font-size: .88rem; margin: 0; }
.avt-consent__actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.avt-consent button { border: 1px solid var(--avt-forest); border-radius: 999px; cursor: pointer; font-weight: 750; padding: 10px 15px; }
.avt-consent__accept { background: var(--avt-forest); color: #fff; }
.avt-consent__refuse { background: transparent; color: var(--avt-forest); }

@media (max-width: 1060px) {
  .navbar-nav,
  .avt-header-cta { display: none; }
  .mobile-toggle { display: block; }
  .avt-hero__inner { grid-template-columns: 1fr; }
  .avt-hero__brief { max-width: 520px; }
  .avt-journey-grid { grid-template-columns: 1fr 1fr; }
  .avt-journey-card:last-child { grid-column: 1 / -1; }
  .avt-story-card,
  .avt-story-card--featured { grid-template-columns: 1fr; }
  .avt-story-card--featured .avt-story-card__image { min-height: 390px; }
  .mobile-menu {
    background: var(--avt-white);
    border-color: var(--avt-line);
    border-radius: 0 0 18px 18px;
    max-height: calc(100dvh - 76px);
    top: 76px;
  }
  .mobile-nav-link { color: var(--avt-ink); }
  .mobile-nav-link:hover,
  .mobile-nav-link:focus-visible { background: var(--avt-mist); color: var(--avt-forest); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 34px, var(--container)); }
  .avt-brand-wordmark small { display: none; }
  .avt-hero { min-height: 720px; }
  .avt-hero__veil { background: linear-gradient(0deg, rgba(8, 27, 22, .94) 0%, rgba(8, 27, 22, .56) 72%, rgba(8, 27, 22, .34) 100%); }
  .avt-hero__inner { align-items: end; gap: 32px; padding-bottom: 50px; padding-top: 88px; }
  .avt-hero h1 { font-size: clamp(3.7rem, 19vw, 5.8rem); }
  .avt-hero__lead { font-size: 1rem; margin-top: 24px; }
  .avt-hero__brief { display: none; }
  .avt-button { width: 100%; }
  .avt-proof-strip__grid { grid-template-columns: 1fr; }
  .avt-proof-strip p { padding: 18px 0; }
  .avt-proof-strip p + p { border-left: 0; border-top: 1px solid var(--avt-line); }
  .avt-section-head,
  .avt-method-preview__grid,
  .avt-newsletter__card,
  .avt-footer__top { grid-template-columns: 1fr; }
  .avt-section-head { gap: 20px; }
  .avt-section-head h2,
  .avt-method-preview h2 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .avt-text-link { justify-self: start; }
  .avt-journey-grid,
  .avt-story-grid,
  .avt-trust-grid,
  .avt-archive-grid { grid-template-columns: 1fr; }
  .avt-journey-card:last-child { grid-column: auto; }
  .avt-journey-card { min-height: 330px; }
  .avt-story-card__image,
  .avt-story-card--featured .avt-story-card__image { min-height: 260px; }
  .avt-newsletter__card { border-radius: 24px; gap: 26px; }
  .avt-footer__nav { gap: 28px; }
  .avt-footer__bottom { align-items: flex-start; flex-direction: column; }
  .avt-consent { bottom: 10px; left: 10px; right: 10px; }
  .guide__container { padding-left: 17px; padding-right: 17px; }
  .guide__header { padding-top: 20px; }
  .guide__hero { border-radius: 20px; }
  .guide__layout { padding: 16px; }
  .guide__content { min-width: 0; padding: 0; }
  .guide__body { border-radius: 20px; padding: 26px 20px; }
  .guide__body a { overflow-wrap: anywhere; }
  .guide__sidebar { align-items: stretch; min-width: 0; width: 100%; }
  .guide__toc-wrapper { max-width: 100%; min-width: 0; width: 100%; }
}

@media (max-width: 380px) {
  .container,
  .guide__container { width: min(100% - 28px, var(--container)); padding-left: 0; padding-right: 0; }
  .avt-hero h1 { font-size: clamp(3.1rem, 17vw, 4.2rem); }
  .avt-page-hero h1,
  .avt-archive-hero h1 { font-size: clamp(3rem, 17vw, 4.4rem); }
  .guide__layout { margin-left: 0; margin-right: 0; padding: 12px; }
  .guide__body { padding: 24px 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
