:root {
  --paper: #f5f1e9;
  --paper-bright: #fbf9f4;
  --paper-deep: #e7dfd1;
  --ink: #2c2923;
  --muted: #6f685c;
  --olive: #4a533b;
  --olive-deep: #303827;
  --bronze: #9b7d53;
  --line: rgba(44, 41, 35, 0.14);
  --serif: "Cormorant Garamond", "Bodoni MT", Didot, "Times New Roman", Georgia, serif;
  --sans: "Outfit", "Avenir Next", Avenir, Montserrat, "Segoe UI", sans-serif;
  --header-height: 4.6rem;
  --page-padding: clamp(1.25rem, 5vw, 5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
a,
[role="button"] {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--paper-bright);
  background: var(--olive-deep);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 var(--page-padding);
  border-bottom: 1px solid transparent;
  background: rgba(251, 249, 244, 0.88);
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 249, 244, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
}

.brand__logo {
  width: 2.7rem;
  height: 2.8rem;
  object-fit: contain;
}

.brand__name {
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.2rem);
}

.main-nav a,
.site-footer nav a {
  position: relative;
  padding: 0.45rem 0;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav a::after,
.site-footer nav a::after {
  position: absolute;
  inset: auto 100% 0 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: inset 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after {
  inset-right: 0;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 1.6rem;
  height: 1px;
  margin: 0.45rem auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 36rem;
  padding: calc(var(--header-height) + 4.5rem) var(--page-padding) 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 46%, rgba(155, 125, 83, 0.08), transparent 19rem),
    linear-gradient(110deg, var(--paper-bright), var(--paper));
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  right: -10rem;
  width: clamp(22rem, 40vw, 38rem);
  aspect-ratio: 1;
  border: 1px solid rgba(74, 83, 59, 0.12);
  border-radius: 50%;
  content: "";
}

.hero::before {
  top: -11rem;
}

.hero::after {
  top: -8rem;
  right: -7rem;
  border-color: rgba(155, 125, 83, 0.14);
}

.hero__line {
  position: absolute;
  inset: calc(var(--header-height) + 1.4rem) var(--page-padding) 2rem;
  z-index: -1;
  border: 1px solid var(--line);
  pointer-events: none;
}

.hero__content {
  width: min(49rem, 78vw);
  margin: auto 0;
  padding-left: clamp(0rem, 3vw, 3rem);
}

.hero h1 {
  max-width: 15ch;
  margin: 1.6rem 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.eyebrow {
  margin: 0;
  color: var(--olive);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow::after {
  display: block;
  width: 3rem;
  height: 1px;
  margin-top: 1rem;
  background: currentColor;
  content: "";
}

.hero__principles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  margin: 0 0 2.2rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero__principles span:not(:last-child)::after {
  margin-left: 1.4rem;
  color: var(--bronze);
  content: "•";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  align-self: flex-start;
  min-width: 16.5rem;
  min-height: 3.55rem;
  padding: 0.9rem 1.45rem;
  color: var(--paper-bright);
  background: var(--olive);
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--olive-deep);
  transform: translateY(-2px);
}

.stores {
  padding: clamp(4.2rem, 7vw, 6.5rem) var(--page-padding) clamp(5rem, 8vw, 7.5rem);
  background: var(--paper-bright);
}

.section-heading {
  max-width: 44rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading .eyebrow::after {
  margin-right: auto;
  margin-left: auto;
}

.section-heading h2,
.about h2 {
  margin: 0.85rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  margin: 1.2rem auto 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.store-grid {
  display: grid;
  gap: 0.85rem;
  max-width: 72rem;
  margin: 0 auto;
}

.store-grid--featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0.85rem;
}

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

.store-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 10.5rem;
  padding: 1.6rem 1.2rem 2.6rem;
  overflow: hidden;
  border: 1px solid rgba(44, 41, 35, 0.08);
  background: #f0ece4;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.store-card--featured {
  min-height: 16.5rem;
  padding: 2rem 1.6rem 2.8rem;
  background: linear-gradient(180deg, #f7f3eb, #efe8dc);
}

.store-card:hover,
.store-card:focus-visible {
  border-color: rgba(155, 125, 83, 0.46);
  box-shadow: 0 18px 42px rgba(44, 41, 35, 0.08);
  transform: translateY(-4px);
}

.store-card__kicker {
  position: absolute;
  top: 1.1rem;
  left: 1.2rem;
  color: var(--olive);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.store-card__meta {
  max-width: 22rem;
  margin-top: 0.85rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
  text-align: center;
}

.store-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  line-height: 1;
}

.store-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.2rem;
}

.store-logo-img {
  display: block;
  width: auto;
  max-width: 11.5rem;
  object-fit: contain;
}

.store-logo-img--amazon {
  height: 2.15rem;
}

.store-logo-img--mercado {
  height: 4.05rem;
  max-width: 5.2rem;
}

.store-logo-img--shopee {
  height: 2.05rem;
}

.store-logo--westwing {
  color: #3f3e39;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.store-logo--camicado {
  color: #8e1c32;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.store-card__action {
  position: absolute;
  right: 1.1rem;
  bottom: 0.7rem;
  left: 1.1rem;
  display: flex;
  justify-content: space-between;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(44, 41, 35, 0.12);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.store-card--coupon {
  min-height: 14.5rem;
  padding-bottom: 3.8rem;
}

.store-card__coupon {
  display: grid;
  gap: 0.28rem;
  margin-top: 0.95rem;
  text-align: center;
}

.store-card__coupon-label {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.store-card__coupon-code {
  color: var(--olive-deep);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  user-select: all;
}

.store-card--coupon .store-card__action {
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.page-hero {
  padding: calc(var(--header-height) + 3.4rem) var(--page-padding) 2.6rem;
  background:
    radial-gradient(circle at 88% 18%, rgba(155, 125, 83, 0.08), transparent 16rem),
    linear-gradient(110deg, var(--paper-bright), var(--paper));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--olive);
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--olive-deep);
}

.page-hero h1 {
  max-width: 14ch;
  margin: 1.15rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.4vw, 4.6rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.page-hero__lede {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.5;
}

.list-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  max-width: 46rem;
  margin: 1.8rem 0 0;
}

.list-nav a {
  color: var(--olive);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.4;
  white-space: nowrap;
}

.list-nav a:hover,
.list-nav a:focus-visible {
  color: var(--bronze);
}

.curation {
  padding: 1.5rem var(--page-padding) clamp(4.5rem, 8vw, 7rem);
  background: var(--paper-bright);
}

.curation-list {
  max-width: 72rem;
  margin: 0 auto 4.2rem;
}

.curation-list__heading {
  max-width: 40rem;
  margin: 0 0 1.7rem;
}

.curation-list h2 {
  margin: 0.7rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.6vw, 3.15rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
}

.curation-list__heading p:last-child {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 19rem), 1fr));
  gap: 0.85rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(44, 41, 35, 0.08);
  background: #f7f3eb;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(155, 125, 83, 0.46);
  box-shadow: 0 18px 42px rgba(44, 41, 35, 0.08);
  transform: translateY(-4px);
}

