:root {
  --ink: #111827;
  --navy: #071224;
  --ivory: #f7f4ee;
  --paper: #fffdf9;
  --line: rgba(17, 24, 39, 0.12);
  --blue: #163b66;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: #dce5ef; color: var(--navy); }

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at 80% 0%, rgba(204, 215, 226, 0.22), transparent 28rem), var(--paper);
}

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 1px; background: currentColor; content: ""; }
.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 7.2vw, 7.1rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.lead { margin: 0; color: #4a5565; font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.75; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}
.brand-orbit { position: relative; width: 27px; height: 27px; border: 1px solid currentColor; border-radius: 50%; }
.brand-orbit::after { position: absolute; inset: 7px; border: 1px solid currentColor; border-radius: 50%; content: ""; }

.site-header { position: relative; z-index: 40; border-bottom: 1px solid rgba(255, 255, 255, 0.12); background: var(--navy); color: white; }
.header-inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 28px; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 0.84rem; font-weight: 600; }
.site-nav > a:not(.header-cta) { position: relative; color: rgba(255, 255, 255, 0.72); transition: color 180ms ease; }
.site-nav > a:not(.header-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: white;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.site-nav > a:not(.header-cta):hover,
.site-nav > a:not(.header-cta):focus-visible { color: white; }
.site-nav > a:not(.header-cta):hover::after,
.site-nav > a:not(.header-cta):focus-visible::after { transform: scaleX(1); }

.header-cta, .button-primary, .button-secondary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.header-cta { min-height: 42px; padding: 0 18px; background: white; color: var(--navy); }
.button-primary { padding: 0 24px; background: var(--navy); color: white; }
.button-secondary { padding: 0 24px; border-color: rgba(17, 24, 39, 0.2); background: transparent; color: var(--ink); }
.header-cta:hover, .button-primary:hover, .button-secondary:hover { transform: translateY(-2px); }
.button-primary:hover { background: #122745; }
.button-secondary:hover { border-color: var(--ink); background: white; }

.hero-home { position: relative; min-height: 760px; background: var(--navy); color: white; }
.hero-home::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 18, 36, 0.99) 0%, rgba(7, 18, 36, 0.92) 42%, rgba(7, 18, 36, 0.18) 78%), linear-gradient(0deg, rgba(7, 18, 36, 0.52), transparent 48%);
  content: "";
}
.hero-home-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-home-content { position: relative; z-index: 2; display: flex; min-height: 682px; align-items: center; padding-block: 80px; }
.hero-copy { max-width: 690px; }
.hero-copy .eyebrow { color: #cbd7e4; }
.hero-copy .display-title { max-width: 650px; margin-top: 24px; }
.hero-copy .lead { max-width: 575px; margin-top: 28px; color: rgba(255, 255, 255, 0.7); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-home .button-primary { background: white; color: var(--navy); }
.hero-home .button-secondary { border-color: rgba(255, 255, 255, 0.34); color: white; }
.hero-home .button-secondary:hover { border-color: white; background: rgba(255, 255, 255, 0.08); }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 42px; color: rgba(255, 255, 255, 0.58); font-size: 0.8rem; }
.hero-note span { width: 34px; height: 1px; background: rgba(255, 255, 255, 0.34); }

.brand-intro { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(50px, 9vw, 130px); padding-block: 120px; }
.brand-intro-copy { align-self: end; }
.brand-intro-copy .lead { max-width: 550px; margin-top: 30px; }
.mini-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 48px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--line); }
.mini-pillar { min-height: 155px; padding: 24px; background: var(--paper); }
.mini-pillar svg { color: var(--blue); }
.mini-pillar .symbol-icon { color: var(--blue); font-size: 1.55rem; }
.mini-pillar h3 { margin: 28px 0 0; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }

