:root {
  color-scheme: dark;
  --ink-950: #050403;
  --ink-900: #0a0806;
  --ink-850: #100d0a;
  --ink-800: #17120e;
  --ivory-50: #fffaf0;
  --ivory-100: #f8f1e5;
  --ivory-200: #efe3d0;
  --ivory-400: #c8baa7;
  --ivory-500: #a99b88;
  --gold-300: #ead49a;
  --gold-400: #dabb6e;
  --gold-500: #c9a14a;
  --gold-600: #9f7630;
  --danger-400: #e6a08e;
  --success-400: #9fcb9f;
  --surface: rgba(255, 250, 240, 0.035);
  --surface-strong: rgba(255, 250, 240, 0.07);
  --line: rgba(201, 161, 74, 0.24);
  --line-strong: rgba(201, 161, 74, 0.52);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.52);
  --radius-sm: 0.35rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-pill: 100vmax;
  --content-width: 75rem;
  --reading-width: 48rem;
  --header-height: 4.75rem;
  --space-section: clamp(4.5rem, 9vw, 8rem);
  --font-display: Georgia, "Times New Roman", Times, serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition-fast: 150ms ease;
  --transition-base: 240ms ease;
}

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

html {
  min-width: 20rem;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
  text-size-adjust: 100%;
}

body {
  min-width: 20rem;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 6%, rgba(201, 161, 74, 0.07), transparent 24rem),
    var(--ink-950);
  color: var(--ivory-100);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.is-locked,
body[data-scroll-lock="true"],
body.cart-open,
body.drawer-open,
body.modal-open {
  overflow: hidden;
}

main {
  min-height: 60vh;
}

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

button,
[role="button"] {
  cursor: pointer;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

a {
  color: inherit;
  text-decoration-color: rgba(234, 212, 154, 0.52);
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: currentColor;
}

p,
ul,
ol,
dl,
blockquote {
  margin-block: 0 1rem;
}

ul,
ol {
  padding-inline-start: 1.35rem;
}

h1,
h2,
h3,
h4 {
  margin-block: 0 0.65em;
  color: var(--ivory-50);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 6.4rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.15rem, 4.8vw, 4.4rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
}

h4 {
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

small {
  font-size: 0.82rem;
}

strong {
  color: var(--ivory-50);
}

hr {
  height: 1px;
  margin-block: 2rem;
  border: 0;
  background: var(--line);
}

::selection {
  background: var(--gold-500);
  color: var(--ink-950);
}

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

[hidden] {
  display: none !important;
}

.container,
.site-container {
  width: min(100% - clamp(2rem, 6vw, 5rem), var(--content-width));
  margin-inline: auto;
}

.reading-width {
  width: min(100%, var(--reading-width));
}

.flow > * + * {
  margin-block-start: var(--flow-space, 1rem);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--cluster-gap, 0.75rem);
}

.stack {
  display: grid;
  gap: var(--stack-gap, 1rem);
}

.eyebrow,
.kicker {
  margin: 0 0 1rem;
  color: var(--gold-300);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lede {
  max-width: 60ch;
  color: var(--ivory-200);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.muted {
  color: var(--ivory-400);
}

.text-gold {
  color: var(--gold-300);
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.7rem 1rem;
  transform: translateY(-150%);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-sm);
  background: var(--ivory-50);
  color: var(--ink-950);
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

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

.js-only {
  display: none;
}

.js .js-only {
  display: initial;
}

@media (max-width: 42rem) {
  :root {
    --header-height: 4.25rem;
    --space-section: clamp(3.75rem, 16vw, 5.5rem);
  }

  body {
    font-size: 0.96rem;
  }

  .container,
  .site-container {
    width: min(100% - 2rem, var(--content-width));
  }
}

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

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

@media print {
  :root {
    color-scheme: light;
  }

  body {
    background: #fff;
    color: #111;
  }

  .site-header,
  .site-footer,
  .actions,
  .floating-whatsapp,
  .cart-drawer,
  .product-modal,
  .skip-link {
    display: none !important;
  }

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