/* Start custom CSS */:root {
  --htk-ink: #26342f;
  --htk-ink-soft: #5f6d67;
  --htk-forest: #315f50;
  --htk-forest-dark: #23483d;
  --htk-sage: #dfe9df;
  --htk-sage-pale: #f2f6f1;
  --htk-cream: #fbf8f2;
  --htk-paper: #fffefb;
  --htk-lavender: #725792;
  --htk-line: rgba(38, 52, 47, 0.13);
  --htk-shadow: 0 20px 55px rgba(39, 58, 50, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--htk-paper);
}

.htk-landing {
  min-width: 0;
  overflow: hidden;
  color: var(--htk-ink);
  background: var(--htk-paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.htk-landing img {
  display: block;
  max-width: 100%;
}

.htk-landing a {
  color: inherit;
  text-decoration: none;
}

.htk-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.htk-hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  display: grid;
  align-items: center;
  padding: 54px 0 70px;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.8) 0 9%, transparent 32%),
    linear-gradient(120deg, #e8efe5 0%, #f5f1e9 58%, #e2ece7 100%);
}

.htk-hero::before,
.htk-hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.htk-hero::before {
  top: -180px;
  right: -120px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(49, 95, 80, 0.15);
  box-shadow:
    0 0 0 54px rgba(255, 255, 255, 0.18),
    0 0 0 110px rgba(49, 95, 80, 0.035);
}

.htk-hero::after {
  bottom: -140px;
  left: -95px;
  width: 330px;
  height: 330px;
  background: rgba(114, 87, 146, 0.08);
  filter: blur(3px);
}

.htk-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
}

.htk-hero__content,
.htk-hero__guide {
  min-width: 0;
}

.htk-brand {
  display: inline-block;
  width: 176px;
  margin-bottom: 40px;
}

.htk-brand img {
  width: 100%;
  height: auto;
}

.htk-eyebrow,
.htk-kicker {
  margin: 0 0 14px;
  color: var(--htk-forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.htk-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.55rem, 5.1vw, 4.65rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.99;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.htk-hero__lead {
  max-width: 680px;
  margin: 27px 0 0;
  color: var(--htk-ink-soft);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}

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

.htk-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.htk-button:focus-visible,
.htk-feature-card > a:focus-visible,
.htk-article-card > a:focus-visible,
.htk-brand:focus-visible {
  outline: 3px solid rgba(49, 95, 80, 0.35);
  outline-offset: 4px;
}

.htk-button--primary {
  color: #fff !important;
  background: var(--htk-forest);
}

.htk-button--primary:hover {
  background: var(--htk-forest-dark);
}

.htk-button--ghost {
  border-color: rgba(38, 52, 47, 0.22);
  background: rgba(255, 255, 255, 0.42);
}

.htk-button--ghost:hover {
  border-color: rgba(38, 52, 47, 0.4);
  background: rgba(255, 255, 255, 0.7);
}

.htk-hero__guide {
  display: grid;
  gap: 18px;
}

.htk-guide-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 150px;
  padding: 27px 28px;
  border: 1px solid rgba(38, 52, 47, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 44px rgba(39, 58, 50, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.htk-guide-card--featured {
  margin-right: 36px;
  color: #fff;
  background: var(--htk-forest);
  transform: rotate(-1.2deg);
}

.htk-guide-card__number {
  color: rgba(49, 95, 80, 0.32);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.htk-guide-card--featured .htk-guide-card__number {
  color: rgba(255, 255, 255, 0.45);
}

.htk-guide-card__label {
  display: block;
  margin-bottom: 7px;
  color: var(--htk-forest);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.htk-guide-card--featured .htk-guide-card__label {
  color: rgba(255, 255, 255, 0.68);
}

.htk-guide-card strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.45;
}

.htk-section {
  padding: clamp(76px, 9vw, 120px) 0;
}

.htk-section--featured {
  background: var(--htk-paper);
}

.htk-section--archive {
  background: var(--htk-sage-pale);
}

.htk-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
  gap: 55px;
  align-items: end;
  margin-bottom: 42px;
}

.htk-section-heading > * {
  min-width: 0;
}

.htk-section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.htk-section-heading > p {
  margin: 0 0 4px;
  color: var(--htk-ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.htk-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.htk-feature-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--htk-line);
  border-radius: 26px;
  background: var(--htk-paper);
  box-shadow: var(--htk-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.htk-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 68px rgba(39, 58, 50, 0.15);
}

.htk-feature-card > a,
.htk-article-card > a {
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
}

.htk-feature-card__image {
  position: relative;
  aspect-ratio: 16 / 8.2;
  min-height: 250px;
  overflow: hidden;
  background: var(--htk-sage);
}

.htk-feature-card__image::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(to top, rgba(19, 31, 27, 0.18), transparent);
  content: "";
  pointer-events: none;
}

.htk-feature-card__image img,
.htk-article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.htk-feature-card:hover .htk-feature-card__image img,
.htk-article-card:hover .htk-article-card__image img {
  transform: scale(1.035);
}

.htk-feature-card__body {
  display: flex;
  min-height: 310px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 4vw, 39px);
}

.htk-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--htk-forest);
  background: var(--htk-sage);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.htk-feature-card--lavender .htk-pill {
  color: var(--htk-lavender);
  background: #eee8f5;
}

.htk-feature-card h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.13;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.htk-feature-card p {
  margin: 20px 0 28px;
  color: var(--htk-ink-soft);
  line-height: 1.72;
}

.htk-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--htk-forest);
  font-size: 0.9rem;
  font-weight: 800;
}

