:root {
  --earth: #3b2418;
  --earth-soft: #5a3321;
  --cream: #f4ede6;
  --sand: #ddc7b8;
  --clay: #9a5a32;
  --green: #0d644d;
  --white: #fff;
  --ink: #241812;
  --line: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open,
body.video-open {
  overflow: hidden;
}

a,
button {
  color: inherit;
}

button {
  font: inherit;
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--earth);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sand);
  transform: rotate(calc(var(--i, 0) * 45deg)) translateY(-28px);
  animation: pulse 1.1s linear infinite;
  animation-delay: calc(var(--i, 0) * -0.12s);
}

.loader span:nth-child(1) { --i: 0; }
.loader span:nth-child(2) { --i: 1; }
.loader span:nth-child(3) { --i: 2; }
.loader span:nth-child(4) { --i: 3; }
.loader span:nth-child(5) { --i: 4; }
.loader span:nth-child(6) { --i: 5; }
.loader span:nth-child(7) { --i: 6; }
.loader span:nth-child(8) { --i: 7; }

@keyframes pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 38px clamp(24px, 8vw, 150px);
  color: var(--white);
  mix-blend-mode: difference;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  text-decoration: none;
  line-height: 1;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 14px 44px rgba(59, 36, 24, 0.16);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  color: currentColor;
  text-decoration: none;
  font-size: 14px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.pill-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.menu-button,
.close-button {
  width: 45px;
  height: 45px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.menu-button span,
.close-button::before,
.close-button::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  height: 2px;
  background: currentColor;
}

.menu-button span:first-child { top: 17px; }
.menu-button span:last-child { top: 26px; }
.close-button::before { top: 22px; transform: rotate(45deg); }
.close-button::after { top: 22px; transform: rotate(-45deg); }

.section-earth {
  background: var(--earth);
  color: var(--white);
}

.panel {
  position: relative;
  min-height: 100vh;
  padding: clamp(90px, 10vw, 150px) clamp(24px, 8vw, 150px);
  overflow: hidden;
}

.light {
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.05);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(59, 36, 24, 0.72), rgba(59, 36, 24, 0.18) 52%, rgba(13, 100, 77, 0.32)),
    rgba(0, 0, 0, 0.12);
}

@keyframes heroDrift {
  from { transform: scale(1.05) translateX(-1.5%); }
  to { transform: scale(1.1) translateX(1.5%); }
}

.curl-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.72;
  background:
    radial-gradient(120% 95% at 80% 10%, transparent 52%, rgba(244,237,230,0.18) 52.25%, transparent 52.6%),
    radial-gradient(90% 110% at 10% -20%, transparent 54%, rgba(244,237,230,0.18) 54.2%, transparent 54.55%),
    radial-gradient(70% 110% at 48% -10%, transparent 47%, rgba(221,199,184,0.18) 47.25%, transparent 47.65%),
    linear-gradient(104deg, transparent 49.85%, rgba(244,237,230,0.18) 50%, transparent 50.15%),
    linear-gradient(74deg, transparent 49.9%, rgba(244,237,230,0.15) 50%, transparent 50.12%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(61vw, 760px);
  margin-top: 44px;
  color: var(--white);
  transform: translateX(-5vw);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--clay);
}

.hero h1 {
  margin: 0;
  font-weight: 200;
  font-size: clamp(56px, 7.6vw, 108px);
  line-height: 0.88;
  text-align: center;
}

.hero h1 span {
  display: block;
}

.hero-seo {
  max-width: 640px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.42;
  text-align: center;
}

.video-card {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 8vw, 118px);
  bottom: 16vh;
  width: min(25vw, 320px);
  min-width: 250px;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.video-card img,
.feature-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card img {
  transition: opacity 0.26s ease;
}

.play-icon {
  position: absolute;
  left: 20px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(59, 36, 24, 0.95);
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 19px;
  border-left: 14px solid var(--white);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.scroll-link {
  position: absolute;
  z-index: 5;
  bottom: 34px;
  left: 50%;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-link::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.5s ease infinite;
}

@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translate(-50%, 18px); opacity: 0; }
}

.intro-grid,
.surface,
.assist {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: center;
}

