:root {
  --bg: #fbf7f0;
  --bg-soft: #f1eadf;
  --ink: #1d1d1f;
  --ink-deep: #14110d;
  --muted: #6e6e73;
  --line: #e3d8c7;
  --accent: #8b3f1d;
  --accent-soft: #c07a4e;
  --gold: #d8b06a;
  --radius: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Text", "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

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

section[id] {
  scroll-margin-top: 84px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  transition: color 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 7px 15px;
  border-radius: 980px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--accent-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 980px;
  padding: 13px 26px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(139, 63, 29, 0.24);
}

.btn--primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--accent);
  padding: 13px 8px;
}

.btn--ghost:hover {
  color: var(--accent-soft);
}

.btn--light {
  color: rgba(255, 255, 255, 0.92);
  padding: 13px 8px;
}

.btn--light:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Kicker / eyebrow ---------- */
.kicker,
.eyebrow {
  display: block;
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.kicker.light {
  color: var(--accent-soft);
}

/* ---------- Masthead (home hero) ---------- */
.masthead {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 12vh, 132px) 24px clamp(40px, 7vh, 80px);
  text-align: center;
}

.masthead-copy {
  max-width: 880px;
  margin: 0 auto;
}

.masthead-title {
  margin: 0 0 22px;
  font-size: clamp(40px, 7.4vw, 88px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.masthead-sub {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(18px, 2.3vw, 23px);
  color: var(--muted);
  line-height: 1.5;
}

.masthead-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.masthead-media {
  margin: clamp(40px, 7vh, 76px) auto 0;
  max-width: var(--maxw);
}

.masthead-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: clamp(18px, 3vw, 30px);
  box-shadow: 0 40px 90px rgba(22, 21, 19, 0.18);
}

.media-caption {
  margin: 16px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* ---------- Immersive home redesign ---------- */
.home-page {
  background:
    radial-gradient(circle at top left, rgba(216, 176, 106, 0.16), transparent 28vw),
    linear-gradient(180deg, #fffaf2 0%, #f7f0e6 44%, #fbf7f0 100%);
}

.hero-immersive,
.immersive-panel {
  position: relative;
  min-height: calc(100svh - 62px);
  overflow: hidden;
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
}

.hero-immersive__media,
.immersive-panel__media {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: -2;
}

.hero-immersive__media img,
.immersive-panel__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-immersive__shade,
.immersive-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 13, 9, 0.78), rgba(16, 13, 9, 0.34) 44%, rgba(16, 13, 9, 0.08)),
    linear-gradient(0deg, rgba(16, 13, 9, 0.74), rgba(16, 13, 9, 0.06) 45%);
}

.hero-immersive__copy {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(120px, 20vh, 210px) 0 clamp(86px, 13vh, 140px);
  text-align: center;
}

.hero-immersive__copy h1,
.immersive-panel__copy h2,
.trust-section__head h2 {
  margin: 0 0 20px;
  font-size: clamp(44px, 8vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 780;
}

.hero-immersive__copy p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.55;
}

.hero-immersive__facts {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: min(860px, calc(100% - 32px));
  transform: translateX(-50%);
}

.hero-immersive__facts span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 650;
}

.hero-immersive__media.reveal,
.immersive-panel__media.reveal {
  opacity: 1;
  transform: none;
}

.hero-immersive__facts.reveal {
  transform: translate(-50%, 30px);
}

.hero-immersive__facts.reveal.in {
  transform: translateX(-50%);
}

.intro-strip {
  padding: clamp(52px, 8vh, 92px) 24px;
  background: #fffaf2;
}

.intro-strip__inner {
  max-width: 980px;
  margin: 0 auto;
}

.intro-strip__inner p {
  margin: 0;
  font-size: clamp(24px, 3.6vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.04em;
  font-weight: 720;
  color: #241c15;
}

.immersive-panel {
  padding: clamp(44px, 6vh, 72px) 24px;
}

.immersive-panel__copy {
  width: min(520px, calc(100vw - 48px));
  margin-left: max(0px, calc((100vw - var(--maxw)) / 2));
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: clamp(24px, 3vw, 34px);
  background: rgba(20, 17, 13, 0.56);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: saturate(130%) blur(22px);
  -webkit-backdrop-filter: saturate(130%) blur(22px);
}

.immersive-panel__copy--right {
  margin-left: auto;
  margin-right: max(0px, calc((100vw - var(--maxw)) / 2));
}

.immersive-panel__copy h2 {
  font-size: clamp(38px, 5.4vw, 72px);
}

.immersive-panel__copy p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
}

.immersive-panel__copy .stage-meta {
  color: rgba(255, 255, 255, 0.66);
  border-top-color: rgba(255, 255, 255, 0.18);
}

