/* ==========================================================================
   MG Pearl Artisan Vanilla — stylesheet
   Dark, premium: black, deep plum, gold.

   Every colour on the site comes from the variables in :root below.
   Change one there and it updates everywhere.
   ========================================================================== */

/* ------------------------------------------------------------- fonts --- */
/* Self-hosted. Nothing is loaded from Google, so the site is faster,
   works offline in preview, and sets no third-party cookies.          */

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-var.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-var-italic.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  /* --- Colour ---------------------------------------------------------- */
  --bg:          #0A0710;   /* page — black with a plum cast              */
  --bg-alt:      #130D1C;   /* alternate sections, cards                  */
  --bg-deep:     #1D1230;   /* the rich purple feature bands              */
  --bg-footer:   #060409;   /* deepest black                             */

  --line:        #2A1E3B;   /* hairlines and borders                     */
  --line-soft:   #1F1630;

  --heading:     #F6F2F9;   /* headings — soft white                     */
  --text:        #E4DCEC;   /* body text                                 */
  --text-dim:    #A99CB8;   /* captions, secondary copy                  */

  --gold:        #C9A25E;   /* the accent                                */
  --gold-bright: #E7CB8C;   /* hover / highlight                         */
  --on-gold:     #0A0710;   /* text sitting on a gold fill               */

  /* --- Type ------------------------------------------------------------ */
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* --- Rhythm ---------------------------------------------------------- */
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --measure: 68ch;
  --radius: 2px;
  --section-y: clamp(4.5rem, 10vw, 9rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------- reset -- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--on-gold); }

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

a { color: inherit; }

/* ---------------------------------------------------------------- type -- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--heading);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

h1 { font-size: clamp(2.75rem, 1.6rem + 5.2vw, 5.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.5rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.7rem); line-height: 1.2; }
h4 { font-size: 1.0625rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.25em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.125rem, 1.02rem + 0.5vw, 1.375rem);
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 58ch;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
  display: block;
}

.serif-em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-bright);
}

/* -------------------------------------------------------------- layout -- */

.wrap {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section--cream { background: var(--bg-alt); }
.section--ink   { background: var(--bg-deep); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
/* Shop page: larger, curated 2-up cards rather than a row of small ones. */
.grid--shop { grid-template-columns: repeat(auto-fit, minmax(min(100%, 23rem), 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--top { align-items: start; }
@media (min-width: 62rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr 1fr; }
  .split--wide-right { grid-template-columns: 1fr 1.15fr; }
  .split__media--first { order: -1; }
}

.stack > * + * { margin-top: 1.25rem; }
.center { text-align: center; margin-inline: auto; }
.center p { margin-inline: auto; }

/* ------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05em 2.1em;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--on-gold);
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}
.btn:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--on-gold);
  box-shadow: 0 12px 34px -18px rgba(231, 203, 140, 0.7);
}
.btn:active { transform: translateY(1px); }

.btn--ghost {
  background: transparent;
  color: var(--heading);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-bright);
  box-shadow: none;
}

/* Kept for markup compatibility — same as the primary gold button. */
.btn--light { background: var(--gold); border-color: var(--gold); color: var(--on-gold); }
.btn--light:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.btn--full { width: 100%; }
.btn--sm { padding: 0.85em 1.5em; font-size: 0.75rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.35em;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-arrow::after { content: "→"; transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--gold-bright); border-color: var(--gold); }
.link-arrow:hover::after { transform: translateX(4px); }

/* -------------------------------------------------------------- header -- */

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--on-gold);
  padding: 0.75rem 1.25rem; text-decoration: none; font-weight: 600;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 7, 16, 0.72);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(10, 7, 16, 0.92);
}

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 4.75rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; flex-shrink: 0; }
.brand__mark { width: 30px; height: 30px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif); font-size: 1.0625rem; color: var(--heading);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.brand__sub {
  font-size: 0.5625rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-top: 0.35rem;
}

.nav { display: none; }
@media (min-width: 60rem) { .nav { display: flex; align-items: center; gap: 2rem; } }

.nav a {
  font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; text-decoration: none; color: var(--text-dim);
  padding-block: 0.35rem; position: relative;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.35s var(--ease);
}
.nav a:hover { color: var(--heading); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--heading); }