.section-number {
  color: rgba(90, 51, 33, 0.38);
  font-size: 14px;
  margin-bottom: 40px;
}

.intro h2,
.surface h2,
.details h2,
.options h2,
.contact h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 200;
  line-height: 0.96;
}

.lead,
.surface-copy p,
.care-text,
.assist-copy p,
.options-head p,
.contact-copy p {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
}

.local-copy h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 200;
  line-height: 0.96;
}

.local-text {
  color: rgba(36, 24, 18, 0.72);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.38;
}

.wide-media {
  min-height: 62vh;
  overflow: hidden;
  border-radius: 8px;
}

.wide-media img,
.assist-image img,
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-media img,
.assist-image img,
.use-card img,
.portrait img {
  filter: sepia(0.14) saturate(0.9);
}

.big-statement {
  position: relative;
  z-index: 3;
  margin: 0;
  font-size: clamp(68px, 10vw, 150px);
  line-height: 0.86;
  font-weight: 200;
}

.big-statement span {
  display: block;
}

.care-text {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
  margin: 70px 0 0 auto;
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  margin: 0 0 clamp(42px, 7vw, 90px);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 200;
  line-height: 0.95;
}

.card-grid,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.use-card,
.product-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
}

.use-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.use-card:hover img {
  transform: scale(1.06);
}

.use-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(59,36,24,0.74));
}

.use-card div,
.card-index {
  position: absolute;
  z-index: 2;
}

.use-card div {
  left: 34px;
  right: 34px;
  bottom: 32px;
  color: var(--white);
}

.use-card h3 {
  margin: 0 0 12px;
  font-weight: 300;
  font-size: clamp(34px, 4vw, 58px);
}

.use-card p {
  margin: 0;
  max-width: 460px;
  line-height: 1.5;
}

.card-index {
  right: 30px;
  top: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 48px;
  font-weight: 200;
}

.feature-video {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 45vh;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(rgba(59, 36, 24, 0.2), rgba(59, 36, 24, 0.64)),
    url("assets/atelier-pratique.webp") center / cover;
  cursor: pointer;
}

.feature-video span:first-child {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 200;
  line-height: 0.95;
}

.details {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 90px;
}

.details ul,
.product-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.details li,
.product-card li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.options {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.method-orbit {
  position: relative;
  min-height: 560px;
}

.method-orbit::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(90, 51, 33, 0.24);
  border-radius: 50%;
}

.orbit-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--earth);
  box-shadow: 0 18px 60px rgba(59,36,24,0.14);
  font-size: 18px;
}

.orbit-card.main {
  left: 50%;
  top: 50%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%);
  background: var(--earth);
  color: var(--white);
  font-size: 42px;
  font-weight: 200;
}

.orbit-card.one { left: 9%; top: 12%; }
.orbit-card.two { right: 8%; top: 28%; }
.orbit-card.three { left: 24%; bottom: 7%; }

.assist {
  background: #e4d0c2;
}

.assist-image {
  overflow: hidden;
  border-radius: 8px;
  min-height: 62vh;
}

.assist-copy {
  max-width: 560px;
}

.assist-copy h3 {
  margin: 0;
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 200;
  line-height: 0.96;
}

.product-card {
  min-height: 600px;
  padding: 46px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.product-card p {
  margin-top: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 200;
}

.product-card strong {
  display: block;
  margin-top: 38px;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 36px;
}

.product-card a {
  display: inline-flex;
  margin-top: 24px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.review-wrap {
  max-width: 980px;
  margin: auto;
  text-align: center;
}

.portrait {
  width: 180px;
  height: 180px;
  margin: 0 auto 34px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 18px 60px rgba(59,36,24,0.18);
}

.review-name {
  color: var(--clay);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

blockquote {
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 200;
  line-height: 1.08;
}

.content-hub {
  background: var(--cream);
}

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

.blog-list {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 54px;
}

.hub-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(59, 36, 24, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.38);
  color: var(--earth);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hub-card img {
  display: none;
}

.hub-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.68);
}

.hub-card span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hub-card h3 {
  margin: 42px 0 18px;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 200;
  line-height: 1.02;
}

.hub-card p {
  color: rgba(36, 24, 18, 0.66);
  line-height: 1.5;
}

.blog-list .hub-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 330px;
  padding: 0;
  overflow: hidden;
}