.immersive-panel--warm::after {
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.1), rgba(93, 48, 25, 0.08)),
    linear-gradient(0deg, rgba(35, 20, 10, 0.72), rgba(35, 20, 10, 0.12) 50%);
}

.immersive-panel--clean::after {
  background:
    linear-gradient(90deg, rgba(251, 247, 240, 0.92), rgba(251, 247, 240, 0.56) 44%, rgba(251, 247, 240, 0.06)),
    linear-gradient(0deg, rgba(251, 247, 240, 0.24), rgba(251, 247, 240, 0.1));
}

.immersive-panel--clean {
  color: var(--ink);
}

.immersive-panel--clean .immersive-panel__copy {
  background: rgba(255, 250, 242, 0.72);
  border-color: rgba(36, 28, 21, 0.08);
  box-shadow: 0 30px 80px rgba(77, 54, 31, 0.14);
}

.immersive-panel--clean .immersive-panel__copy p {
  color: #50483f;
}

.immersive-panel--clean .immersive-panel__copy .stage-meta {
  color: #70665b;
  border-top-color: rgba(36, 28, 21, 0.12);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.trust-section {
  padding: clamp(76px, 12vh, 140px) 24px;
  background:
    radial-gradient(circle at top right, rgba(216, 176, 106, 0.2), transparent 36vw),
    #14110d;
  color: #fff;
}

.trust-section__head,
.trust-grid,
.credential-shots--large {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.trust-section__head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 70px);
}

.trust-section__head h2 {
  font-size: clamp(40px, 6.8vw, 82px);
}

.trust-section__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-card {
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.trust-card:hover {
  transform: none;
  box-shadow: none;
}

.trust-card h3 {
  color: #fff;
}

.trust-card p {
  color: rgba(255, 255, 255, 0.68);
}

.credential-shots--large {
  padding: 0;
  margin-top: 28px;
}

.credential-shots--large figcaption {
  color: rgba(255, 255, 255, 0.68);
}

.showcase--editorial {
  background: #fffaf2;
}

.shot--wide {
  width: clamp(300px, 78vw, 520px);
}

.shot--wide img {
  aspect-ratio: 16 / 10;
}

.topics-section,
.faq-section {
  max-width: var(--maxw);
}

.cta--immersive {
  background:
    linear-gradient(135deg, rgba(139, 63, 29, 0.94), rgba(20, 17, 13, 0.98)),
    var(--ink-deep);
}

@media (max-width: 860px) {
  .hero-immersive,
  .immersive-panel {
    min-height: calc(100svh - 58px);
  }

  .hero-immersive__copy {
    width: calc(100% - 36px);
    padding: 96px 0 118px;
  }

  .hero-immersive__copy h1,
  .immersive-panel__copy h2,
  .trust-section__head h2 {
    letter-spacing: -0.04em;
  }

  .hero-immersive__shade,
  .immersive-panel::after {
    background:
      linear-gradient(0deg, rgba(16, 13, 9, 0.84), rgba(16, 13, 9, 0.22) 55%, rgba(16, 13, 9, 0.08)),
      linear-gradient(90deg, rgba(16, 13, 9, 0.36), rgba(16, 13, 9, 0.08));
  }

  .hero-immersive__facts {
    bottom: 18px;
  }

  .intro-strip {
    padding: 46px 20px;
  }

  .immersive-panel {
    align-items: end;
    padding: 0 18px 28px;
  }

  .immersive-panel__media img {
    object-position: center;
  }

  .immersive-panel__copy,
  .immersive-panel__copy--right {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 24px;
    border-radius: 24px;
  }

  .immersive-panel--clean::after {
    background:
      linear-gradient(0deg, rgba(251, 247, 240, 0.94), rgba(251, 247, 240, 0.28) 56%, rgba(251, 247, 240, 0.08));
  }

  .trust-section {
    padding: 72px 18px;
  }

  .trust-section__head,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .hero-immersive__copy {
    text-align: left;
  }

  .hero-immersive__copy .masthead-actions {
    justify-content: flex-start;
  }

  .hero-immersive__facts {
    justify-content: flex-start;
  }

  .hero-immersive__facts span {
    font-size: 12px;
  }

  .intro-strip__inner p {
    font-size: 25px;
  }

  .immersive-panel__copy p,
  .trust-section__head p {
    font-size: 16px;
  }

  .shot--wide {
    width: 82vw;
  }
}

/* ---------- Product stages ---------- */
.stage {
  padding: clamp(72px, 13vh, 150px) 24px;
}

.stage--soft {
  background: var(--bg-soft);
}

.stage--dark {
  background: var(--ink-deep);
  color: #fff;
}

.stage--dark .stage-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.stage--dark .stage-meta {
  color: rgba(255, 255, 255, 0.55);
  border-top-color: rgba(255, 255, 255, 0.16);
}

.stage-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.stage--alt .stage-media {
  order: 2;
}

.stage-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(22, 21, 19, 0.16);
}

