:root {
  color-scheme: light dark;
  --ink: #10241d;
  --ink-soft: #4f625a;
  --paper: #f3f4ed;
  --surface: #fbfcf6;
  --surface-deep: #e6ece2;
  --forest: #0a3226;
  --forest-deep: #061f18;
  --forest-soft: #174b3a;
  --gold: #d6ad4b;
  --gold-light: #edcf82;
  --line: rgba(16, 36, 29, 0.16);
  --line-light: rgba(246, 249, 241, 0.2);
  --shadow: 0 28px 70px rgba(6, 40, 29, 0.2);
  --radius: 18px;
  --display: "Arial Narrow", "Aptos Display", "Trebuchet MS", Arial, sans-serif;
  --body: Aptos, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.62;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--gold-light);
  color: #15251f;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 29, 22, 0.86);
  color: #f6f8f1;
  backdrop-filter: blur(18px) saturate(130%);
}

.brand {
  display: grid;
  line-height: 0.92;
  letter-spacing: 0.2em;
}

.brand span {
  font-family: var(--display);
  font-size: 1.24rem;
  font-stretch: condensed;
  font-weight: 900;
}

.brand small {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(17px, 2.4vw, 34px);
  white-space: nowrap;
}

.site-nav a {
  font-size: 0.87rem;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--gold-light);
}

.site-nav a:active {
  transform: translateY(1px);
}

.site-nav .nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #16251f;
}

.site-nav .nav-cta:hover {
  background: var(--gold-light);
  color: #16251f;
}

.section-pad {
  width: min(calc(100% - 48px), 1280px);
  margin-inline: auto;
  padding-block: clamp(86px, 10vw, 152px);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
}

h1 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(3.6rem, 5.4vw, 5.8rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.87;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5.6vw, 6rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.91;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(1, 18, 13, 0.25);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(1, 18, 13, 0.31);
}

.button:active {
  transform: translateY(1px) scale(0.985);
}

.button-gold {
  background: var(--gold);
  color: #14241e;
}