.blog-list .hub-card h3 {
  margin-top: 34px;
  font-size: clamp(30px, 3vw, 46px);
}

.blog-list .hub-card img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.14) saturate(0.9);
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.blog-list .hub-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 237, 230, 0.76);
  backdrop-filter: blur(1px);
  transition: background 0.25s ease;
}

.blog-list .hub-card div {
  position: relative;
  z-index: 1;
  padding: 34px;
}

.blog-list .hub-card:hover img {
  transform: scale(1.08);
}

.blog-list .hub-card:hover::after {
  background: rgba(244, 237, 230, 0.68);
}

.home-blog-list .hub-card:last-child {
  grid-column: 1 / -1;
  min-height: 300px;
}

.faq {
  background: #eadbd0;
}

.faq-grid {
  display: grid;
  gap: 16px;
  max-width: 920px;
}

details {
  border-top: 1px solid rgba(59,36,24,0.35);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--earth);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 200;
}

details p {
  margin: 0 0 24px;
  font-size: 19px;
  line-height: 1.5;
}

.contact {
  display: grid;
  place-items: center;
  text-align: center;
}

.contact-copy {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.light-pill {
  margin-top: 24px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(42px, 7vw, 110px);
  padding: clamp(64px, 8vw, 110px) clamp(24px, 8vw, 150px) 36px;
  color: rgba(255,255,255,0.78);
}

.footer-brand {
  max-width: 360px;
}

.footer-brand p {
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.45;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-nav h2 {
  margin: 0 0 20px;
  color: var(--sand);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  margin: 12px 0;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  line-height: 1.35;
}

.footer-nav a:hover,
.footer-bottom a:hover,
.nav-link:hover {
  color: var(--sand);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.16);
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}

.article-credit {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(59,36,24,0.16);
  color: rgba(36, 24, 18, 0.62);
  font-size: 14px;
}

.article-credit a {
  color: var(--earth);
  text-decoration: none;
}

.article-credit a:hover {
  color: var(--clay);
}

dialog {
  border: 0;
  padding: 0;
}

dialog::backdrop {
  background: rgba(20, 13, 9, 0.55);
}

.menu-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  background: var(--earth);
  color: var(--white);
  overflow: hidden;
}

.menu-modal header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 42px clamp(24px, 8vw, 150px);
}

.menu-modal nav {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 62vh;
}

.menu-modal nav a {
  display: block;
  text-decoration: none;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 200;
  line-height: 1.06;
}

.modal-mail {
  position: absolute;
  left: clamp(24px, 8vw, 150px);
  bottom: 60px;
  z-index: 2;
  text-decoration: none;
}

.video-modal {
  width: min(1000px, calc(100vw - 48px));
  background: transparent;
}

.video-modal .close-button {
  position: fixed;
  right: 34px;
  top: 28px;
  color: var(--white);
}

.fake-video {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #111;
}

.fake-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fake-video .play-icon {
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.article-page {
  background:
    radial-gradient(70% 80% at 100% 0%, rgba(221,199,184,0.55), transparent 55%),
    var(--cream);
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px clamp(20px, 6vw, 96px);
}

.article-header .pill-link {
  color: var(--earth);
}

.article-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.article-nav a:not(.pill-link) {
  color: var(--earth);
  text-decoration: none;
  font-size: 14px;
}

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

.article-shell,
.article-detail {
  width: min(920px, calc(100% - 40px));
  margin: 30px auto 110px;
}

.blog-shell {
  width: min(1160px, calc(100% - 40px));
}

.article-detail {
  width: min(1160px, calc(100% - 40px));
}

.article-shell h1,
.article-hero h1 {
  margin: 0;
  color: var(--earth);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 200;
  line-height: 0.92;
}

.article-lead {
  margin: 36px 0;
  color: rgba(36, 24, 18, 0.74);
  font-size: clamp(21px, 2.3vw, 30px);
  line-height: 1.32;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: end;
  margin-bottom: 70px;
}

.article-hero img,
.article-shell img {
  width: 100%;
  max-height: 620px;
  border-radius: 8px;
  object-fit: cover;
  filter: sepia(0.14) saturate(0.9);
}

.article-hero img {
  aspect-ratio: 0.92 / 1.08;
  min-height: 520px;
}

.article-shell img {
  margin: 52px 0;
}

.article-toc {
  position: sticky;
  top: 28px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 58px;
  padding: 12px;
  border: 1px solid rgba(59,36,24,0.14);
  border-radius: 999px;
  background: rgba(244, 237, 230, 0.82);
  backdrop-filter: blur(16px);
}

.article-toc a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--earth);
  text-decoration: none;
  font-size: 14px;
}

