@font-face {
  font-family: 'Inter';
  src: url('../../assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../../assets/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../../assets/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../../assets/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover {
  opacity: 0.75;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: #555;
  max-width: 560px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (scripting: none) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 48px;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  padding: 16px 48px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-logo:hover {
  opacity: 1;
}

.site-logo--dark {
  color: #1a1a1a;
}

.site-logo__icon {
  flex-shrink: 0;
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 4px;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 10;
}

.site-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
  padding: 4px 0;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  width: 100%;
}

.site-nav__link:hover {
  opacity: 1;
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 4px 0;
  transition: opacity 0.3s ease;
}

.site-nav__dropdown-btn:hover {
  opacity: 0.75;
}

.site-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  min-width: 240px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.site-nav__dropdown.is-open .site-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__dropdown-link {
  display: block;
  padding: 10px 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav__dropdown-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  opacity: 1;
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.site-header__cta:hover {
  opacity: 0.75;
}

.site-header__cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
}

.site-header--light .site-nav__link,
.site-header--light .site-nav__dropdown-btn,
.site-header--light .site-header__cta {
  color: #1a1a1a;
}

.site-header--light .site-logo {
  color: #1a1a1a;
}

.site-header--light .site-header__toggle span {
  background: #1a1a1a;
}

.site-header--light.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.site-header--light .site-nav__link::after {
  background: #1a1a1a;
}

.site-header--light .site-header__cta-dot {
  background: #1a1a1a;
}

@media (max-width: 1024px) {
  .site-header {
    padding: 20px 24px;
  }

  .site-header.is-scrolled {
    padding: 14px 24px;
  }

  .site-header__toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 85vw);
    height: 100vh;
    background: rgba(0, 0, 0, 0.96);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .site-nav__link {
    font-size: 14px;
  }

  .site-nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding: 8px 0 0 16px;
    display: none;
  }

  .site-nav__dropdown.is-open .site-nav__dropdown-menu {
    display: block;
  }
}

@media (max-width: 480px) {
  .site-header__cta {
    font-size: 11px;
  }
}

.hero-slider {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-slider__backgrounds {
  position: absolute;
  inset: 0;
}

.hero-slider__bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 7s ease;
  overflow: hidden;
}

.hero-slider__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider__bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
}

.hero-slider__content {
  position: relative;
  z-index: 2;
  padding: 0 48px 180px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.hero-slider__text {
  max-width: 680px;
  animation: heroFadeIn 1s ease 0.3s both;
}

.hero-slider__title {
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 24px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-slider__title.is-fading {
  opacity: 0;
  transform: translateY(12px);
}

.hero-slider__subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-slider__subtitle.is-fading {
  opacity: 0;
  transform: translateY(12px);
}

.hero-slider__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.4s ease;
}

.hero-slider__cta:hover {
  background: #222222;
  transform: translateY(-2px);
  opacity: 1;
}

.hero-slider__cta.is-fading {
  opacity: 0;
  transform: translateY(8px);
}

.hero-slider__cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
}

.hero-slider__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 48px 40px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.hero-slider__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  flex: 1;
  max-width: calc(100% - 120px);
}

.hero-slider__tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 16px 24px 0 0;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.4s ease;
  cursor: pointer;
  background: none;
  border: none;
}

.hero-slider__tab.is-active {
  color: #ffffff;
}

.hero-slider__tab-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.hero-slider__tab-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

.hero-slider__tab-line {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  margin-top: 16px;
  transition: height 0.4s ease, background 0.4s ease;
}

.hero-slider__tab.is-active .hero-slider__tab-line {
  height: 4px;
  background: #ffffff;
}

.hero-slider__tab:hover {
  color: rgba(255, 255, 255, 0.85);
}

.hero-slider__arrows {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  padding-bottom: 8px;
}