.header__cta { display: none; }
@media (min-width: 60rem) { .header__cta { display: inline-flex; } }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; margin-right: -10px;
  background: none; border: 0; cursor: pointer;
}
@media (min-width: 60rem) { .burger { display: none; } }
.burger span {
  display: block; height: 1.5px; background: var(--gold); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 4.75rem 0 0; z-index: 99;
  background: var(--bg);
  padding: 2rem var(--gutter) 3rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
@media (min-width: 60rem) { .mobile-nav { display: none; } }
.mobile-nav a {
  font-family: var(--serif); font-size: 1.75rem; color: var(--heading);
  text-decoration: none; padding: 0.6rem 0; border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 1.75rem; }

/* ---------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  background:
    radial-gradient(90% 70% at 78% 12%, rgba(93, 52, 138, 0.30), transparent 62%),
    radial-gradient(70% 60% at 8% 88%, rgba(201, 162, 94, 0.09), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.hero__inner {
  display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 7rem);
  position: relative; z-index: 1;
}
@media (min-width: 62rem) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: clamp(3rem, 6vw, 6rem); }
}
.hero h1 { margin-bottom: 0.35em; }
.hero__media { position: relative; }
.hero__media .ph { aspect-ratio: 4 / 5; }

.hero__badge {
  /* Must sit above .ph img, which carries z-index:1 — without this the
     photo paints over the badge and it reads as an empty outlined box. */
  position: absolute; z-index: 3; bottom: -1.25rem; left: -1.25rem;
  background: var(--bg-alt); border: 1px solid var(--gold);
  padding: 1rem 1.25rem; max-width: 13rem;
  box-shadow: 0 24px 50px -26px rgba(0, 0, 0, 0.9);
}
@media (max-width: 40rem) { .hero__badge { position: static; margin-top: 1.25rem; max-width: none; } }
.hero__badge strong {
  display: block; font-family: var(--serif); font-size: 1.5rem;
  color: var(--gold-bright); line-height: 1; margin-bottom: 0.35rem;
}
.hero__badge span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }

/* ------------------------------------------------------- page masthead -- */

.masthead {
  background:
    radial-gradient(80% 90% at 85% 0%, rgba(93, 52, 138, 0.26), transparent 62%),
    var(--bg);
  padding-block: clamp(3rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--line);
}
.masthead h1 { font-size: clamp(2.5rem, 1.6rem + 4vw, 4.5rem); margin-bottom: 0.3em; }
.masthead .lede { margin-bottom: 0; }

/* ------------------------------------------------------------ trustbar -- */

.trustbar {
  background: var(--bg-deep);
  border-block: 1px solid var(--line);
}
.trustbar ul {
  list-style: none; margin: 0; padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem clamp(1.5rem, 4vw, 3.5rem);
}
.trustbar li {
  font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-bright); display: flex; align-items: center; gap: 0.7rem;
}
.trustbar li::before { content: "◆"; font-size: 0.5rem; color: var(--gold); opacity: 0.7; }

/* ------------------------------------------------- image placeholders --- */
/* .ph wraps every photo. If the image file is missing the plum panel
   behind it still reads as an intentional design element.               */

.ph {
  position: relative;
  background:
    radial-gradient(120% 90% at 22% 12%, rgba(201, 162, 94, 0.20), transparent 58%),
    linear-gradient(150deg, #2C1B42 0%, #1B1129 48%, #0E0A17 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.ph::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; opacity: 0.10;
}
.ph img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ph--tall { aspect-ratio: 3 / 4; }
.ph--square { aspect-ratio: 1 / 1; }
.ph--wide { aspect-ratio: 16 / 10; }

.ph__caption {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(6, 4, 9, 0.85), transparent);
  color: var(--gold-bright); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
}

/* -------------------------------------------------------------- pillar -- */

.pillar__num {
  font-family: var(--serif); font-size: 0.8125rem; color: var(--gold);
  letter-spacing: 0.2em; display: block; margin-bottom: 1rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--line);
}
.pillar h3 { margin-bottom: 0.5rem; }
.pillar p { color: var(--text-dim); font-size: 0.9375rem; }

/* --------------------------------------------------------------- cards -- */

