:root {
  color-scheme: light;
  --paper: #fff9f6;
  --paper-deep: #faeff1;
  --mist: #f7e4e9;
  --petal: #efb7c7;
  --pink: #d94f83;
  --pink-deep: #b83368;
  --wine: #711f40;
  --wine-deep: #3f1027;
  --ink: #43182b;
  --muted: #735c66;
  --sun: #f0c576;
  --line: rgba(113, 31, 64, 0.18);
  --display: Georgia, "Times New Roman", serif;
  --body: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --container: 1240px;
  --gutter: clamp(24px, 5vw, 72px);
  --section: clamp(96px, 11vw, 164px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
}

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

body::selection {
  background: var(--petal);
  color: var(--wine-deep);
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  background: #fff;
  color: var(--wine-deep);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.section-space {
  padding: var(--section) max(var(--gutter), calc((100vw - var(--container)) / 2));
}

.section-index,
.eyebrow {
  margin: 0 0 22px;
  color: var(--pink-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.1vw, 4.85rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h2 em,
h3 em {
  color: var(--pink-deep);
  font-weight: 400;
}

.section-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.72;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 23px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 12px 30px rgba(78, 15, 42, 0.18);
}

.button-primary:hover {
  background: var(--wine-deep);
  box-shadow: 0 16px 34px rgba(78, 15, 42, 0.26);
}

.button-light {
  background: #fff5f6;
  color: var(--wine-deep);
}

.button-light:hover {
  background: #fff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 14px max(24px, calc((100vw - var(--container)) / 2));
  color: #fff8f7;
  transition: min-height 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(63, 16, 39, 0.96);
  box-shadow: 0 8px 30px rgba(39, 4, 20, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 248, 247, 0.78);
  font-size: 0.77rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  padding: 10px 17px;
  color: #fff;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(540px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  overflow: hidden;
  padding: 132px max(var(--gutter), calc((100vw - var(--container)) / 2)) 70px;
  background: var(--wine-deep);
  color: #fff8f7;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -210px -160px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(245, 178, 197, 0.21);
  border-radius: 50%;
}

.hero::after {
  content: "30 DIAS · 3 CAMINHOS · 1 GESTO POR VEZ";
  position: absolute;
  right: -190px;
  bottom: 180px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  transform: rotate(90deg);
}

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

.hero .eyebrow {
  color: var(--petal);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.1rem, 6.8vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.hero h1 em {
  color: #f2abc0;
  font-weight: 400;
}

.hero-lead {
  max-width: 560px;
  margin: 31px 0 0;
  color: #ddc7ce;
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.hero .button-primary {
  background: #f7c3d2;
  color: var(--wine-deep);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.hero .button-primary:hover {
  background: #ffe1e8;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.hero-note {
  margin: 20px 0 0;
  color: #c7aeb7;
  font-size: 0.79rem;
}

.hero-note span {
  margin-right: 7px;
  color: var(--sun);
}

.hero-stage {
  position: relative;
  min-height: 670px;
}

.ribbon-path {
  position: absolute;
  inset: -20px -30px -20px -20px;
  width: calc(100% + 50px);
  height: calc(100% + 40px);
  overflow: visible;
}

.ribbon-path path {
  fill: none;
  stroke: rgba(242, 171, 192, 0.28);
  stroke-width: 54;
  stroke-linecap: round;
  stroke-dasharray: 4 14;
}

.month-type {
  position: absolute;
  top: 9%;
  right: -5%;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 10rem);
  letter-spacing: -0.08em;
  writing-mode: vertical-rl;
}

.hero-tile,
.hero-mug,
.hero-phone {
  position: absolute;
  filter: drop-shadow(0 28px 28px rgba(19, 0, 8, 0.31));
}

.hero-tile {
  z-index: 1;
  width: min(44vw, 470px);
  left: -4%;
  bottom: 5%;
  transform: rotate(-7deg);
}

.hero-mug {
  z-index: 2;
  width: min(38vw, 420px);
  left: 19%;
  bottom: -1%;
  transform: rotate(2deg);
}

.hero-phone {
  z-index: 4;
  width: 245px;
  right: -2%;
  bottom: -6%;
  transform: rotate(3deg);
}

.day-stamp {
  position: absolute;
  z-index: 5;
  top: 18%;
  left: 6%;
  width: 132px;
  height: 132px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  padding: 18px;
  background: rgba(63, 16, 39, 0.78);
  color: #fff;
  transform: rotate(-7deg);
}

.day-stamp strong {
  color: var(--sun);
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
}

.day-stamp span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.proof-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(var(--gutter), calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-line p {
  min-height: 102px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 18px clamp(18px, 3vw, 45px);
  border-right: 1px solid var(--line);
}

.proof-line p:first-child {
  border-left: 1px solid var(--line);
}

.proof-line strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
}

.proof-line span {
  color: var(--muted);
  font-size: 0.74rem;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(70px, 11vw, 170px);
  background: var(--paper);
}

.steps {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  padding-top: 4px;
  color: var(--pink-deep);
  font-family: var(--display);
  font-size: 0.76rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.steps strong {
  color: var(--ink);
}

.video-note {
  position: relative;
  width: min(420px, 100%);
  margin: 0;
  justify-self: end;
  padding: 15px 15px 21px;
  background: #fff;
  box-shadow: 0 28px 65px rgba(94, 25, 53, 0.16);
  transform: rotate(1.2deg);
}

.video-note::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px -20px -22px 18px;
  border: 1px dashed rgba(185, 51, 104, 0.42);
}

.video-frame {
  aspect-ratio: 478 / 850;
  overflow: hidden;
  background: var(--wine-deep);
}

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

.video-note figcaption {
  padding: 15px 5px 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.84rem;
  font-style: italic;
}

.video-note figcaption span {
  color: var(--pink-deep);
}

.collections {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}

.collections::after {
  content: "";
  position: absolute;
  top: -170px;
  right: -160px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(185, 51, 104, 0.14);
  border-radius: 50%;
}

.collections-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 50px;
}

.collections-heading .section-index {
  grid-column: 1 / -1;
  margin-bottom: -15px;
}

.collections-heading .section-lead {
  margin: 0 0 4px;
}

.collection-selector {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(500px, 1.26fr);
  gap: clamp(35px, 7vw, 90px);
  margin-top: 76px;
}

.collection-tabs {
  border-top: 1px solid var(--line);
}

.collection-tab {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 4px 13px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 24px 35px 24px 0;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding-left 180ms ease;
}

.collection-tab::after {
  content: "→";
  position: absolute;
  top: 34px;
  right: 1px;
  color: var(--pink-deep);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.collection-tab:hover,
.collection-tab.is-active {
  color: var(--wine);
}

.collection-tab.is-active {
  padding-left: 10px;
}

.collection-tab.is-active::after {
  opacity: 1;
  transform: none;
}

.collection-tab > span {
  grid-row: 1 / 3;
  padding-top: 6px;
  color: var(--pink-deep);
  font-family: var(--display);
  font-size: 0.72rem;
}

.collection-tab strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 600;
  line-height: 1.2;
}

.collection-tab small {
  font-size: 0.72rem;
}

.collection-panels {
  min-width: 0;
}

.collection-panel {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(300px, 1.18fr);
  align-items: center;
  gap: 20px;
  overflow: hidden;
  border: 1px solid rgba(113, 31, 64, 0.14);
  background: rgba(255, 249, 246, 0.78);
}

.collection-panel[hidden] {
  display: none;
}

.collection-copy {
  position: relative;
  z-index: 2;
  padding: 48px 0 48px 50px;
}

.collection-kicker {
  margin: 0 0 24px;
  color: var(--pink-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.collection-copy > p:not(.collection-kicker) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.collection-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.collection-copy li {
  position: relative;
  padding-left: 14px;
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 800;
}

.collection-copy li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
}

.collection-panel > img {
  width: 118%;
  max-width: none;
  justify-self: center;
  filter: drop-shadow(0 24px 25px rgba(91, 28, 54, 0.16));
}

.daily {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(390px, 0.84fr);
  align-items: center;
  gap: clamp(70px, 11vw, 170px);
  background: var(--paper);
}

.daily-visual {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
}

.daily-visual::before {
  content: "";
  position: absolute;
  width: 530px;
  height: 530px;
  border-radius: 50%;
  background: var(--mist);
}

.daily-orbit {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px dashed rgba(185, 51, 104, 0.32);
  border-radius: 50%;
}

.daily-visual img {
  position: relative;
  z-index: 3;
  width: 310px;
  filter: drop-shadow(0 30px 28px rgba(72, 13, 39, 0.22));
  transform: rotate(-3deg);
}

.day-number {
  position: absolute;
  z-index: 2;
  top: 2%;
  left: -2%;
  color: var(--petal);
  font-family: var(--display);
  font-size: clamp(8rem, 16vw, 15rem);
  letter-spacing: -0.09em;
  line-height: 1;
}

.daily-facts {
  margin: 46px 0 0;
  border-top: 1px solid var(--line);
}

.daily-facts > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) 1fr;
  gap: 25px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.daily-facts dt {
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
}

.daily-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.arts {
  background: var(--mist);
}

.arts-heading {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.arts-heading .section-index {
  margin-bottom: 22px;
}

.arts-heading h2 {
  margin-inline: auto;
}

.arts-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.86rem;
  font-style: italic;
}

.art-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 68px;
}

.art-card {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(113, 31, 64, 0.1);
  padding: 12px;
  background: #fff9f7;
  cursor: zoom-in;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.art-card:nth-child(2) {
  background: #f5dce4;
}

.art-card:nth-child(3) {
  background: #f9ecef;
}

.art-card:nth-child(4) {
  background: #ecd3dc;
}

.art-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: 0 24px 45px rgba(95, 24, 53, 0.14);
}

.art-card img {
  width: 100%;
  max-height: 275px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.art-card:hover img {
  transform: scale(1.025);
}

.seller {
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
  overflow: hidden;
  background: var(--wine-deep);
  color: #fff8f7;
}

.seller .section-index,
.seller h2 em {
  color: var(--petal);
}

.seller .section-lead {
  color: #ceb8c1;
}

.seller-product {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seller-product::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(239, 183, 199, 0.25);
  border-radius: 50%;
}

.seller-product img {
  position: relative;
  z-index: 2;
  width: 115%;
  max-width: none;
  filter: drop-shadow(0 35px 30px rgba(0, 0, 0, 0.32));
}

.seller-outline {
  position: absolute;
  top: -8%;
  left: -8%;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--display);
  font-size: clamp(12rem, 23vw, 21rem);
  line-height: 1;
}

.seller-product > p {
  position: absolute;
  z-index: 4;
  inset: auto 5% 3%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 16px 20px;
  background: #fff9f7;
  color: var(--wine-deep);
  font-size: 0.78rem;
  text-align: center;
}

.seller-product > p span {
  color: var(--pink-deep);
}

.seller-points {
  margin-top: 44px;
}

.seller-points article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.seller-points article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.seller-points article > span {
  padding-top: 4px;
  color: var(--petal);
  font-family: var(--display);
  font-size: 0.78rem;
}

.seller-points h3 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
}

.seller-points p {
  margin: 0;
  color: #c8b4bd;
  font-size: 0.91rem;
}

.occasions {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(450px, 1.28fr);
  gap: clamp(60px, 10vw, 150px);
  background: var(--paper-deep);
}

.occasions-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

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

.occasion-list p {
  position: relative;
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 28px;
  margin: 0;
  padding: 31px 35px 32px 0;
  border-bottom: 1px solid var(--line);
}

.occasion-list p::after {
  content: "↗";
  position: absolute;
  top: 32px;
  right: 0;
  color: var(--pink-deep);
}

.occasion-list span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.occasion-list strong {
  font-family: var(--display);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.3;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(450px, 1.22fr);
  gap: clamp(60px, 10vw, 160px);
  background: var(--paper);
}

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

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

.faq summary {
  position: relative;
  padding: 27px 55px 27px 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 2px;
  color: var(--pink-deep);
  font-family: var(--body);
  font-size: 1.8rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

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

.faq details p {
  max-width: 610px;
  margin: -3px 0 27px;
  color: var(--muted);
}

.access {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.9fr);
  align-items: center;
  gap: 60px;
  overflow: hidden;
  background: var(--wine);
  color: #fff8f7;
}

.access::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -150px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.access-copy {
  position: relative;
  z-index: 4;
}

.access .section-index,
.access h2 em {
  color: #ffd0dd;
}

.access-copy > p:not(.section-index):not(.access-note) {
  max-width: 670px;
  margin: 28px 0 0;
  color: #e0c9d2;
  font-size: 1.05rem;
}

.access-note {
  margin: 24px 0 22px;
  color: #f2b5c8;
  font-size: 0.8rem;
  font-weight: 750;
}

.access-visual {
  position: relative;
  z-index: 2;
  min-height: 520px;
}

.access-shirt,
.access-mug {
  position: absolute;
  filter: drop-shadow(0 34px 30px rgba(39, 4, 20, 0.3));
}

.access-shirt {
  z-index: 1;
  width: 108%;
  right: 3%;
  bottom: 3%;
}

.access-mug {
  z-index: 2;
  width: 65%;
  right: -7%;
  bottom: -6%;
}

.access-month {
  position: absolute;
  top: -4%;
  right: -10%;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--display);
  font-size: clamp(6rem, 12vw, 12rem);
  letter-spacing: -0.08em;
  writing-mode: vertical-rl;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 50px;
  padding: 32px max(24px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #30091d;
  color: #b89aa7;
  font-size: 0.75rem;
}

.site-footer p {
  margin: 0;
}

.footer-brand img {
  width: 108px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand {
  min-width: 108px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.art-dialog {
  width: min(940px, calc(100vw - 36px));
  max-height: calc(100dvh - 36px);
  overflow: auto;
  border: 0;
  padding: 52px 24px 24px;
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(48, 9, 29, 0.48);
}

.art-dialog::backdrop {
  background: rgba(38, 4, 19, 0.86);
  backdrop-filter: blur(6px);
}

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

.dialog-close {
  position: absolute;
  top: 12px;
  right: 17px;
  border: 0;
  padding: 7px 0;
  background: transparent;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.dialog-close span {
  margin-left: 6px;
  font-size: 1.3rem;
  font-weight: 400;
  vertical-align: -2px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(360px, 0.9fr) minmax(480px, 1fr);
  }

  .hero-phone {
    width: 220px;
  }

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

  .collection-copy {
    padding: 42px 42px 0;
  }

  .collection-panel > img {
    width: 80%;
    margin: -25px auto -25px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    min-height: 72px;
  }

  .site-header.is-scrolled {
    min-height: 64px;
  }

  .site-header .nav-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 4;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 19px;
    height: 1px;
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 90px max(28px, 10vw);
    background: var(--wine-deep);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav > a:not(.nav-cta),
  .site-nav .nav-cta {
    display: block;
  }

  .site-nav > a:not(.nav-cta) {
    width: 100%;
    padding: 12px 0;
    color: #fff8f7;
    font-family: var(--display);
    font-size: clamp(1.65rem, 6vw, 2.5rem);
    font-weight: 500;
  }

  .site-nav .nav-cta {
    margin-top: 22px;
    padding: 13px 22px;
    font-family: var(--body);
    font-size: 0.9rem;
  }

  .menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 130px;
    padding-bottom: 0;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 12vw, 6.7rem);
  }

  .hero-stage {
    width: min(720px, 100%);
    min-height: 680px;
    margin: -15px auto 0;
  }

  .hero-tile {
    width: min(57vw, 430px);
    left: 1%;
  }

  .hero-mug {
    width: min(49vw, 390px);
    left: 27%;
  }

  .hero-phone {
    width: min(29vw, 220px);
    right: 4%;
  }

  .day-stamp {
    left: 7%;
  }

  .experience,
  .daily,
  .seller,
  .occasions,
  .faq,
  .access {
    grid-template-columns: 1fr;
  }

  .experience {
    gap: 80px;
  }

  .video-note {
    width: min(420px, 88%);
    justify-self: center;
  }

  .collections-heading {
    grid-template-columns: 1fr;
  }

  .collections-heading .section-lead {
    margin-top: 0;
  }

  .collection-selector {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .collection-tab {
    min-height: 150px;
    display: block;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    padding: 19px;
  }

  .collection-tab:last-child {
    border-right: 0;
  }

  .collection-tab.is-active {
    padding-left: 19px;
    background: rgba(255, 255, 255, 0.38);
  }

  .collection-tab > span,
  .collection-tab strong,
  .collection-tab small {
    display: block;
  }

  .collection-tab strong {
    margin-top: 10px;
  }

  .collection-tab::after {
    top: auto;
    right: 18px;
    bottom: 14px;
  }

  .collection-panel {
    min-height: 540px;
    grid-template-columns: minmax(270px, 0.9fr) minmax(300px, 1.1fr);
  }

  .collection-copy {
    padding: 45px 0 45px 44px;
  }

  .collection-panel > img {
    width: 110%;
    margin: 0;
  }

  .daily {
    gap: 70px;
  }

  .daily-visual {
    width: min(650px, 100%);
    margin: 0 auto;
  }

  .daily-copy {
    max-width: 680px;
  }

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

  .seller {
    gap: 80px;
  }

  .seller-product {
    width: min(590px, 100%);
    margin: 0 auto;
  }

  .occasions-heading {
    position: static;
  }

  .faq {
    gap: 65px;
  }

  .access {
    padding-bottom: 0;
  }

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

  .access-visual {
    width: min(650px, 100%);
    min-height: 470px;
    margin: 0 auto;
  }

  .access-shirt {
    width: 104%;
    right: 8%;
    bottom: 4%;
  }

  .access-mug {
    width: 64%;
    right: -4%;
    bottom: -4%;
  }
}

@media (max-width: 600px) {
  :root {
    --section: 90px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 18vw, 5.1rem);
  }

  .hero-lead {
    margin-top: 25px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .text-link {
    width: fit-content;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 510px;
    margin-top: 12px;
  }

  .ribbon-path {
    inset: 0 -100px 0 -35px;
    width: calc(100% + 140px);
  }

  .month-type {
    display: none;
  }

  .hero-tile {
    width: 340px;
    left: -31%;
    bottom: 2%;
  }

  .hero-mug {
    width: 310px;
    left: 12%;
    bottom: -1%;
  }

  .hero-phone {
    width: 164px;
    right: -5%;
    bottom: -3%;
  }

  .day-stamp {
    top: 8%;
    left: 1%;
    width: 105px;
    height: 105px;
    padding: 14px;
  }

  .day-stamp strong {
    font-size: 2.45rem;
  }

  .day-stamp span {
    font-size: 0.5rem;
  }

  .proof-line {
    grid-template-columns: 1fr;
  }

  .proof-line p,
  .proof-line p:first-child {
    min-height: 82px;
    padding: 14px 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }

  .steps li {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .video-note {
    width: calc(100% - 18px);
    justify-self: start;
    padding: 12px 12px 18px;
  }

  .video-note::before {
    inset: 14px 0 -18px 14px;
  }

  .collection-selector {
    margin-top: 52px;
  }

  .collection-tabs {
    display: flex;
    width: calc(100vw - 24px);
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .collection-tab {
    min-width: min(74vw, 270px);
    min-height: 130px;
    scroll-snap-align: start;
  }

  .collection-panel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .collection-copy {
    padding: 38px 28px 0;
  }

  .collection-copy h3 {
    font-size: 2.65rem;
  }

  .collection-panel > img {
    width: 115%;
    margin: -8px auto -22px;
  }

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

  .daily-visual::before {
    width: 380px;
    height: 380px;
  }

  .daily-orbit {
    width: min(450px, calc(100vw - 32px));
    height: min(450px, calc(100vw - 32px));
  }

  .daily-visual img {
    width: 235px;
  }

  .day-number {
    top: 5%;
    left: -8%;
    font-size: 9rem;
  }

  .daily-facts > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .arts-heading > p:last-child {
    margin-top: 18px;
  }

  .art-gallery {
    width: calc(100vw - 24px);
    display: flex;
    gap: 12px;
    margin-top: 50px;
    padding: 0 24px 14px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .art-card {
    width: min(82vw, 350px);
    min-width: min(82vw, 350px);
    min-height: 330px;
    scroll-snap-align: start;
  }

  .art-card img {
    max-height: 290px;
  }

  .seller-product {
    min-height: 460px;
  }

  .seller-product::before {
    width: 370px;
    height: 370px;
  }

  .seller-product img {
    width: 130%;
  }

  .seller-product > p {
    inset: auto 0 0;
    gap: 9px;
    padding: 14px 8px;
    font-size: 0.72rem;
  }

  .occasion-list p {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .faq {
    gap: 52px;
  }

  .faq summary {
    padding-right: 43px;
  }

  .access {
    gap: 45px;
  }

  .access-visual {
    min-height: 360px;
  }

  .access-shirt {
    width: 112%;
    right: 4%;
    bottom: 5%;
  }

  .access-mug {
    width: 74%;
    right: -18%;
    bottom: -2%;
  }

  .access-month {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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