:root {
  --paper: #f4efe4;
  --paper-light: #fbf8f1;
  --paper-deep: #e8dfcf;
  --forest: #123e34;
  --forest-deep: #0b2f28;
  --forest-soft: #285e50;
  --sage: #dfe8da;
  --sage-deep: #cbd9c7;
  --ink: #173f35;
  --muted: #5f6e66;
  --gold: #b58a3c;
  --gold-light: #d9bd78;
  --coral: #d77b67;
  --line: rgba(23, 63, 53, 0.18);
  --display: Georgia, "Times New Roman", serif;
  --body: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --container: 1240px;
  --section: clamp(88px, 10vw, 160px);
  --shadow-object: 0 40px 80px rgba(14, 48, 40, 0.22);
}

* {
  box-sizing: border-box;
}

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

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

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  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: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 15px;
  background: var(--paper-light);
  color: var(--forest);
  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: 80;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px clamp(20px, 4.2vw, 70px);
  border-bottom: 1px solid rgba(244, 239, 228, 0.18);
  background: rgba(11, 47, 40, 0.82);
  color: #fffaf0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: min-height 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(11, 47, 40, 0.96);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 31px);
  font-size: 0.86rem;
  font-weight: 720;
  white-space: nowrap;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: #e9eee9;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -6px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  min-height: 44px;
  padding: 10px 19px;
  background: var(--paper-light);
  color: var(--forest-deep);
}

.button-primary {
  background: var(--paper-light);
  color: var(--forest-deep);
  box-shadow: 0 18px 40px rgba(2, 19, 15, 0.18);
}

.button-gold {
  background: var(--gold-light);
  color: var(--forest-deep);
  box-shadow: 0 20px 44px rgba(4, 25, 20, 0.25);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(2, 19, 15, 0.24);
}

.nav-cta:active,
.button:active {
  transform: translateY(1px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(500px, 1.13fr);
  align-items: center;
  gap: clamp(20px, 3vw, 60px);
  overflow: hidden;
  padding: 118px max(24px, calc((100vw - var(--container)) / 2)) 62px;
  background: var(--forest);
  color: #fffaf0;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, transparent, #000 60%, #000);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  right: -250px;
  top: 15%;
  border: 1px solid rgba(217, 189, 120, 0.28);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 3vh;
}

.eyebrow,
.section-index {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.4rem, 6.3vw, 6.8rem);
  line-height: 0.91;
}

.hero h1 em {
  display: block;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-lead {
  max-width: 600px;
  margin: 30px 0 31px;
  color: #dfe9e3;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.6;
}

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

.text-link {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-weight: 750;
}

.text-link:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 26px 0 0;
  color: #b9cbc4;
  font-size: 0.86rem;
}

.hero-note span {
  color: var(--gold-light);
}

.hero-stage {
  position: relative;
  min-height: min(730px, 78vh);
}

.sun-arch {
  position: absolute;
  width: min(40vw, 590px);
  height: min(40vw, 590px);
  right: 2%;
  bottom: -13%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(155deg, #f3ead8 0%, #dfe8da 65%, #bdd0bc 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.sun-arch::before,
.sun-arch::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(18, 62, 52, 0.13);
  border-radius: inherit;
}

.sun-arch::after {
  inset: 16%;
}

.hero-mug {
  position: absolute;
  z-index: 2;
  width: min(42vw, 600px);
  left: -7%;
  bottom: 1%;
  filter: drop-shadow(0 34px 36px rgba(4, 29, 22, 0.32));
  transform: rotate(-2deg);
}

.hero-phone {
  position: absolute;
  z-index: 4;
  width: min(19vw, 280px);
  right: 5%;
  bottom: -1%;
  filter: drop-shadow(0 28px 32px rgba(3, 22, 17, 0.4));
  transform: rotate(2.5deg);
}

.page-mark {
  position: absolute;
  z-index: 3;
  top: 4%;
  right: 4%;
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.64);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-align: right;
}

.page-mark span:nth-child(2) {
  color: var(--gold-light);
}

.daily-stamp {
  position: absolute;
  z-index: 6;
  right: 29%;
  bottom: 9%;
  width: 154px;
  height: 154px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 62, 52, 0.18);
  border-radius: 50%;
  background: var(--paper-light);
  color: var(--forest);
  font-size: 0.66rem;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 20px 50px rgba(3, 28, 21, 0.2);
  transform: rotate(-7deg);
}

.daily-stamp::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(181, 138, 60, 0.62);
  border-radius: 50%;
}