.button-gold:hover {
  background: var(--gold-light);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: clamp(12px, 3vw, 48px);
  overflow: hidden;
  padding: 104px clamp(24px, 6vw, 92px) 34px;
  background: var(--forest-deep) url("../assets/axe-de-cada-dia/textura-hero-floresta.webp") center / cover no-repeat;
  color: #f5f8f0;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 22, 16, 0.72) 0%, rgba(3, 30, 22, 0.24) 58%, rgba(2, 25, 18, 0.06));
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  width: 52vw;
  height: 52vw;
  right: -16vw;
  bottom: -30vw;
  border: 1px solid rgba(244, 209, 122, 0.26);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-lead {
  max-width: 40ch;
  margin: 24px 0 30px;
  color: rgba(245, 248, 240, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-products {
  position: relative;
  align-self: stretch;
  min-height: 630px;
}

.hero-orbit {
  position: absolute;
  width: min(37vw, 560px);
  height: min(37vw, 560px);
  right: 6%;
  top: 9%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.hero-orbit::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(214, 173, 75, 0.28);
  border-radius: 50%;
  content: "";
}

.hero-shirt,
.hero-mug {
  position: absolute;
  filter: drop-shadow(0 38px 45px rgba(0, 15, 10, 0.38));
  will-change: transform;
}

.hero-shirt {
  width: min(35vw, 500px);
  right: -4%;
  top: 4%;
  z-index: 1;
  transform: rotate(2deg);
}

.hero-mug {
  width: min(42vw, 560px);
  left: -9%;
  bottom: 2%;
  z-index: 2;
  transform: rotate(-2deg);
}

.collection-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.collection-strip p {
  min-height: 126px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 24px clamp(22px, 4vw, 58px);
}

.collection-strip p + p {
  border-left: 1px solid var(--line);
}

.collection-strip strong {
  color: var(--forest-soft);
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.collection-strip span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.daily-story {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.daily-visual {
  position: relative;
  min-height: 760px;
}

.daily-visual > img {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  margin-inline: auto;
  filter: drop-shadow(0 32px 46px rgba(12, 44, 33, 0.25));
}

.phone-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  left: 50%;
  top: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 173, 75, 0.44), rgba(214, 173, 75, 0.04) 60%, transparent 72%);
  transform: translateX(-50%);
}

.today-card {
  position: absolute;
  z-index: 2;
  right: -8%;
  bottom: 12%;
  width: min(300px, 72%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background: rgba(248, 250, 243, 0.9);
  box-shadow: var(--shadow);
  color: #183127;
  backdrop-filter: blur(18px);
}

.today-card span {
  display: block;
  margin-bottom: 8px;
  color: #35604f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.today-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.today-card p {
  margin: 10px 0 0;
  color: #4a6158;
  font-size: 0.91rem;
}

.daily-copy > p,
.collection-heading > p,
.opportunity-copy > p,
.respect-copy > p,
.access-copy > p,
.journey-heading > p,
.video-copy > p {
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.daily-copy > p {
  margin: 26px 0 46px;
}

.daily-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.daily-points article {
  padding: 28px 28px 0 0;
}

.daily-points article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.daily-points span,
.opportunity-grid strong {
  color: var(--forest-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.daily-points h3 {
  margin: 14px 0 12px;
}

.daily-points p,
.opportunity-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.video-story {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: clamp(54px, 9vw, 140px);
  padding-inline: max(24px, calc((100vw - 1280px) / 2));
  background: var(--surface-deep);
}

.video-copy .eyebrow {
  color: var(--forest-soft);
}

.video-copy > p:not(.eyebrow) {
  margin: 24px 0 36px;
}

.video-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.video-facts div {
  padding: 22px 22px 0 0;
}

.video-facts div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.video-facts dt {
  font-weight: 900;
}

.video-facts dd {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.video-frame {
  position: relative;
  min-height: 730px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 16%, rgba(214, 173, 75, 0.75), transparent 31%),
    var(--forest);
}

.video-frame::after {
  position: absolute;
  width: 430px;
  height: 430px;
  right: -165px;
  bottom: -150px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.video-frame video {
  position: relative;
  z-index: 1;
  width: min(74%, 380px);
  max-height: 650px;
  border-radius: 14px;
  background: #0d1411;
  box-shadow: 0 34px 70px rgba(1, 17, 12, 0.46);
}

.video-frame > p {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  max-width: 28ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  text-align: right;
}

.journey-heading {
  max-width: 830px;
  margin-bottom: 68px;
}

.journey-heading > p {
  margin: 20px 0 0;
}

.journey-list {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.journey-list li {
  padding: 34px clamp(24px, 4vw, 52px) 0 0;
}

.journey-list li + li {
  padding-left: clamp(24px, 4vw, 52px);
  border-left: 1px solid var(--line);
}

.journey-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--forest);
  color: #f5f8f1;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-list strong {
  display: block;
  margin: 42px 0 12px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.03;
  text-transform: uppercase;
}

.journey-list p {
  margin: 0;
  color: var(--ink-soft);
}

.collection {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1280px) / 2));
  background: var(--surface);
}

.collection-heading {
  max-width: 920px;
  margin-bottom: 58px;
}

.collection-heading > p {
  margin: 22px 0 0;
}

.art-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 420px;
  gap: 18px;
}

.art-card {
  --image-scale: 1;
  --image-hover-scale: 1.045;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 60px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  cursor: zoom-in;
  text-align: left;
  transition: border-color 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease;
}

.art-card:hover {
  border-color: rgba(34, 91, 69, 0.45);
  box-shadow: 0 20px 42px rgba(16, 61, 44, 0.12);
  transform: translateY(-3px);
}

.art-card:active {
  transform: translateY(1px) scale(0.992);
}

.art-card img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  transform: scale(var(--image-scale));
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.art-card:hover img {
  transform: scale(var(--image-hover-scale)) rotate(-0.35deg);
}

.art-card > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.art-card > span strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.art-card-ogum {
  --image-scale: 1.06;
  --image-hover-scale: 1.105;
  background: #e7eef3;
}

.art-card-xango {
  --image-scale: 1.2;
  --image-hover-scale: 1.25;
  background: #f3e8e3;
}

.art-card-tranca {
  --image-scale: 1.1;
  --image-hover-scale: 1.145;
  background: #ece5e2;
}

.art-card-baiano {
  --image-scale: 1.12;
  --image-hover-scale: 1.165;
  background: #f2eddd;
}

.art-card-ze {
  --image-scale: 1.12;
  --image-hover-scale: 1.165;
  background: #f0e5e7;
}

.art-card-oxum {
  --image-scale: 1.1;
  --image-hover-scale: 1.145;
  background: #f3edda;
}

.opportunity {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: start;
  gap: clamp(56px, 7vw, 104px);
}

.opportunity-copy {
  min-width: 0;
  position: sticky;
  top: 118px;
}

.opportunity-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 4.2vw, 4.8rem);
}

.opportunity-copy > p {
  margin: 24px 0 0;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.opportunity-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--surface);
}

.opportunity-grid .opportunity-main {
  grid-column: 1 / 3;
  min-height: 410px;
  justify-content: flex-start;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(214, 173, 75, 0.42), transparent 29%),
    var(--forest);
  color: #f5f8f1;
}