.hero-slider__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: scale(1.05);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-slider__content {
    padding: 0 24px 220px;
  }

  .hero-slider__bottom {
    padding: 0 24px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .hero-slider__tabs {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-slider__tab:not(.is-active) {
    display: none;
  }

  .hero-slider__arrows {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .hero-slider__cta {
    padding: 14px 24px;
    font-size: 11px;
  }

  .hero-slider__arrow {
    width: 42px;
    height: 42px;
  }
}

.scroll-overlay-stack {
  position: relative;
}

.scroll-overlay-stack .hero-slider {
  position: sticky;
  top: 0;
  z-index: 1;
}

.seo-overlay {
  position: relative;
  z-index: 2;
  background: #ffffff;
  min-height: 100vh;
  padding: 100px 48px 120px;
  box-shadow: 0 -40px 80px rgba(0, 0, 0, 0.12);
  --overlay-progress: 0;
}

.seo-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.seo-overlay__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.seo-overlay__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 72px;
}

.seo-overlay__heading {
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #0a0a0a;
  max-width: 640px;
  opacity: calc(0.15 + var(--overlay-progress) * 0.85);
  transform: translateY(calc((1 - var(--overlay-progress)) * 60px));
  transition: opacity 0.1s linear, transform 0.1s linear;
}

.seo-overlay__image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  opacity: calc(0.2 + var(--overlay-progress) * 0.8);
  transform: translateY(calc((1 - var(--overlay-progress)) * 40px));
  transition: opacity 0.1s linear, transform 0.1s linear;
}

.seo-overlay__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(calc(var(--parallax-y, 0) * 1px));
  will-change: transform;
}

.seo-overlay__bottom {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.seo-overlay__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a0a0a;
  padding-top: 4px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.seo-overlay.is-revealed .seo-overlay__label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.seo-overlay__column {
  font-size: 15px;
  line-height: 1.75;
  color: #444444;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.seo-overlay.is-revealed .seo-overlay__column:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.seo-overlay.is-revealed .seo-overlay__column:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

@media (max-width: 1024px) {
  .seo-overlay {
    padding: 80px 24px 100px;
  }

  .seo-overlay__top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .seo-overlay__bottom {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .seo-overlay__heading {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .seo-overlay {
    padding: 60px 24px 80px;
    box-shadow: 0 -24px 48px rgba(0, 0, 0, 0.1);
  }
}

.drop-text-section {
  background: #ffffff;
  padding: 120px 48px 0;
  overflow: hidden;
}

.drop-text-section__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.drop-text-section__heading {
  margin-bottom: 64px;
}

.drop-text-section__line-wrap {
  overflow: hidden;
  line-height: 1;
}

.drop-text-section__line {
  display: block;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.drop-text-section.is-visible .drop-text-section__line-wrap:nth-child(1) .drop-text-section__line {
  transform: translateY(0);
  transition-delay: 0.05s;
}

.drop-text-section__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.drop-text-section__cta-wrap {
  overflow: hidden;
  flex-shrink: 0;
}

.drop-text-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 50px;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
  will-change: transform;
}

.drop-text-section.is-visible .drop-text-section__cta {
  transform: translateY(0);
  transition-delay: 0.2s;
}

.drop-text-section__cta:hover {
  background: #222222;
  opacity: 1;
}

.drop-text-section__cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.drop-text-section__cta:hover .drop-text-section__cta-dot {
  transform: scale(1.3);
}

.drop-text-section__line-wrap--offset {
  margin-left: auto;
  text-align: right;
}

.drop-text-section.is-visible .drop-text-section__line-wrap--offset .drop-text-section__line {
  transform: translateY(0);
  transition-delay: 0.35s;
}

.drop-text-section__image-wrap {
  overflow: hidden;
  margin: 0 -48px;
  max-width: none;
}

.drop-text-section__image-inner {
  transform: translateY(100%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.drop-text-section.is-visible .drop-text-section__image-inner {
  transform: translateY(0);
  transition-delay: 0.5s;
}

.drop-text-section__image-inner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .drop-text-section {
    padding: 80px 24px 0;
  }

  .drop-text-section__image-wrap {
    margin: 0 -24px;
  }

  .drop-text-section__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .drop-text-section__line-wrap--offset {
    margin-left: 0;
    text-align: left;
    padding-left: 48px;
  }
}

@media (max-width: 640px) {
  .drop-text-section__line-wrap--offset {
    padding-left: 24px;
  }

  .drop-text-section__heading {
    margin-bottom: 40px;
  }
}

.articles-list {
  background: #ffffff;
  padding: 100px 48px 120px;
}

.articles-list__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.articles-list__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 48px;
}

.articles-list__grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 64px;
  align-items: stretch;
}

.articles-list__image {
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.articles-list.is-visible .articles-list__image {
  opacity: 1;
  transform: translateY(0);
}

.articles-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 520px;
}

.articles-list__content {
  display: flex;
  flex-direction: column;
}

.articles-list__items {
  flex: 1;
}

.articles-list__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.articles-list.is-visible .articles-list__item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.articles-list.is-visible .articles-list__item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.articles-list.is-visible .articles-list__item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.articles-list.is-visible .articles-list__item:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.articles-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 12px;
  margin: 0 -12px;
  border-radius: 2px;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.articles-list__link:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.03);
}

.articles-list__item:hover {
  background: transparent;
}

.articles-list__text {
  flex: 1;
}

.articles-list__title {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #0a0a0a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.articles-list__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  max-width: 520px;
}

.articles-list__arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #0a0a0a;
  transition: transform 0.3s ease;
}