.daily-stamp strong {
  margin: 3px 0;
  font-family: var(--display);
  font-size: 0.95rem;
}

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

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

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

.proof-line strong {
  font-family: var(--display);
  font-size: 1.17rem;
  font-weight: 600;
}

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

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

h2 {
  font-size: clamp(2.55rem, 5vw, 5rem);
  line-height: 0.98;
}

.section-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.experience .section-index,
.arts .section-index,
.seller .section-index,
.occasions .section-index,
.faq .section-index {
  color: var(--gold);
}

.steps {
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

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

.steps li > span {
  padding-top: 2px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.88rem;
}

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

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

.video-note {
  position: relative;
  margin: 0;
  padding: 18px 18px 22px;
  background: var(--paper-light);
  box-shadow: 0 35px 75px rgba(28, 49, 41, 0.15);
  transform: rotate(1.5deg);
}

.video-note::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 20px -24px -24px 20px;
  border: 1px solid rgba(181, 138, 60, 0.5);
}

.video-frame {
  overflow: hidden;
  background: var(--forest-deep);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 478 / 850;
  max-height: 620px;
  object-fit: cover;
}

.video-note figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.92rem;
  font-style: italic;
}

.video-note figcaption span {
  color: var(--gold);
  font-family: var(--body);
  font-style: normal;
}

.daily-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.77fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 11vw, 170px);
  overflow: hidden;
  background: var(--sage);
}

.daily-visual {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.daily-visual::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(18, 62, 52, 0.16);
  border-radius: 50%;
}

.daily-visual::after {
  content: "";
  position: absolute;
  width: 370px;
  height: 630px;
  border-radius: 190px 190px 10px 10px;
  background: rgba(251, 248, 241, 0.62);
}

.daily-visual img {
  position: relative;
  z-index: 2;
  width: min(310px, 68vw);
  filter: drop-shadow(0 28px 33px rgba(18, 62, 52, 0.24));
  transform: rotate(-2deg);
}

.daily-quote {
  position: absolute;
  z-index: 3;
  top: 12%;
  left: -3%;
  color: var(--gold);
  font-family: var(--display);
  font-size: 8rem;
  line-height: 1;
  opacity: 0.58;
}

.daily-copy .section-index {
  color: var(--forest-soft);
}

.daily-facts {
  margin: 48px 0 0;
}

.daily-facts > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) 1.3fr;
  gap: 24px;
  padding: 21px 0;
  border-top: 1px solid rgba(18, 62, 52, 0.18);
}

.daily-facts > div:last-child {
  border-bottom: 1px solid rgba(18, 62, 52, 0.18);
}

.daily-facts dt {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
}

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

.arts {
  background: var(--paper-light);
}

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

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

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

.art-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0;
  min-height: 275px;
  padding: 24px 18px;
  background: #edf2ee;
  color: var(--ink);
  cursor: zoom-in;
  isolation: isolate;
}

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

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

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

.art-card img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 23px 25px rgba(20, 45, 36, 0.16));
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.art-card:hover img {
  transform: scale(1.035) rotate(-1deg);
}

.seller {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(80px, 12vw, 180px);
  background: var(--forest-deep);
  color: #fffaf0;
}

.seller-product {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.seller-arch {
  position: absolute;
  inset: 0 2% 5%;
  border: 1px solid rgba(217, 189, 120, 0.38);
  border-radius: 240px 240px 6px 6px;
  background: rgba(255, 255, 255, 0.025);
}

.seller-product img {
  position: relative;
  z-index: 2;
  width: 104%;
  max-width: none;
  filter: drop-shadow(0 36px 36px rgba(0, 0, 0, 0.38));
}

.seller-product > p {
  position: absolute;
  z-index: 3;
  inset: auto 7% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 18px;
  background: var(--paper-light);
  color: var(--forest);
  font-family: var(--display);
  text-align: center;
}

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

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

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

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

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

.seller-points article > span {
  padding-top: 3px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 0.82rem;
}

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

.seller-points p {
  margin: 0;
  color: #b9ccc4;
}

.occasions {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1.22fr);
  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: 150px 1fr;
  gap: 30px;
  margin: 0;
  padding: 33px 10px 34px 0;
  border-bottom: 1px solid var(--line);
}

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

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

.occasion-list strong {
  padding-right: 30px;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.25;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  gap: clamp(60px, 10vw, 160px);
  background: var(--paper-light);
}

.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: 22px;
  right: 2px;
  color: var(--gold);
  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.9fr) minmax(400px, 0.8fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  background: var(--forest);
  color: #fffaf0;
}

