/* ============================================================
   AURORA — A Signature of Confidence
   White · Midnight Black · Deep Gold
   ============================================================ */

:root {
  --black: #0b0b0d;
  --ink: #131316;
  --ink-2: #1c1c21;
  --paper: #faf8f4;
  --white: #ffffff;
  --text: #1c1b19;
  --muted: #6f6a61;
  --muted-dark: #9b948a;
  --gold: #c6a15b;
  --gold-deep: #a97f35;
  --gold-light: #e9cf9a;
  --line: #e9e4da;
  --line-dark: rgba(198, 161, 91, 0.22);
  --shadow: 0 24px 60px -24px rgba(20, 16, 8, 0.28);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--black); }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.eyebrow::before, .eyebrow.center::after {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow.bare::before, .eyebrow.bare::after { display: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; }

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  margin: 0.55rem 0 0.9rem;
  letter-spacing: 0.01em;
}
.section-title em { font-style: italic; color: var(--gold-deep); }

.section-sub { color: var(--muted); max-width: 560px; font-size: 1.02rem; }

.gold-text {
  background: linear-gradient(115deg, var(--gold-light), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 1.02em 2.2em;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.35s, color 0.35s, border-color 0.35s;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(115deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: var(--black);
  box-shadow: 0 14px 34px -14px rgba(169, 127, 53, 0.65);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -16px rgba(169, 127, 53, 0.8); }
.btn-ghost { border-color: rgba(198, 161, 91, 0.55); color: var(--gold-light); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); background: rgba(198, 161, 91, 0.08); transform: translateY(-2px); }
.btn-ghost.dark-on-light { color: var(--gold-deep); border-color: rgba(169, 127, 53, 0.5); }
.btn-ghost.dark-on-light:hover { background: rgba(198, 161, 91, 0.09); }
.btn-dark { background: var(--black); color: var(--gold-light); border-color: var(--black); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -18px rgba(0,0,0,0.55); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: wait; transform: none; }

/* ---------- Announcement bar ---------- */
.topbar {
  background: linear-gradient(90deg, #0b0b0d, #23180a 50%, #0b0b0d);
  color: var(--gold-light);
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.62em 1em;
  border-bottom: 1px solid rgba(198, 161, 91, 0.25);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(11, 11, 13, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(198, 161, 91, 0.18);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 12px 40px -18px rgba(0, 0, 0, 0.65); }

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 74px;
  gap: 1rem;
}
.nav-links { display: flex; gap: 2.2rem; }
.nav-links.right { justify-content: flex-end; align-items: center; }
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #cfc9bf;
  position: relative;
  padding: 0.4em 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.brand { text-align: center; color: var(--white); line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.72rem;
  letter-spacing: 0.34em;
  margin-left: 0.34em; /* optically recenter tracked text */
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}
.brand-name .spark { color: var(--gold); font-size: 0.62em; transform: translateY(-2px); }
.brand-name .bd {
  background: linear-gradient(115deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-tag {
  display: block;
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5em;
}

.cart-btn {
  position: relative;
  background: none;
  border: 1px solid rgba(198, 161, 91, 0.4);
  border-radius: 2px;
  color: var(--gold-light);
  padding: 0.6em 1.1em;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  transition: background 0.3s, border-color 0.3s;
}
.cart-btn:hover { background: rgba(198, 161, 91, 0.1); border-color: var(--gold); }
.cart-count {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  min-width: 1.5em;
  height: 1.5em;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold-light);
  width: 40px; height: 40px;
  position: relative;
}
.menu-btn span, .menu-btn::before, .menu-btn::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: currentColor;
  transition: 0.3s;
}
.menu-btn::before { top: 14px; }
.menu-btn span { top: 19.5px; }
.menu-btn::after { top: 25px; }

/* Mobile drawer nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 13, 0.97);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--paper);
  letter-spacing: 0.12em;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .close-x {
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  background: none; border: none;
  color: var(--gold-light);
  font-size: 1.8rem;
  line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--paper);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(42% 55% at 78% 28%, rgba(198, 161, 91, 0.20), transparent 65%),
    radial-gradient(38% 50% at 12% 78%, rgba(169, 127, 53, 0.14), transparent 60%),
    radial-gradient(30% 42% at 45% 110%, rgba(233, 207, 154, 0.08), transparent 70%);
  animation: auroraDrift 14s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to   { transform: translate3d(2%, 2%, 0) scale(1.06); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(4rem, 9vh, 7rem) 0 clamp(4.5rem, 10vh, 7.5rem);
}
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  font-weight: 500;
  margin: 1.1rem 0 1.3rem;
}
.hero h1 em { font-style: italic; }
.hero-copy { color: #b8b2a6; max-width: 460px; font-size: 1.05rem; }
.hero-ctas { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-trust {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.8rem;
  color: #8f897d;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.55em; }
.hero-trust .d { color: var(--gold); }

/* Hero card stack */
.hero-stage { position: relative; height: clamp(340px, 46vw, 520px); }
.hero-card {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(92%, 560px);
  aspect-ratio: 3 / 2;
  height: auto;
  border: 1px solid rgba(198, 161, 91, 0.5);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.85);
  background: var(--ink);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card.back-1 { transform: rotate(-5deg) translate(-4%, 6%) scale(0.94); opacity: 0.4; filter: brightness(0.6); }
.hero-card.back-2 { transform: rotate(4deg) translate(5%, -5%) scale(0.94); opacity: 0.4; filter: brightness(0.6); }
.hero-card.front { position: absolute; }
.hero-card.front::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(233, 207, 154, 0.35);
  border-radius: 2px;
  pointer-events: none;
}
.hero-card .fader {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-card .fader.show { opacity: 1; }

.hero-dots {
  position: absolute;
  bottom: -2.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
}
.hero-dots button {
  width: 26px; height: 3px;
  border: none;
  border-radius: 2px;
  background: rgba(233, 207, 154, 0.25);
  transition: background 0.3s;
}
.hero-dots button.on { background: var(--gold); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--black);
  border-top: 1px solid rgba(198, 161, 91, 0.2);
  border-bottom: 1px solid rgba(198, 161, 91, 0.2);
  overflow: hidden;
  padding: 0.95rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-family: var(--serif);
  font-size: 1.02rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding-right: 2.2rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(4.2rem, 9vw, 7rem) 0; }
.section-head { margin-bottom: 2.8rem; }
.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.section.dark { background: var(--black); color: var(--paper); }
.section.dark .section-sub { color: var(--muted-dark); }

/* ---------- Collection tiles ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.tile {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.6s;
}
.tile:hover img { transform: scale(1.07); }
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 4, 2, 0.82) 0%, rgba(5, 4, 2, 0.05) 55%);
}
.tile-label {
  position: absolute;
  z-index: 2;
  left: 1.6rem; right: 1.6rem; bottom: 1.5rem;
  color: var(--paper);
}
.tile-label .eyebrow { color: var(--gold-light); }
.tile-label h3 { font-size: 1.75rem; margin-top: 0.4rem; }
.tile-label .go {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(233, 207, 154, 0.5);
  padding-bottom: 0.3em;
  transition: letter-spacing 0.35s var(--ease);
}
.tile:hover .go { letter-spacing: 0.42em; }

/* ---------- Product cards ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(198, 161, 91, 0.55);
}
.card-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--ink);
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.card:hover .card-media img { transform: scale(1.06); }
.badge {
  display: inline-block;
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.4em 1em;
  border-radius: 999px;
  font-weight: 500;
  margin-bottom: 0.55rem;
}
.badge.bestseller { background: linear-gradient(115deg, var(--gold-light), var(--gold)); color: var(--black); }
.badge.new { color: var(--gold-deep); border: 1px solid rgba(169, 127, 53, 0.55); }
.card-view {
  position: absolute;
  left: 50%; bottom: 0.95rem;
  transform: translate(-50%, 140%);
  background: rgba(11, 11, 13, 0.88);
  color: var(--gold-light);
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.75em 1.6em;
  border-radius: 2px;
  border: 1px solid rgba(198, 161, 91, 0.45);
  transition: transform 0.45s var(--ease);
  white-space: nowrap;
}
.card:hover .card-view { transform: translate(-50%, 0); }
.card-body { padding: 1.15rem 1.25rem 1.35rem; }
.card-body h3 { font-size: 1.28rem; font-weight: 600; letter-spacing: 0.02em; }
.card-fam {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}
.card-price {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  color: var(--gold-deep);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ---------- Story teaser ---------- */
.story {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.story::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(45% 60% at 50% 30%, rgba(198, 161, 91, 0.14), transparent 70%);
}
.story blockquote {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.4vw, 2.5rem);
  font-style: italic;
  font-weight: 500;
  max-width: 820px;
  margin: 1.6rem auto 1.4rem;
  line-height: 1.35;
}
.story cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
}
.story .spark-lg { color: var(--gold); font-size: 1.4rem; }