.articles-list__link:hover .articles-list__arrow {
  transform: translateX(6px);
}

.articles-list__footer {
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.articles-list.is-visible .articles-list__footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.articles-list__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.articles-list__cta:hover {
  background: #222222;
  transform: translateY(-2px);
  opacity: 1;
}

.articles-list__cta-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.articles-list__cta:hover .articles-list__cta-icon {
  border-color: #ffffff;
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .articles-list {
    padding: 80px 24px 100px;
  }

  .articles-list__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .articles-list__image img {
    min-height: 360px;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 640px) {
  .articles-list__link {
    padding: 22px 0;
    gap: 16px;
  }

  .articles-list__title {
    font-size: 14px;
  }

  .articles-list__excerpt {
    font-size: 13px;
  }
}

.articles-master {
  background: #f4f4f4;
  padding: 80px 48px;
  border-bottom: 1px solid #e8e8e8;
}

.articles-master__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.articles-master__heading {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  max-width: 720px;
}

.articles-master__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: stretch;
}

.articles-master__feature {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.3s ease;
}

.articles-master.is-visible .articles-master__feature {
  opacity: 1;
  transform: translateY(0);
}

.articles-master__feature:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.articles-master__feature-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.articles-master__feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.articles-master__feature:hover .articles-master__feature-media img {
  transform: scale(1.04);
}

.articles-master__feature-body {
  padding: 32px 36px 36px;
}

.articles-master__feature-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 14px;
}

.articles-master__feature-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.articles-master__feature-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}

.articles-master__feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0a;
}

.articles-master__feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0a0a0a;
}

.articles-master__nav {
  background: #ffffff;
  border-radius: 4px;
  padding: 32px 28px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.articles-master.is-visible .articles-master__nav {
  opacity: 1;
  transform: translateY(0);
}

.articles-master__nav-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #0a0a0a;
}

.articles-master__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.articles-master__nav-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.articles-master__nav-link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  padding: 18px 12px;
  margin: 0 -12px;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.articles-master__nav-link:hover {
  background: rgba(0, 0, 0, 0.04);
}

.articles-master__nav-category {
  grid-column: 1;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
}

.articles-master__nav-title {
  grid-column: 1;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #0a0a0a;
}

.articles-master__nav-badge {
  grid-column: 1;
  display: inline-block;
  width: fit-content;
  margin-top: 4px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #0a0a0a;
  color: #ffffff;
  border-radius: 50px;
}

.articles-master__nav-arrow {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  color: #0a0a0a;
  transition: transform 0.3s ease;
}

.articles-master__nav-link:hover .articles-master__nav-arrow {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .articles-master {
    padding: 60px 24px;
  }

  .articles-master__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .articles-master__feature-body {
    padding: 24px;
  }

  .articles-master__nav {
    padding: 24px 20px;
  }
}

@media (max-width: 640px) {
  .articles-master__nav-title {
    font-size: 12px;
  }
}