.access::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -140px;
  border: 1px solid rgba(217, 189, 120, 0.24);
  border-radius: 50%;
}

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

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

.access-note {
  margin: 24px 0 20px;
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 780;
}

.access-visual {
  position: relative;
  z-index: 2;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-visual img {
  position: relative;
  z-index: 2;
  width: 125%;
  max-width: none;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.32));
}

.access-word {
  position: absolute;
  top: 2%;
  right: -10%;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--display);
  font-size: clamp(7rem, 13vw, 13rem);
  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.12);
  background: var(--forest-deep);
  color: #9fb5ad;
  font-size: 0.76rem;
}

.site-footer p {
  margin: 0;
}

.footer-brand img {
  width: 106px;
  opacity: 1;
}

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

.art-dialog::backdrop {
  background: rgba(5, 26, 21, 0.84);
  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(--forest);
  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(18px);
  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: 1100px) {
  .site-nav {
    gap: 18px;
  }

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

  .hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1fr);
  }

  .hero-stage {
    min-height: 650px;
  }

  .hero-mug {
    left: -12%;
  }

  .hero-phone {
    width: 240px;
    right: 0;
  }

  .daily-stamp {
    right: 28%;
  }

  .daily-section,
  .seller {
    gap: 70px;
  }

}

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

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

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

  .nav-cta {
    display: none;
  }

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

  .menu-toggle > span:not(.sr-only) {
    width: 19px;
    height: 1px;
    background: white;
    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: 3px;
    padding: 90px max(28px, 10vw);
    background: var(--forest-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: #fffaf0;
    font-family: var(--display);
    font-size: clamp(1.7rem, 6vw, 2.5rem);
    font-weight: 500;
  }

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

  .menu-open {
    overflow: hidden;
  }

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

  .hero-copy {
    max-width: 660px;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 700px;
    font-size: clamp(4rem, 10vw, 6.2rem);
  }

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

  .sun-arch {
    width: min(72vw, 570px);
    height: min(72vw, 570px);
    right: 5%;
  }

  .hero-mug {
    width: min(69vw, 540px);
    left: -2%;
  }

  .hero-phone {
    width: min(31vw, 250px);
    right: 5%;
  }

  .daily-stamp {
    right: 28%;
  }

  .page-mark {
    right: 7%;
  }

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

  .experience {
    gap: 80px;
  }

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

  .daily-section {
    gap: 65px;
  }

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

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

  .arts-heading {
    max-width: 680px;
  }

  .art-gallery {
    gap: 8px;
  }

  .seller {
    gap: 90px;
  }

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

  .occasions-heading {
    position: static;
  }

  .faq {
    gap: 70px;
  }

  .access {
    min-height: auto;
    padding-bottom: 0;
  }

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

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

  .access-visual img {
    width: 105%;
  }

  .access-word {
    display: none;
  }
}

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

  .hero {
    padding-top: 112px;
  }

  .hero::after,
  .page-mark {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16.2vw, 4.65rem);
  }

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

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

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

  .button {
    width: 100%;
  }

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

  .sun-arch {
    width: 360px;
    height: 360px;
    right: -6%;
    bottom: -8%;
  }

  .hero-mug {
    width: 360px;
    left: -20%;
    bottom: 4%;
  }

  .hero-phone {
    width: 174px;
    right: -1%;
    bottom: 0;
  }

  .daily-stamp {
    width: 112px;
    height: 112px;
    right: 32%;
    bottom: 4%;
    font-size: 0.52rem;
  }

  .daily-stamp strong {
    font-size: 0.72rem;
  }

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

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

  h2 {
    font-size: clamp(2.55rem, 12.3vw, 3.7rem);
  }

  .experience {
    gap: 70px;
  }

  .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;
  }

  .daily-section {
    padding-top: 72px;
  }

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

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

  .daily-visual::after {
    width: 285px;
    height: 500px;
  }

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

  .daily-quote {
    left: 0;
    font-size: 6rem;
  }

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

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

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

  .art-card img {
    width: 100%;
    max-height: 260px;
  }

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

  .seller-arch {
    border-radius: 170px 170px 4px 4px;
  }

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

  .seller-product > p {
    inset: auto 0 0;
    gap: 10px;
    padding: 15px 8px;
    font-size: 0.88rem;
  }

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

  .faq {
    gap: 55px;
  }

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

  .access {
    gap: 50px;
  }

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

  .access-visual img {
    width: 135%;
  }

  .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;
  }
}