.article-toc a:hover {
  background: rgba(90, 51, 33, 0.11);
}

.article-content {
  width: min(780px, 100%);
  margin: 0 auto;
}

.article-content h2,
.article-shell h2 {
  margin: 52px 0 16px;
  color: var(--earth);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 200;
  line-height: 1;
}

.article-content p,
.article-shell p {
  color: rgba(36, 24, 18, 0.78);
  font-size: 20px;
  line-height: 1.65;
}

.article-callout {
  margin: 44px 0;
  padding: 28px;
  border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0;
  background: rgba(255,255,255,0.42);
  color: var(--earth);
}

.article-callout strong,
.article-callout span {
  display: block;
}

.article-callout strong {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-callout span {
  font-size: 22px;
  line-height: 1.35;
}

.article-faq {
  width: min(780px, 100%);
  margin: 72px auto 0;
}

.article-faq h2 {
  margin: 0 0 24px;
  color: var(--earth);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 200;
  line-height: 1;
}

.article-faq details {
  border-color: rgba(59,36,24,0.2);
}

.article-faq summary {
  font-size: clamp(24px, 3vw, 36px);
}

.article-faq p {
  margin: 0 0 28px;
  color: rgba(36, 24, 18, 0.76);
  font-size: 19px;
  line-height: 1.6;
}

.article-next {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 72px auto 0;
}

.cta-inline {
  display: inline-flex;
  margin-top: 36px;
  padding-bottom: 8px;
  color: var(--earth);
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 20px;
}

@media (max-width: 900px) {
  .site-header,
  .menu-modal header {
    padding: 26px 22px;
  }

  .header-actions {
    gap: 18px;
  }

  .nav-link {
    display: none;
  }

  .hero-copy {
    width: calc(100% - 32px);
    transform: none;
  }

  .hero h1 {
    font-size: clamp(56px, 14vw, 82px);
  }

  .video-card {
    right: 18px;
    bottom: 15vh;
    min-width: 210px;
  }

  .intro-grid,
  .surface,
  .assist,
  .details,
  .options,
  .local-grid,
  .card-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

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

  .blog-list {
    grid-template-columns: 1fr;
  }

  .home-blog-list .hub-card:last-child {
    min-height: 330px;
  }

  .article-hero {
    grid-template-columns: 1fr;
  }

  .article-hero img {
    min-height: 420px;
    aspect-ratio: 16 / 10;
  }

  .panel {
    padding: 96px 22px;
  }

  .wide-media,
  .assist-image {
    min-height: 48vh;
  }

  .method-orbit {
    min-height: 420px;
  }

  .orbit-card {
    width: 124px;
    height: 124px;
  }

  .orbit-card.main {
    width: 160px;
    height: 160px;
  }

  .use-card,
  .product-card {
    min-height: 520px;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .article-credit {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 70px;
    height: 70px;
  }

  .pill-link {
    min-width: 82px;
    font-size: 12px;
  }

  .article-nav {
    gap: 12px;
  }

  .article-nav a:not(.pill-link) {
    display: none;
  }

  .video-card {
    min-width: 190px;
    bottom: 12vh;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 64px);
  }

  .menu-modal nav a {
    font-size: clamp(36px, 11vw, 54px);
  }

  .hub-grid {
    grid-template-columns: 1fr;
  }

  .hub-card {
    min-height: 260px;
  }

  .blog-list .hub-card img {
    min-height: 0;
  }

  .article-shell {
    width: calc(100% - 32px);
    margin-top: 10px;
  }

  .article-detail {
    width: calc(100% - 32px);
  }

  .article-toc {
    position: static;
    border-radius: 8px;
  }
}

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