.opportunity-main strong {
  color: var(--gold-light);
}

.opportunity-main h3 {
  max-width: 12ch;
  margin: auto 0 18px;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  text-transform: uppercase;
}

.opportunity-main p {
  max-width: 50ch;
  color: rgba(245, 248, 241, 0.76);
}

.opportunity-grid article:not(.opportunity-main) p {
  margin-top: auto;
}

.opportunity-grid .opportunity-pattern {
  grid-column: 1 / 3;
  min-height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.opportunity-pattern span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--forest-soft);
  font-family: var(--display);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.opportunity-pattern span + span {
  border-left: 1px solid var(--line);
}

.respect-note {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: clamp(40px, 9vw, 120px);
}

.respect-note::before {
  position: absolute;
  inset: 0 50% 0 calc((1280px - 100vw) / 2);
  z-index: -1;
  background: var(--surface-deep);
  content: "";
}

.respect-mark {
  color: transparent;
  font-family: var(--display);
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(20, 76, 57, 0.33);
  transform: rotate(-90deg);
}

.respect-copy {
  max-width: 770px;
}

.respect-copy > p {
  margin: 26px 0 0;
}

.access {
  position: relative;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: 50px;
  margin-bottom: clamp(64px, 8vw, 110px);
  padding-inline: clamp(34px, 6vw, 78px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest-deep) url("../assets/axe-de-cada-dia/textura-hero-floresta.webp") center / cover no-repeat;
  color: #f5f8f1;
}

.access::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 26, 19, 0.91), rgba(3, 26, 19, 0.42));
  content: "";
}

.access-copy,
.access-product {
  position: relative;
  z-index: 1;
}

.access-copy {
  max-width: 760px;
}

.access-copy > img {
  width: 230px;
  margin-bottom: 42px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #ffffff;
}

.access-copy > p {
  color: rgba(245, 248, 241, 0.8);
}

.access-copy > p:first-of-type {
  margin: 24px 0 0;
}

.access-copy .access-note {
  margin: 28px 0 18px;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 900;
}

.access-product {
  align-self: end;
}

.access-product img {
  width: min(100%, 610px);
  margin-inline: auto;
  filter: drop-shadow(0 36px 44px rgba(0, 16, 11, 0.42));
}