.product-card__media {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ebe4d8;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.15rem 1.2rem;
}

.product-card h3 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.02em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.9rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.04em;
}

.product-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: var(--olive-deep);
}

.product-card__rating svg {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--bronze);
}

.product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
  margin: auto 0 0;
  padding-top: 1.05rem;
  color: var(--olive-deep);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.product-card__note {
  color: var(--olive);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card__action {
  display: flex;
  justify-content: space-between;
  margin-top: 0.85rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(44, 41, 35, 0.12);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.curation__note {
  max-width: 40rem;
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
  text-align: center;
}

.about {
  padding: clamp(5rem, 9vw, 8rem) var(--page-padding);
  background: linear-gradient(110deg, var(--paper-deep), var(--paper));
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(16rem, 24rem) minmax(22rem, 38rem);
  justify-content: center;
  gap: clamp(2.4rem, 5vw, 4.5rem);
  align-items: center;
  margin: 0 auto;
}

.about__portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 48% 48% 0 0 / 24% 24% 0 0;
  background: #d8d0c4;
}

.about__portrait img {
  width: 126%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 45% 28%;
  transform: translateX(-10%);
  filter: saturate(0.92) contrast(0.98);
}

.about__content {
  max-width: none;
}

.about__content .eyebrow::after {
  margin-left: 0;
}

.about h2 {
  max-width: none;
}

.about__content > p:not(.eyebrow, .about__signature) {
  max-width: none;
  margin: 1.8rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.about__signature {
  margin: 2.6rem 0 0;
  color: var(--olive);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  line-height: 1;
}

.about__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.9rem;
}

.about__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about__contact svg {
  width: 1.05rem;
  height: 1.05rem;
}

.about__contact a:hover,
.about__contact a:focus-visible {
  color: var(--olive-deep);
}

.about__email {
  letter-spacing: 0.04em;
  text-transform: none;
}

.site-footer__mail {
  margin-top: 0.35rem !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
}

.site-footer__mail a {
  color: #e8e4d6;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem var(--page-padding);
  color: var(--paper-bright);
  background: var(--olive-deep);
}

.brand--footer .brand__logo {
  filter: brightness(0) invert(1);
}

.brand--footer .brand__name {
  color: var(--paper-bright);
}

.site-footer nav {
  display: flex;
  gap: 2rem;
}

.site-footer nav a {
  font-size: 0.66rem;
}

.site-footer__meta {
  justify-self: end;
  width: min(100%, 18.5rem);
  text-align: left;
}

.site-footer__meta p {
  margin: 0;
  color: #c2c5bb;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__note {
  max-width: none;
  margin-top: 0.7rem !important;
  margin-left: 0;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  line-height: 1.45;
}

.reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1040px) {
  .store-card--featured {
    min-height: 15rem;
  }

  .about__layout {
    grid-template-columns: minmax(14.5rem, 20rem) minmax(20rem, 32rem);
    gap: 2.4rem;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 4.25rem;
  }

  .brand__logo {
    width: 2.7rem;
    height: 2.8rem;
  }

  .brand__name {
    font-size: 0.92rem;
    letter-spacing: 0.16em;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.25rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.25rem) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem var(--page-padding) 2rem;
    visibility: hidden;
    opacity: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper-bright);
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 32rem;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 3.4rem;
  }

  .hero__content {
    width: 100%;
    padding: 0 1rem;
  }

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

  .about__portrait {
    width: min(100%, 22rem);
    margin: 0 auto;
  }

  .about__content {
    max-width: 40rem;
    margin: 0 auto;
  }

  .store-grid--featured,
  .store-grid--more {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 2.8rem);
  }

  .curation-list {
    margin-bottom: 3.2rem;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer__meta {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

@media (max-width: 560px) {
  :root {
    --page-padding: 1.1rem;
  }

  .site-header {
    padding-inline: 0.95rem;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand__name {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .hero__line {
    inset-inline: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
    max-width: none;
  }

  .hero__principles {
    gap: 0.45rem 0.65rem;
    font-size: 0.58rem;
    letter-spacing: 0.13em;
  }

  .hero__principles span:not(:last-child)::after {
    margin-left: 0.65rem;
  }

  .button {
    width: 100%;
    min-width: 0;
    align-self: stretch;
  }

  .section-heading h2,
  .about h2 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .store-card,
  .store-card--featured {
    min-height: 11.5rem;
  }

  .store-card--coupon {
    min-height: 15.5rem;
    padding-bottom: 4.2rem;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    max-width: none;
  }

  .product-card h3 {
    font-size: 1.12rem;
  }

  .about {
    padding-block: 4.8rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer nav {
    display: flex;
  }

  .site-footer__meta,
  .site-footer__note {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    justify-self: center;
  }
}

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

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

.site-footer__note a {
  display: block;
  margin-top: 0.35rem;
  color: #e8e4d6;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.legal {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 var(--page-padding) clamp(4.5rem, 8vw, 7rem);
}

.legal h2 {
  margin: 2.4rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.legal p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.55;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal code {
  font-size: 0.92em;
}

.cookie-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.button--ghost {
  color: var(--olive-deep);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(74, 83, 59, 0.35);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--paper-bright);
  background: var(--olive);
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  right: var(--page-padding);
  bottom: 1.1rem;
  left: var(--page-padding);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem 2rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.15rem 1.3rem;
  border: 1px solid rgba(44, 41, 35, 0.12);
  background: var(--paper-bright);
  box-shadow: 0 18px 42px rgba(44, 41, 35, 0.12);
}

.cookie-banner__title {
  margin: 0 0 0.35rem;
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.4;
}

.cookie-banner a {
  color: var(--olive-deep);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.55rem;
}

.cookie-banner__reject,
.cookie-banner__accept {
  min-height: 2.75rem;
  padding: 0.55rem 1.15rem;
  border: 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-banner__reject {
  color: var(--olive-deep);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(74, 83, 59, 0.35);
}

.cookie-banner__accept {
  color: var(--paper-bright);
  background: var(--olive);
}

.cookie-banner__accept:hover,
.cookie-banner__accept:focus-visible {
  background: var(--olive-deep);
}

@media (max-width: 760px) {
  .cookie-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.1rem 1rem 1rem;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-controls .button {
    width: 100%;
    min-width: 0;
  }
}