.featured { padding-block: 24px 120px; }
.featured-card { display: grid; grid-template-columns: 1.02fr 0.98fr; min-height: 600px; overflow: hidden; border-radius: 28px; background: var(--ivory); }
.featured-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: 50px;
  background: radial-gradient(circle at 50% 50%, white 0, #eef1f4 54%, #d4dbe3 100%);
}
.featured-visual::after { position: absolute; width: 64%; height: 17%; border-radius: 50%; background: rgba(14, 27, 44, 0.13); filter: blur(22px); content: ""; transform: translateY(150px); }
.featured-image { position: relative; z-index: 1; width: min(450px, 90%); height: auto; object-fit: contain; mix-blend-mode: multiply; filter: contrast(1.04); }
.featured-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(44px, 7vw, 92px); }
.featured-copy .section-title { margin-top: 24px; }
.featured-copy .lead { margin-top: 26px; }
.detail-list { display: grid; gap: 0; margin: 34px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.detail-list li { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); color: #394456; font-size: 0.9rem; }
.detail-list .symbol-icon { width: 18px; color: var(--blue); font-size: 1.05rem; text-align: center; }

.story-strip { position: relative; padding-block: 120px; background: var(--navy); color: white; }
.story-strip::before { position: absolute; top: 50%; left: 50%; width: min(720px, 75vw); aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 50%; content: ""; transform: translate(-50%, -50%); }
.story-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.story-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.story-icon { display: flex; min-height: 280px; flex-direction: column; justify-content: space-between; padding: 34px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 180px 180px 18px 18px; background: rgba(255, 255, 255, 0.035); }
.story-icon svg { width: 56px; height: 56px; stroke-width: 1; }
.story-icon .symbol-icon { font-family: var(--serif); font-size: 4rem; font-weight: 400; line-height: 1; }
.story-icon p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 0.84rem; line-height: 1.7; }
.story-copy .eyebrow { color: #cbd7e4; }
.story-copy .section-title { margin-top: 24px; }
.story-copy .lead { margin-top: 28px; color: rgba(255, 255, 255, 0.66); }
.story-copy .button-primary { margin-top: 34px; background: white; color: var(--navy); }

.product-hero { padding-block: 70px 104px; background: radial-gradient(circle at 82% 20%, #dfe7ef 0, transparent 34%), var(--ivory); }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 48px; color: #6b7280; font-size: 0.78rem; }
.breadcrumbs a:hover { color: var(--ink); }
.product-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.product-gallery { position: relative; display: grid; min-height: 610px; place-items: center; overflow: hidden; border: 1px solid rgba(17, 24, 39, 0.09); border-radius: 240px 240px 26px 26px; background: radial-gradient(circle at 50% 35%, white 0, #f4f5f6 45%, #dce2e8 100%); }
.product-gallery::before { position: absolute; top: 30px; right: 30px; width: 110px; height: 110px; border: 1px solid rgba(17, 24, 39, 0.11); border-radius: 50%; content: ""; box-shadow: inset 24px 0 0 rgba(7, 18, 36, 0.06); }
.product-image { position: relative; z-index: 2; width: min(515px, 82%); height: auto; mix-blend-mode: multiply; filter: contrast(1.06) drop-shadow(0 28px 18px rgba(18, 34, 53, 0.16)); }
.product-copy .display-title { margin-top: 22px; font-size: clamp(3.8rem, 6.5vw, 6.7rem); }
.product-copy .lead { max-width: 520px; margin-top: 26px; }
.product-symbols { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 32px; padding-block: 22px; border-block: 1px solid var(--line); }
.product-symbol { display: flex; align-items: center; gap: 10px; color: #394456; font-size: 0.84rem; font-weight: 650; }
.product-symbol svg { color: var(--blue); }
.product-symbol .symbol-icon { color: var(--blue); font-size: 1.15rem; }
.product-cta-wrap { margin-top: 32px; }
.product-cta-wrap .button-primary { width: min(100%, 360px); min-height: 56px; }
.microcopy { margin: 13px 0 0; color: #70798a; font-size: 0.75rem; line-height: 1.6; }

.meaning-section, .details-section, .faq-section { padding-block: 118px; }
.section-heading-row { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 8vw, 110px); align-items: end; }
.section-heading-row .lead { max-width: 560px; }
.meaning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 64px; }
.meaning-card { min-height: 300px; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.meaning-card:nth-child(2) { transform: translateY(26px); }
.meaning-number { display: flex; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); font-family: var(--serif); }
.meaning-card h3 { margin: 62px 0 0; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.meaning-card p { margin: 14px 0 0; color: #667085; font-size: 0.9rem; line-height: 1.75; }

.details-section { background: var(--navy); color: white; }
.details-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.editorial-image-wrap { position: relative; min-height: 650px; overflow: hidden; border-radius: 24px 240px 24px 24px; }
.editorial-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.details-copy .eyebrow { color: #cbd7e4; }
.details-copy .section-title { margin-top: 24px; }
.details-copy .lead { margin-top: 28px; color: rgba(255, 255, 255, 0.66); }
.spec-list { margin: 42px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.spec-list li { display: grid; grid-template-columns: 145px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.72); font-size: 0.86rem; line-height: 1.65; }
.spec-list strong { color: white; font-weight: 650; }

.buy-steps { padding-block: 118px; background: var(--ivory); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 58px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--line); }
.step-card { min-height: 260px; padding: 32px; background: var(--paper); }
.step-card span { color: var(--blue); font-family: var(--serif); font-size: 2.2rem; }
.step-card h3 { margin: 50px 0 0; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.step-card p { margin: 12px 0 0; color: #667085; font-size: 0.88rem; line-height: 1.7; }

.faq-wrap { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(50px, 9vw, 120px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { padding-block: 24px; border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.faq-item p { margin: 10px 0 0; color: #667085; font-size: 0.9rem; line-height: 1.75; }

.final-cta { padding-block: 110px; background: #dfe5ec; }
.final-cta-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.final-cta .section-title { max-width: 760px; }
.final-cta .button-primary { flex: 0 0 auto; }

.journal-hero {
  position: relative;
  padding-block: 62px 110px;
  overflow: hidden;
  background: var(--navy);
  color: white;
}
.journal-hero::after {
  position: absolute;
  top: -230px;
  right: -100px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow: inset 90px 0 0 rgba(255, 255, 255, 0.025);
}
.journal-breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 72px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}
.journal-breadcrumbs a:hover { color: white; }
.journal-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(48px, 9vw, 130px);
  align-items: end;
}
.journal-hero .eyebrow { color: #cbd7e4; }
.journal-hero .display-title {
  max-width: 810px;
  margin-top: 22px;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
}
.journal-standfirst {
  padding: 30px 0 6px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.journal-standfirst p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
}
.journal-body { padding-block: 110px; }
.journal-layout {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: clamp(50px, 9vw, 125px);
  align-items: start;
}
.journal-aside {
  position: sticky;
  top: 36px;
  padding-top: 12px;
}
.journal-aside p {
  margin: 0 0 22px;
  color: #7b8492;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.journal-aside ol {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  color: #596474;
  counter-reset: journal;
  list-style: none;
}
.journal-aside li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.4;
}
.journal-aside li::before {
  color: #9ba4b1;
  content: "0" counter(journal);
  counter-increment: journal;
  font-family: var(--sans);
  font-size: 0.62rem;
}
.journal-article { max-width: 760px; }
.journal-intro {
  margin: 0 0 72px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  letter-spacing: -0.02em;
  line-height: 1.42;
}
.journal-section {
  padding-block: 48px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 30px;
}
.journal-section-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}
.journal-section-heading svg { color: var(--blue); stroke-width: 1.4; }
.journal-section-heading .symbol-icon { width: 26px; color: var(--blue); font-family: var(--serif); font-size: 1.65rem; text-align: center; }
.journal-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.journal-section p {
  margin: 24px 0 0;
  color: #596474;
  font-size: 1rem;
  line-height: 1.85;
}
.resource-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding: 28px;
  border: 1px solid rgba(22, 59, 102, 0.18);
  border-radius: 18px;
  background: #edf2f6;
  transition: transform 180ms ease, border-color 180ms ease;
}
.resource-card:hover { transform: translateY(-2px); border-color: rgba(22, 59, 102, 0.42); }
.resource-card strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}
.resource-card span {
  display: block;
  margin-top: 6px;
  color: #657181;
  font-size: 0.82rem;
  line-height: 1.6;
}
.resource-card svg { color: var(--blue); }
.resource-arrow { color: var(--blue); font-size: 1.55rem; }
.journal-product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 750;
}
.journal-product-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.whatsapp-glyph { font-size: 1.8rem; line-height: 1; transform: rotate(-18deg); }
.not-found { min-height: 640px; padding-block: 110px; background: var(--ivory); }
.not-found-inner { display: flex; max-width: 850px; flex-direction: column; align-items: flex-start; }
.not-found .display-title { margin-top: 24px; }
.not-found .lead { max-width: 610px; margin-top: 28px; }
.not-found .button-primary { margin-top: 34px; }

.site-footer { padding-block: 65px 34px; background: var(--navy); color: white; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; padding-bottom: 42px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer-note { max-width: 380px; margin: 16px 0 0; color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; line-height: 1.7; }
.footer-links { display: flex; flex-wrap: wrap; gap: 25px; color: rgba(255, 255, 255, 0.68); font-size: 0.84rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 26px; color: rgba(255, 255, 255, 0.42); font-size: 0.72rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 50; display: flex; width: 58px; height: 58px; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 50%; background: #19704a; color: white; box-shadow: 0 14px 35px rgba(3, 41, 25, 0.28); transition: transform 180ms ease; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
a:focus-visible { outline: 3px solid #9ab5d1; outline-offset: 4px; }

@media (max-width: 900px) {
  .site-nav > a:not(.header-cta) { display: none; }
  .hero-home { min-height: 700px; }
  .hero-home::before { background: linear-gradient(90deg, rgba(7, 18, 36, 0.97), rgba(7, 18, 36, 0.65)), linear-gradient(0deg, rgba(7, 18, 36, 0.55), transparent); }
  .hero-home-image { object-position: 63% center; }
  .brand-intro, .story-inner, .product-grid, .section-heading-row, .details-grid, .faq-wrap, .journal-hero-grid, .journal-layout { grid-template-columns: 1fr; }
  .brand-intro, .story-inner, .details-grid, .faq-wrap { gap: 54px; }
  .featured-card { grid-template-columns: 1fr; }
  .product-gallery, .editorial-image-wrap { min-height: 540px; }
  .meaning-grid { grid-template-columns: 1fr; }
  .meaning-card:nth-child(2) { transform: none; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .journal-hero-grid, .journal-layout { gap: 50px; }
  .journal-aside { position: static; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 68px; }
  .brand-mark { font-size: 1.32rem; }
  .brand-orbit { width: 23px; height: 23px; }
  .header-cta { min-height: 38px; padding: 0 14px; font-size: 0.76rem; }
  .header-cta svg { display: none; }
  .hero-home-content { min-height: 650px; padding-block: 64px; }
  .display-title { font-size: clamp(3.3rem, 17vw, 5.15rem); }
  .section-title { font-size: clamp(2.5rem, 12vw, 3.7rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions a { width: 100%; }
  .brand-intro, .meaning-section, .details-section, .buy-steps, .faq-section { padding-block: 84px; }
  .mini-pillars, .steps-grid { grid-template-columns: 1fr; }
  .featured { padding-bottom: 84px; }
  .featured-visual { min-height: 410px; padding: 30px; }
  .featured-copy { padding: 42px 28px; }
  .story-strip { padding-block: 84px; }
  .story-icons { gap: 12px; }
  .story-icon { min-height: 235px; padding: 25px; }
  .story-icon svg { width: 42px; height: 42px; }
  .product-hero { padding-block: 36px 78px; }
  .breadcrumbs { margin-bottom: 30px; }
  .product-gallery { min-height: 430px; border-radius: 180px 180px 22px 22px; }
  .product-copy .display-title { font-size: clamp(3.5rem, 17vw, 5.25rem); }
  .meaning-grid { margin-top: 42px; }
  .editorial-image-wrap { min-height: 470px; border-radius: 20px 150px 20px 20px; }
  .spec-list li { grid-template-columns: 110px 1fr; }
  .final-cta { padding-block: 80px; }
  .journal-hero { padding-block: 38px 82px; }
  .journal-breadcrumbs { margin-bottom: 54px; }
  .journal-standfirst { padding-left: 22px; }
  .journal-body { padding-block: 78px; }
  .journal-intro { margin-bottom: 52px; }
  .resource-card { grid-template-columns: 1fr auto; padding: 22px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

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