.access-product-pillow img {
  width: min(94%, 520px);
  transform: translateY(5%) rotate(3deg);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer span {
  color: var(--forest-soft);
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.image-dialog {
  width: min(92vw, 980px);
  max-height: 90dvh;
  padding: 58px 22px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.image-dialog::backdrop {
  background: rgba(3, 24, 17, 0.82);
  backdrop-filter: blur(8px);
}

.image-dialog img {
  width: 100%;
  max-height: calc(90dvh - 90px);
  object-fit: contain;
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--forest-soft);
  font-weight: 900;
  cursor: pointer;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

  .hero {
    grid-template-columns: minmax(320px, 0.82fr) minmax(430px, 1.18fr);
  }

  .hero-products {
    min-height: 570px;
  }

  .daily-story {
    gap: 54px;
  }

  .today-card {
    right: 0;
  }

  .art-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 400px;
  }

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

  .opportunity-copy {
    position: static;
    max-width: 850px;
  }
}

@media (max-width: 767px) {
  .site-header {
    min-height: 68px;
    padding: 9px 16px;
  }

  .brand span {
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }

  .section-pad {
    width: calc(100% - 36px);
    padding-block: 78px;
  }

  h1 {
    max-width: 8.5ch;
    font-size: clamp(3.15rem, 15vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 4.4rem);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 104px 18px 18px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(2, 22, 16, 0.8), rgba(3, 30, 22, 0.16));
  }

  .hero-lead {
    max-width: 32ch;
    margin: 20px 0 26px;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
  }

  .hero-products {
    min-height: 430px;
  }

  .hero-orbit {
    width: 330px;
    height: 330px;
    right: -6%;
  }

  .hero-shirt {
    width: 68%;
    right: -4%;
  }

  .hero-mug {
    width: 92%;
    left: -5%;
    bottom: -1%;
  }

  .collection-strip {
    grid-template-columns: 1fr;
  }

  .collection-strip p {
    min-height: 96px;
    padding: 18px;
  }

  .collection-strip p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .daily-story,
  .video-story,
  .respect-note,
  .access {
    grid-template-columns: 1fr;
  }

  .daily-story {
    gap: 46px;
  }

  .daily-visual {
    min-height: 690px;
  }

  .daily-visual > img {
    width: min(90%, 380px);
  }

  .phone-glow {
    width: 390px;
    height: 390px;
  }

  .today-card {
    right: 0;
    bottom: 8%;
  }

  .daily-points,
  .video-facts {
    grid-template-columns: 1fr;
  }

  .daily-points article,
  .daily-points article + article,
  .video-facts div,
  .video-facts div + div {
    padding: 24px 0 0;
    border-left: 0;
  }

  .daily-points article + article,
  .video-facts div + div {
    margin-top: 24px;
    border-top: 1px solid var(--line);
  }

  .video-story,
  .collection {
    width: 100%;
    padding-inline: 18px;
  }

  .video-frame {
    min-height: 610px;
  }

  .video-frame video {
    width: min(82%, 330px);
    max-height: 550px;
  }

  .video-frame > p {
    display: none;
  }

  .journey-heading {
    margin-bottom: 46px;
  }

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

  .journey-list li,
  .journey-list li + li {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 18px;
    padding: 26px 0;
    border-left: 0;
  }

  .journey-list li + li {
    border-top: 1px solid var(--line);
  }

  .journey-list span {
    align-self: start;
  }

  .journey-list strong {
    margin: 4px 0 10px;
  }

  .art-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
    gap: 14px;
    overflow: visible;
    padding-bottom: 0;
  }

  .art-card {
    width: 100%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .art-card-ogum,
  .art-card-xango,
  .art-card-tranca,
  .art-card-baiano,
  .art-card-ze,
  .art-card-oxum {
    grid-column: auto;
    grid-row: auto;
  }

  .opportunity {
    gap: 44px;
  }

  .opportunity-copy h2 {
    max-width: none;
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

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

  .opportunity-grid .opportunity-main,
  .opportunity-grid .opportunity-pattern {
    grid-column: auto;
  }

  .opportunity-grid .opportunity-main {
    min-height: 370px;
  }

  .opportunity-grid article {
    min-height: 220px;
  }

  .opportunity-grid .opportunity-pattern {
    grid-template-columns: 1fr 1fr;
  }

  .opportunity-pattern span:nth-child(3) {
    border-left: 0;
  }

  .opportunity-pattern span:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .respect-note {
    gap: 22px;
  }

  .respect-note::before {
    inset: 0 -18px 55% -18px;
  }

  .respect-mark {
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    transform: none;
  }

  .access {
    width: calc(100% - 32px);
    min-height: auto;
    padding: 52px 24px 0;
  }

  .access-copy > img {
    width: 205px;
    margin-bottom: 34px;
  }

  .access-product img {
    width: 112%;
    max-width: none;
    margin-left: -6%;
  }

  .access-product-pillow img {
    width: 100%;
    margin-left: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-shirt {
    animation: settle-shirt 900ms 170ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-mug {
    animation: settle-mug 980ms 90ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-orbit::after {
    animation: breathe 4.8s ease-in-out infinite alternate;
  }
}

@keyframes settle-shirt {
  from {
    opacity: 0;
    transform: translate(38px, -12px) rotate(6deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(2deg);
  }
}

@keyframes settle-mug {
  from {
    opacity: 0;
    transform: translate(-42px, 22px) rotate(-7deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(-2deg);
  }
}

@keyframes breathe {
  from {
    opacity: 0.5;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

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

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

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--forest-deep);
    backdrop-filter: none;
  }

  .today-card {
    background: #f7f9f2;
    backdrop-filter: none;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #edf4ee;
    --ink-soft: #b4c4bb;
    --paper: #071c15;
    --surface: #0b261d;
    --surface-deep: #0d2e23;
    --forest: #124532;
    --forest-deep: #041710;
    --forest-soft: #74b399;
    --gold: #d8b458;
    --gold-light: #efd58f;
    --line: rgba(231, 242, 235, 0.15);
    --shadow: 0 28px 70px rgba(0, 8, 5, 0.48);
  }

  .collection-strip strong,
  .daily-points span,
  .opportunity-grid strong,
  .site-footer span,
  .dialog-close,
  .video-copy .eyebrow,
  .opportunity-pattern span {
    color: var(--gold-light);
  }

  .today-card {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(9, 38, 28, 0.91);
    color: #eef5ef;
  }

  .today-card span,
  .today-card p {
    color: #b9cdc1;
  }

  .art-card-ogum {
    background: #112d38;
  }

  .art-card-xango,
  .art-card-tranca,
  .art-card-ze {
    background: #352325;
  }

  .art-card-baiano,
  .art-card-oxum {
    background: #352f1d;
  }

  .respect-mark {
    -webkit-text-stroke-color: rgba(216, 180, 88, 0.34);
  }
}
