/* ── Blog article page ── */

.article-page {
  background: var(--cream);
  color: var(--dark);
}

.article-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 40px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.article-nav__logo-img {
  height: 44px;
  width: auto;
}

.article-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.article-nav__links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dark);
  transition: color 0.2s;
}

.article-nav__links a:hover,
.article-nav__links a.is-active {
  color: var(--green);
}

.article-nav__cta {
  padding: 10px 22px;
  background: var(--green);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: background 0.2s;
}

.article-nav__cta:hover {
  background: var(--green-hover);
}

.article-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.article-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
}

/* Hero */

.article-hero {
  position: relative;
  min-height: 52vh;
  min-height: 52dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 40px 56px;
  overflow: hidden;
}

.article-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 16, 8, 0.88) 0%, rgba(10, 16, 8, 0.35) 55%, rgba(10, 16, 8, 0.2) 100%);
}

.article-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.article-hero__brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 16px;
}

.article-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.article-hero__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
}

/* Month jump nav */

.month-jump {
  position: sticky;
  top: 72px;
  z-index: 90;
  padding: 14px 40px;
  background: rgba(249, 248, 244, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

.month-jump__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.month-jump__label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
}

.month-jump__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}

.month-jump__track::-webkit-scrollbar {
  display: none;
}

.month-jump__link {
  flex-shrink: 0;
  padding: 8px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.month-jump__link:hover,
.month-jump__link.is-active {
  border-color: var(--green);
  background: rgba(124, 174, 42, 0.08);
  color: var(--green);
}

/* Article body */

.article-body {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 40px 80px;
}

/* Intro block */

.guide-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 72px;
}

.guide-intro__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.guide-intro__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.guide-intro__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 18px;
  background: var(--green);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}

.guide-intro__content {
  padding: 8px 0;
}

.guide-intro__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 14px;
}

.guide-intro__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 20px;
}

.guide-intro__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 16px;
}

.guide-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.guide-intro__tag {
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}

/* Season bands */

.season-band {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px 0 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(124, 174, 42, 0.25);
}

.season-band--winter {
  border-bottom-color: rgba(100, 130, 160, 0.35);
}

.season-band--summer {
  border-bottom-color: rgba(200, 160, 60, 0.4);
}

.season-band--autumn {
  border-bottom-color: rgba(180, 110, 50, 0.35);
}

.season-band__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--green);
  font-size: 18px;
}

.season-band--winter .season-band__icon {
  color: #5a7a96;
}

.season-band--summer .season-band__icon {
  color: #c49a2e;
}

.season-band--autumn .season-band__icon {
  color: #b87333;
}

.season-band__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
}

.season-band__subtitle {
  font-size: 13px;
  color: var(--text);
  margin-top: 2px;
}

/* Month sections */

.month-section {
  margin-bottom: 48px;
  padding: 36px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.month-section:nth-of-type(even) .month-section__layout {
  direction: rtl;
}

.month-section:nth-of-type(even) .month-section__layout > * {
  direction: ltr;
}

.month-section__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.month-section__number {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
  color: var(--green);
  opacity: 0.35;
}

.month-section--winter .month-section__number {
  color: #5a7a96;
}

.month-section--summer .month-section__number {
  color: #c49a2e;
}

.month-section--autumn .month-section__number {
  color: #b87333;
}

.month-section__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--dark);
}

.month-section__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.month-section__figure {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.month-section__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.month-section__intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
}

/* Topic cards */

.topic-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.topic-card {
  padding: 18px 20px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.topic-card:hover {
  border-color: rgba(124, 174, 42, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.topic-card--wide {
  grid-column: span 2;
}

.topic-card__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.topic-card__text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text);
}

/* F.A Services tip */

.fas-tip {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(124, 174, 42, 0.1) 0%, rgba(124, 174, 42, 0.04) 100%);
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
}

.fas-tip__label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green);
  padding-top: 2px;
}

.fas-tip__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--dark);
  font-weight: 500;
}

/* Sources */

.article-sources {
  margin-top: 56px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
}

.article-sources__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.article-sources__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}

/* Article CTA */

.article-cta {
  margin-top: 48px;
  padding: 48px 40px;
  background: var(--dark-bg);
  border-radius: 20px;
  text-align: center;
}

.article-cta__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.article-cta__text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 24px;
}

.article-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--green);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: background 0.2s;
}

.article-cta__btn:hover {
  background: var(--green-hover);
}

/* Footer override on article page */

.article-page .footer {
  background: var(--dark-bg);
}

/* ── Responsive ── */

@media (max-width: 1100px) {
  .guide-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .guide-intro__image {
    aspect-ratio: 16 / 9;
  }

  .month-section__layout {
    grid-template-columns: 1fr;
  }

  .month-section:nth-of-type(even) .month-section__layout {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .article-nav {
    padding: 12px 20px;
  }

  .article-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .article-nav__links.is-open {
    display: flex;
  }

  .article-nav__cta {
    display: none;
  }

  .article-nav__toggle {
    display: flex;
  }

  .article-hero {
    padding: 0 24px 40px;
    min-height: 46vh;
  }

  .month-jump {
    top: 60px;
    padding: 12px 20px;
  }

  .month-jump__label {
    display: none;
  }

  .article-body {
    padding: 40px 20px 60px;
  }

  .month-section {
    padding: 24px 20px;
  }

  .topic-cards {
    grid-template-columns: 1fr;
  }

  .topic-card--wide {
    grid-column: span 1;
  }

  .article-cta {
    padding: 36px 24px;
  }
}