.card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 94, 0.45);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, 0.95);
}
.card .ph { border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.card__body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; gap: 0.5rem; }
.card__title { font-family: var(--serif); font-size: 1.375rem; color: var(--heading); margin: 0; line-height: 1.15; }
.card__meta { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 0; }
.card__desc { font-size: 0.9375rem; color: var(--text-dim); margin: 0.25rem 0 0; }
.card__foot { margin-top: auto; padding-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.card__price { font-family: var(--serif); font-size: 1.5rem; color: var(--heading); line-height: 1; }
.card__price small { font-family: var(--sans); font-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.08em; display: block; margin-top: 0.4rem; }

.tag {
  position: absolute; z-index: 2; top: 0.875rem; left: 0.875rem;
  background: var(--gold); color: var(--on-gold);
  font-size: 0.625rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.4rem 0.7rem; border-radius: var(--radius);
}

/* --------------------------------------------------------------- steps -- */

.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; }
.steps li {
  counter-increment: s;
  padding: 1.75rem 0 1.75rem 4rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.steps li:first-child { padding-top: 0; }
.steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.steps li::before {
  content: counter(s, decimal-leading-zero);
  position: absolute; left: 0; top: 1.75rem;
  font-family: var(--serif); font-size: 1.25rem; color: var(--gold);
  letter-spacing: 0.05em;
}
.steps li:first-child::before { top: 0; }
.steps h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.steps p { color: var(--text-dim); font-size: 0.9375rem; margin: 0; }

/* ----------------------------------------------------------- accordion -- */

.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; text-align: left;
  font-family: var(--serif); font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  color: var(--heading); line-height: 1.35;
  transition: color 0.3s var(--ease);
}
.acc__btn:hover { color: var(--gold-bright); }
.acc__icon { flex-shrink: 0; width: 14px; height: 14px; margin-top: 0.45em; position: relative; }
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; background: var(--gold);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.acc__icon::before { left: 0; right: 0; top: 6px; height: 1.5px; }
.acc__icon::after { top: 0; bottom: 0; left: 6px; width: 1.5px; }
.acc__btn[aria-expanded="true"] .acc__icon::after { transform: rotate(90deg); opacity: 0; }
.acc__panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.acc__panel[data-open="true"] { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel p { color: var(--text-dim); padding-bottom: 1.5rem; font-size: 0.9375rem; }

/* ---------------------------------------------------------------- prose -- */

.prose h2 { font-size: clamp(1.5rem, 1.3rem + 0.9vw, 2rem); margin-top: 2.75rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1875rem; margin-top: 2rem; }
.prose ul, .prose ol { max-width: var(--measure); padding-left: 1.25rem; color: var(--text-dim); }
.prose li { margin-bottom: 0.6rem; }
.prose li::marker { color: var(--gold); }
.prose p { color: var(--text-dim); }
.prose strong { color: var(--text); }
.prose a { color: var(--gold); text-decoration-color: rgba(201, 162, 94, 0.45); text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-bright); }
.prose .updated { font-size: 0.8125rem; color: var(--text-dim); letter-spacing: 0.06em; opacity: 0.75; }

/* ---------------------------------------------------------------- form -- */

.field { margin-bottom: 1.5rem; }
.field label {
  display: block; font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.6rem;
}
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--text);
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.9rem 1rem; transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field textarea { min-height: 10rem; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); opacity: 0.6; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 94, 0.16);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A25E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ------------------------------------------------------------- contact -- */

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-list li:first-child { padding-top: 0; }
.contact-list span {
  display: block; font-size: 0.6875rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem;
}
.contact-list a { color: var(--heading); text-decoration: none; font-size: 1.0625rem; }
.contact-list a:hover { color: var(--gold-bright); }

/* -------------------------------------------------------------- footer -- */

.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  padding-block: clamp(3.5rem, 7vw, 5rem) 2rem;
}
.footer a { color: var(--text-dim); text-decoration: none; transition: color 0.3s var(--ease); }
.footer a:hover { color: var(--gold-bright); }
.footer__top {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  padding-bottom: 3rem;
}
@media (min-width: 62rem) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer__brand p { font-size: 0.9375rem; margin-top: 1.25rem; max-width: 30ch; }
.footer h4 {
  font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem; font-weight: 600;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer li { font-size: 0.9375rem; }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-size: 0.8125rem; color: var(--text-dim); opacity: 0.8;
}
.socials { display: flex; gap: 1.25rem; }
.socials a { display: inline-flex; color: var(--gold); }
.socials a:hover { color: var(--gold-bright); }
.socials svg { width: 19px; height: 19px; fill: currentColor; }

/* -------------------------------------------------------- reveal anim -- */

[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- utils -- */

.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;
}
.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }
.mt-md { margin-top: 1.75rem; }
.note {
  background: rgba(201, 162, 94, 0.07);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem; font-size: 0.9375rem; color: var(--text-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.note strong { color: var(--text); }

/* Shop switch — see shop_live in assets/js/products.js. Elements marked
   data-live-only / data-preview-only are toggled with the hidden
   attribute in main.js, so each keeps its natural display type.

   This rule is load-bearing: the browser's default [hidden] styling is
   display:none, but ANY author rule that sets display (such as
   .trustbar li) beats it and the element stays visible. Without the
   !important here, hidden items on the trust bar do not hide.         */
[hidden] { display: none !important; }