.articles-section {
  padding: 80px 48px 100px;
  max-width: 1440px;
  margin: 0 auto;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.article-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.article-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.article-card__link {
  display: block;
  group: hover;
}

.article-card__link:hover {
  opacity: 1;
}

.article-card__image {
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
  aspect-ratio: 3 / 2;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card__link:hover .article-card__image img {
  transform: scale(1.06);
}

.article-card__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}

.article-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.article-card__link:hover .article-card__title {
  color: #555;
}

.article-card__excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}

.article-card__date {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .articles-section {
    padding: 80px 24px;
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 48px 40px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  max-width: 1440px;
  margin: 0 auto 60px;
}

.site-footer__desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__col h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.site-footer__links a:hover {
  color: #ffffff;
  opacity: 1;
}

.site-footer__contact p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__contact a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__contact a:hover {
  color: #ffffff;
  opacity: 1;
}

.site-footer__disclaimer {
  max-width: 1440px;
  margin: 0 auto 48px;
}

.site-footer__disclaimer-inner {
  padding: 32px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.site-footer__disclaimer-lead {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
  max-width: 900px;
}

.site-footer__disclaimer-lead strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.site-footer__disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.site-footer__disclaimer-item p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__disclaimer-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.site-footer__disclaimer-alert {
  padding: 20px 24px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: rgba(255, 180, 50, 0.06);
  border: 1px solid rgba(255, 180, 50, 0.15);
}

.site-footer__disclaimer-alert-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 200, 100, 0.85);
  margin-bottom: 10px;
}

.site-footer__disclaimer-alert p {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__disclaimer-alert strong {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__disclaimer-meta {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__disclaimer-meta p {
  font-size: 11px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 6px;
}

.site-footer__disclaimer-meta p:last-child {
  margin-bottom: 0;
}

.site-footer__disclaimer-meta strong {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.site-footer__legal {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer__legal-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.site-footer__legal-links a:hover {
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
}

.site-footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 60px 24px 32px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .site-footer__disclaimer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer__disclaimer-inner {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 48px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-banner__title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.cookie-banner__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 640px;
}

.cookie-banner__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__link:hover {
  color: #ffffff;
  opacity: 1;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 50px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.cookie-banner__btn--accept {
  background: #ffffff;
  color: #000000;
}

.cookie-banner__btn--accept:hover {
  background: #e8e8e8;
  transform: translateY(-1px);
}

.cookie-banner__btn--reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-banner__btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.cookie-banner__btn--settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 12px 16px;
}

.cookie-settings {
  max-width: 1440px;
  margin: 20px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-settings h3 {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 16px;
}

.cookie-settings__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  cursor: pointer;
}

.cookie-settings__item input {
  accent-color: #ffffff;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px 24px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
    text-align: center;
    min-width: 120px;
  }
}

.page-hero {
  position: relative;
  height: clamp(360px, 48vh, 520px);
  display: flex;
  align-items: flex-end;
  padding: 120px 48px 56px;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.65));
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.page-hero__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.page-hero__title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 800px;
}

.page-hero__meta {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}

.page-content--wide {
  max-width: 1440px;
  padding: 80px 48px;
}

.page-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 48px 0 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.page-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 16px;
}

.page-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
  margin: 0 0 20px 24px;
  color: #444;
}

.page-content li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}

.page-content ol li {
  list-style: decimal;
}

.page-content img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  margin: 32px 0;
}

.page-content blockquote {
  padding: 16px 24px;
  margin: 32px 0;
  background: #f8f8f8;
  border-radius: 4px;
  font-style: italic;
  color: #555;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-grid__image img {
  border-radius: 4px;
  width: 100%;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #eee;
}