.stage--dark .stage-media img {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.stage-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stage-copy p {
  margin: 0 0 14px;
  font-size: clamp(17px, 1.9vw, 21px);
  color: var(--muted);
  line-height: 1.55;
  max-width: 46ch;
}

.stage-meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
}

/* ---------- Store showcase (swipe gallery) ---------- */
.showcase {
  padding: clamp(72px, 12vh, 130px) 0;
  overflow: hidden;
}

.showcase-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(32px, 5vw, 52px);
  padding: 0 24px;
}

.showcase-head h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.showcase-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px max(24px, calc((100vw - var(--maxw)) / 2 + 24px)) 26px;
  scrollbar-width: thin;
}

.showcase-track::-webkit-scrollbar {
  height: 8px;
}

.showcase-track::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 980px;
}

.shot {
  flex: 0 0 auto;
  width: clamp(248px, 70vw, 384px);
  margin: 0;
  scroll-snap-align: center;
}

.shot img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(22, 21, 19, 0.14);
  transition: transform 0.5s var(--ease);
}

.shot:hover img {
  transform: translateY(-6px);
}

.shot figcaption {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- Generic sections ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 10vh, 110px) 24px;
}

h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 650;
}

.section-intro,
.note {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.section-intro a,
.note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.two-column {
  grid-template-columns: repeat(2, 1fr);
}

article,
.fact-list,
.faq details {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
}

article {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(22, 21, 19, 0.1);
}

article p {
  margin: 0 0 8px;
  color: var(--muted);
}

article p:last-child {
  margin-bottom: 0;
}

article h3 a {
  color: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
  margin-top: 0;
}

.split h2 {
  margin-top: 0;
}

.fact-list {
  margin: 0;
  padding-left: 44px;
  list-style: none;
  position: relative;
}

.fact-list li {
  position: relative;
  padding-left: 4px;
}

.fact-list li + li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.faq details {
  padding: 6px 26px;
  transition: background 0.2s var(--ease);
}

summary {
  cursor: pointer;
  font-weight: 650;
  font-size: 18px;
  list-style: none;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-weight: 400;
  font-size: 26px;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin: 0 0 18px;
  color: var(--muted);
}

/* ---------- Contact / CTA ---------- */
.cta {
  max-width: var(--maxw);
  margin: 0 auto clamp(48px, 8vh, 90px);
  padding: clamp(56px, 9vh, 100px) 24px;
  text-align: center;
  background: var(--ink-deep);
  color: #fff;
  border-radius: clamp(24px, 4vw, 36px);
}

.cta h2 {
  margin: 0 0 24px;
}

.cta .big-phone {
  display: inline-block;
  color: #fff;
}

.cta-sub {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.big-phone {
  font-size: clamp(34px, 7vw, 66px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* legacy contact-card / contact-section kept for subpages */
.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  width: fit-content;
  margin: 30px 0 16px;
  padding: 16px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(139, 63, 29, 0.22);
}

.contact-card span {
  font-size: 22px;
  font-weight: 800;
}

.contact-section {
  text-align: center;
  background: var(--ink-deep);
  color: #fff;
  border-radius: 32px;
}

.contact-section .note {
  color: rgba(255, 255, 255, 0.72);
  margin-left: auto;
  margin-right: auto;
}

.contact-section a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- Article / content pages ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(72px, 12vh, 120px) 24px 56px;
}

.compact-hero {
  padding-bottom: 28px;
}

.hero-text {
  max-width: 760px;
  font-size: 20px;
  color: var(--muted);
}

.article-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(64px, 10vh, 104px) 24px 64px;
}

.article-page h1 {
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
}

.article-page h2 {
  margin-top: 44px;
  font-size: clamp(24px, 3.2vw, 34px);
}

.article-page p {
  font-size: 18px;
  color: #3a3833;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .shot img, .btn, article { transition: none; }
}

/* ---------- Credential plaques ---------- */
.credential-shots {
  max-width: var(--maxw);
  margin: 36px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.credential-shots figure {
  margin: 0;
}

.credential-shots img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(22, 21, 19, 0.14);
}

.credential-shots figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 560px) {
  .credential-shots {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
footer {
  padding: 36px 24px 56px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}

footer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav {
    padding: 12px 18px;
  }

  .nav-links {
    gap: 16px;
    font-size: 13px;
  }

  .stage-inner,
  .grid,
  .two-column,
  .split {
    grid-template-columns: 1fr;
  }

  .stage--alt .stage-media {
    order: 0;
  }

  .stage-copy {
    text-align: left;
  }

  .stage-media {
    margin-bottom: 8px;
  }
}

@media (max-width: 560px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-links .nav-cta {
    display: inline-block;
  }
}
