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

.article-page.has-site-notice {
  padding-top: var(--site-notice-height, 54px);
}

.article-header {
  position: sticky;
  z-index: 40;
  top: 0;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px max(18px, calc((100vw - 1160px) / 2));
  color: var(--green-dark);
  background: rgba(255, 251, 243, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.article-page.has-site-notice .article-header {
  top: var(--site-notice-height, 54px);
}

.article-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  line-height: 1.05;
}

.article-brand img {
  border-radius: 50%;
  background: var(--cream);
}

.article-header nav,
.article-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 22px;
}

.article-header nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 150ms ease-out;
}

.article-header nav a:hover {
  color: var(--orange-dark);
}

.article {
  padding: clamp(56px, 7vw, 92px) 0 0;
}

.article-intro,
.article-layout {
  width: min(1040px, calc(100% - 36px));
  margin-inline: auto;
}

.article-intro {
  margin-bottom: clamp(42px, 6vw, 70px);
  text-align: left;
}

.article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 7px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.82rem;
}

.article-breadcrumbs a {
  text-decoration: underline;
  text-decoration-color: rgba(54, 54, 57, 0.3);
  text-underline-offset: 3px;
}

.article-label,
.article-aside-label {
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-intro h1 {
  max-width: 820px;
  margin: 0 0 24px;
  font-size: clamp(3rem, 5.8vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-shadow: none;
}

.article-lead {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-family: var(--soft-serif);
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  line-height: 1.45;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(220px, 260px);
  gap: clamp(42px, 7vw, 78px);
  align-items: start;
}

.article-content {
  min-width: 0;
}

.article-image {
  margin: 0 0 clamp(50px, 7vw, 76px);
}

.article-image img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--warm-shadow);
}

.article-image figcaption {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.82rem;
}

.article-section {
  padding-bottom: clamp(42px, 6vw, 62px);
}

.article-section h2,
.article-faq h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.article-section p,
.article-section li,
.article-faq p {
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.72;
}

.article-section p {
  margin-bottom: 18px;
}

.article-section ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.article-section li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-block: 1px solid var(--line);
  margin-bottom: -1px;
}

.article-section li::before {
  content: "•";
  position: absolute;
  top: 11px;
  left: 7px;
  color: var(--orange-dark);
  font-size: 1.2rem;
}

.article-note {
  margin: 2px 0 clamp(50px, 7vw, 72px);
  padding: clamp(24px, 4vw, 34px);
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--paper);
}

.article-note h2 {
  margin-bottom: 10px;
  font-size: 1.65rem;
  line-height: 1.12;
}

.article-note p {
  margin: 0;
  font-size: 1rem;
}

.article-faq {
  padding-bottom: clamp(52px, 7vw, 76px);
}

.article-faq details {
  border-top: 1px solid var(--line);
}

.article-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.article-faq summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  color: var(--green-dark);
  font-weight: 800;
  cursor: pointer;
}

.article-faq summary::after {
  content: "+";
  color: var(--orange-dark);
  font-size: 1.3rem;
  font-weight: 400;
}

.article-faq details[open] summary::after {
  content: "−";
}

.article-faq details p {
  max-width: 64ch;
  padding: 0 0 20px;
  margin: 0;
}

.article-aside {
  position: sticky;
  top: 106px;
}

.article-page.has-site-notice .article-aside {
  top: calc(var(--site-notice-height, 54px) + 96px);
}

.article-aside > div {
  padding: 24px;
  color: var(--cream);
  border-radius: 8px;
  background: var(--green-dark);
}

.article-aside-label {
  color: var(--yellow);
}

.article-aside h2 {
  margin-bottom: 18px;
  font-size: 1.8rem;
  line-height: 1.08;
}

.article-aside p {
  margin-bottom: 18px;
  color: rgba(255, 251, 243, 0.78);
}

.article-aside .button {
  width: 100%;
  margin-top: 4px;
}

.article-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--cream);
  font-weight: 800;
}

.article-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  padding: 34px max(18px, calc((100vw - 1160px) / 2));
  color: var(--cream);
  background: var(--ink);
}

.article-footer > div {
  max-width: 340px;
}

.article-footer p {
  margin: 14px 0 0;
  color: rgba(255, 251, 243, 0.72);
  font-size: 0.9rem;
}

.article-footer nav {
  max-width: 620px;
}

.article-footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 251, 243, 0.78);
  font-size: 0.9rem;
}

.article-footer nav a:hover {
  color: var(--cream);
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 18px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(32, 61, 53, 0.96), rgba(35, 63, 95, 0.88)),
    url("/assets/img/boutique-centre.webp") center / cover;
}

.not-found-inner {
  width: min(720px, 100%);
  text-align: center;
}

.not-found h1 {
  max-width: none;
  font-size: clamp(4.5rem, 16vw, 9rem);
}

.not-found p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: rgba(255, 251, 243, 0.82);
  font-family: var(--soft-serif);
  font-size: 1.25rem;
}

@media (max-width: 860px) {
  .article-header {
    position: relative;
    top: auto;
    display: grid;
    justify-items: center;
    padding-block: 12px 14px;
  }

  .article-page.has-site-notice .article-header {
    top: auto;
  }

  .article-header nav {
    justify-content: center;
  }

  .article-layout {
    grid-template-columns: 1fr;
    padding-bottom: clamp(42px, 6vw, 62px);
  }

  .article-aside {
    position: static;
  }

  .article-aside > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    align-items: end;
  }

  .article-aside-label,
  .article-aside h2 {
    grid-column: 1 / -1;
  }

  .article-aside p {
    margin-bottom: 8px;
  }

  .article-aside .button,
  .article-phone {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .article-page.has-site-notice {
    padding-top: var(--site-notice-height, 68px);
  }

  .article-header {
    gap: 4px;
    justify-items: start;
    padding: 8px 14px 10px;
  }

  .article-brand {
    gap: 8px;
    font-size: 0.95rem;
  }

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

  .article-header nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .article-header nav::-webkit-scrollbar {
    display: none;
  }

  .article-header nav a {
    min-height: 40px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .article-header nav a:last-child {
    display: none;
  }

  .article {
    padding-top: 34px;
  }

  .article-intro,
  .article-layout {
    width: min(100% - 28px, 1040px);
  }

  .article-breadcrumbs {
    margin-bottom: 26px;
  }

  .article-intro h1 {
    font-size: clamp(2.55rem, 12vw, 3.4rem);
  }

  .article-lead {
    font-size: 1.24rem;
  }

  .article-image img {
    max-height: 480px;
  }

  .article-section p,
  .article-section li,
  .article-faq p {
    font-size: 1rem;
  }

  .article-aside > div {
    display: block;
  }

  .article-aside .button {
    margin-top: 8px;
  }

  .article-footer {
    display: grid;
  }

  .article-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-header nav a {
    transition: none;
  }
}