.about-stat__num {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-stat__label {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info__item {
  margin-bottom: 28px;
}

.contact-info__item h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.contact-info__item p,
.contact-info__item a {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.contact-form__group input,
.contact-form__group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  outline: none;
  border-color: #000;
}

.contact-form__group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form__submit:hover {
  background: #222;
  transform: translateY(-2px);
}

.contact-form__submit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 60px;
  align-items: start;
}

.legal-layout .legal-content {
  max-width: none;
  margin: 0;
  padding: 0;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
}

.legal-sidebar__nav {
  display: flex;
  flex-direction: column;
}

.legal-sidebar__nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.legal-sidebar__nav a:hover {
  color: #000;
}

.legal-sidebar__nav a.is-active {
  color: #000;
  font-weight: 600;
}

.legal-sidebar__contact {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #eee;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.legal-sidebar__contact p {
  margin-bottom: 8px;
}

.legal-sidebar__contact a {
  color: #333;
}

.legal-sidebar__contact a:hover {
  color: #000;
}

.legal-company {
  padding: 20px 24px;
  background: #f8f8f8;
  border-radius: 4px;
  margin: 24px 0;
}

.legal-company p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 8px;
}

.legal-company p:last-child {
  margin-bottom: 0;
}

.legal-content h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.legal-content .legal-updated {
  font-size: 14px;
  color: #888;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 16px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 24px;
}

.legal-content li {
  list-style: disc;
}

@media (max-width: 1024px) {
  .page-hero {
    height: clamp(320px, 42vh, 440px);
    padding: 110px 24px 44px;
  }

  .page-content--wide {
    padding: 60px 24px;
  }

  .about-grid,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-sidebar {
    position: static;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.article-tip {
  background: #f4f8f4;
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 6px;
}

.article-tip__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2d6a4f;
  margin-bottom: 8px;
}

.article-tip p {
  margin: 0;
  color: #3a4a3a;
}

.article-warning {
  background: #fff8f0;
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 6px;
}

.article-warning__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c45d3e;
  margin-bottom: 8px;
}

.article-warning p {
  margin: 0;
  color: #5a4035;
}

.article-pullquote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.45;
  color: #1a1a1a;
  text-align: center;
  padding: 40px 24px;
  margin: 40px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.article-pullquote::before {
  content: '\201C';
  display: block;
  font-size: 48px;
  line-height: 1;
  color: #ccc;
  margin-bottom: 8px;
}

.article-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.article-stat {
  background: #0a0a0a;
  color: #fff;
  padding: 24px 16px;
  text-align: center;
  border-radius: 4px;
}

.article-stat__num {
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.article-stat__text {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.article-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.article-fact {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 4px;
}

.article-fact__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: #0a0a0a;
}

.article-fact p {
  font-size: 14px;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.article-steps {
  counter-reset: step;
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.article-steps li {
  counter-increment: step;
  position: relative;
  padding: 20px 20px 20px 64px;
  margin-bottom: 12px;
  background: #fafafa;
  border-radius: 4px;
  list-style: none;
}

.article-steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  background: #0a0a0a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.article-checklist {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.article-checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  list-style: none;
  border-bottom: 1px solid #eee;
}

.article-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  border: 2px solid #2d6a4f;
  border-radius: 3px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
}

.article-table th,
.article-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
}

.article-table th {
  background: #0a0a0a;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-table tr:hover td {
  background: #fafafa;
}

.article-highlight {
  background: linear-gradient(135deg, #1a3d32 0%, #2d5a4a 100%);
  color: #fff;
  padding: 32px;
  border-radius: 6px;
  margin: 36px 0;
}

.article-highlight h3 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 18px;
}

.article-highlight p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.articles-category {
  margin-bottom: 64px;
}

.articles-category__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #0a0a0a;
}

.articles-category__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.articles-category__count {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.08em;
}

.articles-category__desc {
  font-size: 15px;
  color: #666;
  margin: -16px 0 28px;
  max-width: 600px;
}

.article-related {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #e8e8e8;
}

.article-related__heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 28px;
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.article-related__card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.article-related__card:hover {
  opacity: 0.85;
}

.article-related__image {
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 14px;
  aspect-ratio: 3 / 2;
}

.article-related__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-related__card:hover .article-related__image img {
  transform: scale(1.04);
}

.article-related__category {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.article-related__title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .article-stats {
    grid-template-columns: 1fr;
  }

  .article-facts {
    grid-template-columns: 1fr;
  }

  .article-table {
    font-size: 13px;
  }

  .article-table th,
  .article-table td {
    padding: 10px 12px;
  }

  .article-related__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