/* ---------- Values ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
  text-align: center;
}
.value {
  padding: 2.1rem 1.2rem;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.45s var(--ease), border-color 0.4s, background 0.4s;
}
.value:hover { transform: translateY(-5px); border-color: rgba(198, 161, 91, 0.6); background: rgba(198, 161, 91, 0.05); }
.value .v-mark { color: var(--gold); font-size: 1.15rem; }
.value h3 { font-size: 1.25rem; margin: 0.7rem 0 0.45rem; letter-spacing: 0.06em; }
.value p { font-size: 0.83rem; color: var(--muted-dark); line-height: 1.6; }

/* ---------- Price band ---------- */
.price-band { text-align: center; }
.size-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 2.4rem;
}
.size-chip {
  min-width: 130px;
  padding: 1.35rem 1.1rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
  transition: transform 0.4s var(--ease), border-color 0.35s, box-shadow 0.4s;
}
.size-chip:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow); }
.size-chip .ml { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; }
.size-chip .tk { color: var(--gold-deep); margin-top: 0.25rem; letter-spacing: 0.06em; }
.delivery-note {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.delivery-note b { color: var(--gold-deep); font-weight: 500; }

/* ---------- Newsletter ---------- */
.newsletter { text-align: center; }
.nl-form {
  display: flex;
  max-width: 480px;
  margin: 2.2rem auto 0;
  border: 1px solid rgba(198, 161, 91, 0.45);
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.nl-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--paper);
  padding: 1.05em 1.3em;
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.nl-form input::placeholder { color: #7d7668; }
.nl-form button {
  border: none;
  background: linear-gradient(115deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: var(--black);
  padding: 0 1.9em;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
}
.nl-done { margin-top: 1.6rem; color: var(--gold-light); font-family: var(--serif); font-size: 1.2rem; font-style: italic; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--black);
  color: var(--paper);
  text-align: center;
  padding: clamp(3.4rem, 7vw, 5.4rem) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(40% 55% at 50% 0%, rgba(198, 161, 91, 0.16), transparent 70%);
}
.page-hero h1 { position: relative; font-size: clamp(2.3rem, 5vw, 3.6rem); margin-top: 0.6rem; }
.page-hero p { position: relative; color: var(--muted-dark); max-width: 540px; margin: 0.9rem auto 0; }

/* ---------- Shop ---------- */
.shop-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.55em 1.35em;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: 0.3s;
}
.chip:hover { border-color: var(--gold); color: var(--gold-deep); }
.chip.on {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold-light);
}
.search-box {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0.55em 1.3em;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  min-width: 240px;
}
.search-box input {
  border: none; outline: none;
  font-family: var(--sans);
  font-size: 0.88rem;
  width: 100%;
  background: transparent;
  color: var(--text);
}
.search-box .s-ico { color: var(--gold-deep); font-size: 0.9rem; }
.empty-msg {
  text-align: center;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  padding: 3rem 0;
}