.htk-feature-card--lavender .htk-text-link {
  color: var(--htk-lavender);
}

.htk-text-link span,
.htk-card-read span {
  font-size: 1.22em;
  transition: transform 180ms ease;
}

.htk-feature-card:hover .htk-text-link span,
.htk-article-card:hover .htk-card-read span {
  transform: translateX(4px);
}

.htk-section-heading--archive {
  margin-bottom: 28px;
}

.htk-format-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 38px;
  padding: 17px 20px;
  border: 1px solid rgba(49, 95, 80, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.htk-format-note__icon {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--htk-forest);
  font-size: 0.78rem;
  font-weight: 800;
  font-style: normal;
}

.htk-format-note p {
  margin: 0;
  color: var(--htk-ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.htk-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.htk-article-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 52, 47, 0.1);
  border-radius: 18px;
  background: var(--htk-paper);
  box-shadow: 0 10px 30px rgba(39, 58, 50, 0.055);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.htk-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(39, 58, 50, 0.11);
}

.htk-article-card__image {
  aspect-ratio: 16 / 9;
  min-height: 170px;
  overflow: hidden;
  background: var(--htk-sage);
}

.htk-article-card__body {
  display: flex;
  min-height: 270px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.htk-card-label {
  margin-bottom: 12px;
  color: var(--htk-forest);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.htk-article-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.htk-article-card p {
  margin: 14px 0 23px;
  color: var(--htk-ink-soft);
  font-size: 0.88rem;
  line-height: 1.62;
}

.htk-card-read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--htk-forest);
  font-size: 0.82rem;
  font-weight: 800;
}

.htk-archive-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 31px 34px;
  border-radius: 20px;
  color: #fff;
  background: var(--htk-forest);
}

.htk-archive-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.htk-button--dark {
  flex: 0 0 auto;
  color: var(--htk-forest-dark) !important;
  background: #fff;
}

.htk-button--dark:hover {
  background: var(--htk-cream);
}

@media (max-width: 980px) {
  .htk-hero {
    min-height: auto;
  }

  .htk-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .htk-hero__guide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .htk-guide-card--featured {
    margin-right: 0;
  }

  .htk-section-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: start;
  }

  .htk-section-heading > p {
    max-width: 700px;
  }

  .htk-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .htk-shell {
    width: min(100% - 32px, 1180px);
  }

  .htk-hero {
    padding: 32px 0 54px;
  }

  .htk-brand {
    width: 150px;
    margin-bottom: 34px;
  }

  .htk-hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    letter-spacing: -0.048em;
    line-height: 1.02;
  }

  .htk-hero__lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .htk-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .htk-button {
    width: 100%;
  }

  .htk-hero__guide,
  .htk-feature-grid,
  .htk-article-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .htk-guide-card {
    min-height: 126px;
  }

  .htk-feature-card__image {
    min-height: 210px;
  }

  .htk-feature-card__body {
    min-height: 0;
  }

  .htk-archive-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 27px 24px;
  }
}

@media (max-width: 420px) {
  .htk-shell {
    width: min(100% - 24px, 1180px);
  }

  .htk-hero h1 {
    font-size: clamp(2rem, 10.5vw, 2.7rem);
  }

  .htk-guide-card {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 19px;
  }

  .htk-feature-card,
  .htk-article-card {
    border-radius: 16px;
  }

  .htk-feature-card__image {
    min-height: 180px;
  }

  .htk-article-card__image {
    min-height: 155px;
  }
}

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

  .htk-landing *,
  .htk-landing *::before,
  .htk-landing *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}/* End custom CSS */