/* ---------- Product page ---------- */
.crumbs {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.8rem;
}
.crumbs a:hover { color: var(--gold-deep); }
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.pdp-gallery { position: sticky; top: 100px; }
.pdp-main {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: var(--shadow);
}
.pdp-main img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.pdp-thumbs { display: flex; gap: 0.8rem; margin-top: 0.9rem; }
.pdp-thumbs button {
  width: 96px;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  padding: 0;
  background: none;
  opacity: 0.65;
  transition: 0.3s;
}
.pdp-thumbs button.on, .pdp-thumbs button:hover { opacity: 1; border-color: var(--gold); }
.pdp-thumbs img { aspect-ratio: 3 / 2; object-fit: cover; }

.pdp-tags { display: flex; gap: 0.55rem; flex-wrap: wrap; margin-bottom: 1rem; }
.ptag {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid rgba(169, 127, 53, 0.45);
  color: var(--gold-deep);
  border-radius: 999px;
  padding: 0.4em 1.1em;
}
.pdp h1 { font-size: clamp(2.1rem, 4vw, 3rem); }
.pdp-desc { color: var(--muted); margin: 1.1rem 0 1.8rem; max-width: 480px; }

.notes-box {
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  border-radius: 4px;
  background: var(--white);
  padding: 1.5rem 1.6rem 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.note-col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.note-col h4::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.note-col li {
  list-style: none;
  font-family: var(--serif);
  font-size: 1.02rem;
  padding: 0.22em 0;
  color: var(--text);
}

.opt-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.opt-label b { color: var(--text); font-weight: 500; }
.size-select { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.7rem; }
.size-opt {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 3px;
  padding: 0.7em 1.15em;
  text-align: center;
  transition: 0.3s;
  line-height: 1.35;
}
.size-opt .s-ml { font-weight: 500; font-size: 0.9rem; letter-spacing: 0.04em; }
.size-opt .s-tk { display: block; font-size: 0.76rem; color: var(--muted); }
.size-opt:hover { border-color: var(--gold); }
.size-opt.on { background: var(--black); border-color: var(--black); color: var(--gold-light); }
.size-opt.on .s-tk { color: var(--gold); }

.buy-row { display: flex; align-items: stretch; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 1rem; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
}
.qty button {
  width: 44px; height: 100%;
  min-height: 48px;
  border: none;
  background: none;
  font-size: 1.1rem;
  color: var(--muted);
  transition: color 0.2s;
}
.qty button:hover { color: var(--gold-deep); }
.qty output { min-width: 2.2em; text-align: center; font-weight: 500; }
.pdp-price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.pdp-price small { font-family: var(--sans); font-size: 0.78rem; color: var(--muted); font-weight: 300; letter-spacing: 0.1em; }
.wa-btn { background: #10241b; color: #7fd99f; border-color: #10241b; }
.wa-btn:hover { box-shadow: 0 16px 34px -18px rgba(16, 60, 40, 0.7); }
.pdp-meta {
  margin-top: 1.4rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  display: grid;
  gap: 0.45rem;
}
.pdp-meta .d { color: var(--gold-deep); }

/* ---------- About ---------- */
.about-body { max-width: 760px; margin: 0 auto; }
.about-body .lead {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
.about-body p { margin-bottom: 1.3rem; color: #4c473f; }
.founder-card {
  margin-top: 3rem;
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  background: var(--white);
  border-radius: 4px;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.founder-mark {
  width: 58px; height: 58px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--black);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.founder-card h3 { font-size: 1.3rem; }
.founder-card p { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.2rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  padding: 0.95em 1.1em;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }

.info-panel {
  background: var(--black);
  color: var(--paper);
  border-radius: 4px;
  padding: 2.2rem 2.1rem;
  position: relative;
  overflow: hidden;
}
.info-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(40% 50% at 80% 10%, rgba(198, 161, 91, 0.2), transparent 70%);
}
.info-panel > * { position: relative; }
.info-panel h3 { font-size: 1.6rem; margin-bottom: 1.2rem; }
.info-row {
  display: flex;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(198, 161, 91, 0.16);
  font-size: 0.92rem;
  color: #c9c3b8;
}
.info-row:last-of-type { border-bottom: none; }
.info-row .i { color: var(--gold); flex: none; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.4rem;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-deep); font-size: 1.3rem; transition: transform 0.3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.4rem 1.25rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: #a49d90;
  padding: 4.2rem 0 2rem;
  border-top: 1px solid rgba(198, 161, 91, 0.22);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.f-brand .brand-name { font-size: 1.5rem; color: var(--paper); }
.f-brand p { font-size: 0.9rem; margin-top: 1rem; max-width: 300px; line-height: 1.7; }
.site-footer h4 {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.site-footer li { list-style: none; margin-bottom: 0.65rem; }
.site-footer li a { font-size: 0.92rem; transition: color 0.3s; }
.site-footer li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(198, 161, 91, 0.14);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}
.footer-bottom .spark { color: var(--gold); }

/* ---------- Cart drawer ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 5, 0.6);
  backdrop-filter: blur(3px);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.overlay.show { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(430px, 100vw);
  background: var(--paper);
  z-index: 150;
  transform: translateX(102%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 80px -30px rgba(0, 0, 0, 0.5);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.6rem;
  background: var(--black);
  color: var(--paper);
}
.cart-head h3 { font-size: 1.4rem; letter-spacing: 0.1em; }
.cart-head button { background: none; border: none; color: var(--gold-light); font-size: 1.5rem; line-height: 1; }
.cart-items { flex: 1; overflow-y: auto; padding: 1.3rem 1.6rem; }
.cart-empty {
  text-align: center;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  margin-top: 3.5rem;
}
.ci {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.ci img { border-radius: 3px; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--line); }
.ci h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; }
.ci .ci-size { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.1em; margin-top: 0.1rem; }
.ci-qty { display: inline-flex; align-items: center; gap: 0.6em; margin-top: 0.45rem; }
.ci-qty button {
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 2px;
  font-size: 0.9rem;
  color: var(--muted);
}
.ci-qty button:hover { border-color: var(--gold); color: var(--gold-deep); }
.ci-right { text-align: right; }
.ci-line { font-weight: 500; font-size: 0.95rem; }
.ci-remove {
  background: none; border: none;
  color: #b5533c;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.cart-foot { border-top: 1px solid var(--line); padding: 1.25rem 1.6rem 1.5rem; background: var(--white); }
.tot-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--muted); padding: 0.22rem 0; }
.tot-row.grand { font-size: 1.15rem; color: var(--text); font-weight: 500; padding-top: 0.6rem; }
.tot-row.grand span:last-child { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; }
.cart-foot .btn { margin-top: 1rem; }
.cart-note {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  line-height: 1.7;
}
.form-hint {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 1.6rem;
  left: 50%;
  transform: translate(-50%, 200%);
  background: var(--black);
  color: var(--gold-light);
  border: 1px solid rgba(198, 161, 91, 0.5);
  border-radius: 3px;
  padding: 0.85em 1.8em;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 200;
  transition: transform 0.45s var(--ease);
  white-space: nowrap;
}
.toast.show { transform: translate(-50%, 0); }

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--rd, 0s);
}
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .values { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav { grid-template-columns: auto 1fr auto; height: 66px; }
  .nav-links.left { display: none; }
  .nav-links.right a { display: none; }
  .menu-btn { display: block; }
  .brand { text-align: left; }
  .brand-name { font-size: 1.4rem; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 3rem; }
  .hero-stage { order: -1; height: auto; aspect-ratio: 3 / 2.1; margin-bottom: 1rem; }
  .hero-dots { display: none; }
  .tiles { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .pdp { grid-template-columns: 1fr; }
  .pdp-gallery { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .notes-box { grid-template-columns: 1fr; gap: 1.4rem; }
  .section-head.split { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
  .buy-row { flex-direction: column; }
  .qty { justify-content: center; }
}
