/* Wristflow Watch Co. — shared styles
   Theme: Warm inviting + visible guilloche (classy, not linen) */

:root {
  /* Softer gold — less neon, more honey */
  --primary-gold: #a67c2d;
  --primary-gold-bright: #b8893a;
  --primary-gold-dim: rgba(166, 124, 45, 0.1);
  /* Warm ivory page — brighter, calmer */
  --page-bg: #faf6ef;
  --page-bg-deep: #f3ecdf;
  --surface: #fffdf9;
  --surface-2: #faf4ea;
  /* Warm brown text — never pure black */
  --text-main: #3a342c;
  --text-muted: #6b6358;
  --text-soft: #8a8174;
  --white: #ffffff;
  --ink: #2f2922;
  --glass-bg: rgba(255, 253, 249, 0.9);
  --line: rgba(58, 52, 44, 0.08);
  --line-strong: rgba(58, 52, 44, 0.12);
  --shadow: 0 8px 28px rgba(58, 52, 44, 0.05);
  --shadow-hover: 0 14px 36px rgba(58, 52, 44, 0.08);
  --max: 1120px;
  --header-h: 76px;
  --radius: 14px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: Georgia, "Times New Roman", "Palatino Linotype", serif;
}

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

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

body {
  font-family: var(--font);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: #f4ecdf;
  /* Visible classy texture: engine-turned guilloche (horology) — not linen */
  background-image:
    url("../img/bg-guilloche.png"),
    url("../img/bg-guilloche-diamond.png"),
    linear-gradient(165deg, #faf4ea 0%, #f4ecdf 50%, #efe4d4 100%);
  background-repeat: repeat, repeat, no-repeat;
  background-size: 280px 280px, 160px 160px, auto;
  background-position: center, center, center top;
  background-blend-mode: multiply, soft-light, normal;
  background-attachment: scroll;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: none !important;
  display: none !important;
}

body.home-page,
body.inner-page {
  background-color: var(--page-bg);
}

a { text-decoration: none; color: inherit; transition: 0.22s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ——— Header / Navigation ———
   Suggestion applied:
   - Nav: semi-opaque frosted glass (~88%) so guilloche peeks through
   - Soft rounded shell (not a harsh full-bleed slab)
   - Footer: more opaque for readability + rounded top shell
*/
header.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 12px 16px 0;
  background: transparent;
  border-bottom: none;
  transition: padding 0.25s ease;
}
header.site-header.is-scrolled {
  padding-top: 8px;
}
header.site-header.is-scrolled .nav-shell {
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 10px 32px rgba(58, 52, 44, 0.1);
  border-color: rgba(58, 52, 44, 0.1);
}

.nav-shell {
  max-width: calc(var(--max) + 24px);
  margin: 0 auto;
  background: rgba(255, 253, 249, 0.55);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border: 1px solid rgba(255, 253, 249, 0.45);
  border-radius: 18px;
  box-shadow:
    0 8px 28px rgba(58, 52, 44, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav-container {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  padding: 0 18px;
}

.logo {
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
}
.logo span { color: var(--primary-gold); }

.nav-menu { display: flex; gap: 0.35rem 1.25rem; align-items: center; }
.nav-menu a {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-muted);
  font-weight: 600;
  padding: 0.45rem 0.35rem;
  border-radius: 999px;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--primary-gold); }
.nav-menu a.active {
  background: rgba(166, 124, 45, 0.1);
  padding-left: 0.7rem;
  padding-right: 0.7rem;
}

.nav-cta-wrap { list-style: none; margin-left: 0.25rem; }
.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.55rem 0.95rem !important;
  border: 1px solid var(--primary-gold);
  border-radius: 999px;
  color: var(--primary-gold) !important;
  letter-spacing: 0.1em !important;
  background: rgba(255, 253, 249, 0.5);
}
.nav-cta:hover {
  background: var(--primary-gold) !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 249, 0.7);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: inherit;
}
.bar {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: 0.25s;
  border-radius: 2px;
}

header.site-header.solid .nav-shell {
  background: rgba(255, 253, 249, 0.7);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border: 1.5px solid var(--primary-gold);
  color: var(--primary-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: 0.22s ease;
}
.btn:hover {
  background: var(--primary-gold);
  color: #fff;
  box-shadow: 0 8px 22px rgba(184, 146, 46, 0.28);
}
.btn-solid {
  background: var(--primary-gold);
  color: #fff;
  border-color: var(--primary-gold);
}
.btn-solid:hover {
  filter: brightness(1.05);
  color: #fff;
}
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  background: #fff;
  box-shadow: none;
}

/* ——— HOME HERO (photo still cinematic) ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media picture,
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-img {
  position: absolute;
  inset: 0;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Softer, warmer overlay — less harsh black */
  background:
    linear-gradient(180deg, rgba(42, 32, 22, 0.22) 0%, rgba(42, 32, 22, 0.38) 45%, rgba(42, 32, 22, 0.62) 100%),
    radial-gradient(ellipse 75% 55% at 70% 35%, rgba(200, 150, 70, 0.16), transparent 62%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  text-align: left;
  max-width: 40rem;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e8c96a;
  margin-bottom: 1rem;
}
.hero-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #e8c96a;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.5rem, 6.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #fffaf0;
  margin-bottom: 1rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}
.hero h1 em {
  font-style: italic;
  color: #e8c96a;
  font-weight: 500;
}
.hero-lead {
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  margin-bottom: 1.6rem;
  max-width: 34rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}
.hero .btn-ghost {
  border-color: rgba(255, 250, 240, 0.45);
  color: #fffaf0;
  background: rgba(0, 0, 0, 0.2);
}
.hero .btn-ghost:hover {
  border-color: #e8c96a;
  color: #e8c96a;
  background: rgba(0, 0, 0, 0.35);
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-chips li {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.8);
  border: 1px solid rgba(255, 250, 240, 0.22);
  background: rgba(0, 0, 0, 0.28);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

/* ——— Trust bar ——— */
.trust-bar {
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: blur(8px);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
}
.trust-item {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.trust-item b {
  display: block;
  color: var(--primary-gold);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
  text-transform: none;
  font-weight: 700;
}
.trust-item span { display: block; }

/* ——— Sections ——— */
.home-section { padding: 4.25rem 0; }
.home-section-alt {
  background: rgba(255, 253, 249, 0.68);
  border-block: 1px solid var(--line);
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 0.35rem;
}
.section-head h2,
.why-copy h2,
.sell-band h2,
.info-title,
.form-title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 500;
  color: var(--ink);
}
.section-link {
  color: var(--primary-gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  font-weight: 600;
}
.section-link:hover { border-color: var(--primary-gold); }

/* Featured cards */
.home-watch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.home-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.home-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 146, 46, 0.45);
  box-shadow: var(--shadow-hover);
}
.home-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #ece6da;
  overflow: hidden;
}
.home-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge-live,
.badge-sold {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.92);
}
.badge-live { color: var(--primary-gold); }
.badge-sold {
  color: #8a3030;
  background: rgba(255, 230, 230, 0.95);
  border-color: rgba(138, 48, 48, 0.2);
}
.home-card-body {
  padding: 1rem 1.05rem 1.15rem;
  display: grid;
  gap: 0.3rem;
  flex: 1;
}
.home-card-brand {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.home-card-title {
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.25;
  color: var(--ink);
}
.home-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.home-card-foot {
  margin-top: auto;
  padding-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.home-card-price {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 1.05rem;
}
.home-card-price.struck {
  text-decoration: line-through;
  color: #9a9388;
  font-weight: 600;
}
.tiny {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-gold);
  font-weight: 600;
}
.tiny.muted { color: var(--text-soft); }

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.35rem;
  align-items: stretch;
}
.why-copy {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 0%, var(--primary-gold-dim), transparent 55%),
    var(--surface);
  box-shadow: var(--shadow);
}
.why-copy h2 { margin: 0.35rem 0 0.85rem; }
.why-copy p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 42ch;
}
.pillars { display: grid; gap: 0.85rem; }
.pillar {
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--primary-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.pillar h3 { font-size: 1rem; margin-bottom: 0.35rem; color: var(--ink); }
.pillar p { color: var(--text-muted); font-size: 0.92rem; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step {
  padding: 1.4rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--primary-gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 0.7rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--ink); }
.step p { color: var(--text-muted); font-size: 0.92rem; }

/* Sell band */
.sell-band {
  padding: 2rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(166, 124, 45, 0.2);
  background:
    radial-gradient(circle at 12% 20%, rgba(200, 160, 90, 0.11), transparent 48%),
    linear-gradient(135deg, #fffdf9, #f7f0e4);
  display: grid;
  grid-template-columns: 1.35fr auto;
  gap: 1.25rem;
  align-items: center;
  box-shadow: var(--shadow);
}
.sell-band h2 { margin-bottom: 0.4rem; }
.sell-band p { color: var(--text-muted); max-width: 42ch; }
.sell-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

/* Proof */
.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.proof-single {
  grid-template-columns: 1fr;
  max-width: 640px;
}
.proof-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.proof-card-featured {
  border-color: rgba(184, 146, 46, 0.35);
  background:
    radial-gradient(circle at 0% 0%, rgba(184, 146, 46, 0.1), transparent 50%),
    var(--surface);
  padding: 1.5rem 1.4rem;
}
.proof-watch {
  font-size: 0.8rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-gold) !important;
  margin-bottom: 0.65rem !important;
  font-weight: 600;
}
.proof-with-shot {
  padding: 1.15rem 1.15rem 1.25rem;
  max-width: 520px;
}
.proof-shot {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #efe8da;
  margin: 0.75rem 0 0.9rem;
}
.proof-shot img {
  width: 100%;
  height: auto;
  display: block;
}
.proof-caption {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.proof-caption span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.proof-card .stars {
  color: var(--primary-gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.55rem;
  font-size: 0.85rem;
}
.proof-card p {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}
.proof-card cite {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ——— Inner page hero ——— */
.page-hero {
  position: relative;
  min-height: clamp(280px, 42vw, 420px);
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 2rem) 0 2.75rem;
  isolation: isolate;
  overflow: hidden;
}
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.page-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(42, 32, 22, 0.28) 0%, rgba(42, 32, 22, 0.48) 55%, rgba(42, 32, 22, 0.66) 100%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(200, 150, 70, 0.12), transparent 60%);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  width: min(100% - 2rem, var(--max));
}
.page-hero-content .eyebrow { color: #e8c96a; }
.page-hero-content h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fffaf0;
  margin: 0.35rem 0 0.5rem;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.page-hero-sub {
  color: rgba(255, 250, 240, 0.88);
  font-size: 1.05rem;
  max-width: 34rem;
}

/* Inventory */
.inventory-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 0.5rem;
}
.inventory-count {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.inventory-count strong { color: var(--primary-gold); }
.filter-bar,
.filter-bar-inline {
  max-width: var(--max);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-muted);
  padding: 11px 20px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-size: 0.76rem;
  border-radius: 999px;
  transition: 0.22s;
  box-shadow: 0 2px 8px rgba(28, 26, 23, 0.04);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  background: var(--primary-gold-dim);
}
.wrap-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1rem 3rem;
}
.inventory-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 20px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 28px;
}
.watch-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.watch-card.is-hidden { display: none !important; }
.watch-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 146, 46, 0.45);
  box-shadow: var(--shadow-hover);
}
.card-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ece6da;
}
.card-main-image { width: 100%; height: 100%; object-fit: cover; }
.sold-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #8a3030;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 5;
  border-radius: 4px;
}
.thumbnail-gallery {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #f0ebe0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.thumb-img {
  flex: 0 0 56px;
  width: 56px;
  height: 48px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: 0.2s;
}
.thumb-img:hover,
.thumb-img.active {
  opacity: 1;
  border-color: var(--primary-gold);
}
.card-details {
  padding: 22px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.card-brand {
  color: var(--primary-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.card-ref {
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 4px 0 8px;
}
.card-title {
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.card-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-bottom: 10px;
}
.card-year { color: var(--text-soft); font-size: 0.85rem; margin-bottom: 8px; }
.card-price {
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.card-price .struck {
  text-decoration: line-through;
  color: #9a9388;
  font-size: 1.05rem;
}
.btn-inquire {
  display: block;
  width: 100%;
  padding: 14px;
  border: 1.5px solid var(--primary-gold);
  color: var(--primary-gold);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.85rem;
  border-radius: 999px;
  background: transparent;
}
.btn-inquire:hover {
  background: var(--primary-gold);
  color: #fff;
}
.btn-inquire-muted {
  border-color: #cfc6b6 !important;
  color: var(--text-soft) !important;
}
.btn-inquire-muted:hover {
  background: #f0ebe0 !important;
  color: var(--ink) !important;
  border-color: #b8ae9c !important;
}
.unavailable {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 8px;
}

/* About / content */
.content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 20px;
}
.section-block { margin-bottom: 48px; }
.section-block .section-title,
.section-title {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--primary-gold);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 18px;
  text-align: left;
  font-weight: 500;
}
.section-text { font-size: 1.05rem; margin-bottom: 16px; color: var(--text-main); }
.highlight-box {
  background: var(--surface);
  border-left: 4px solid var(--primary-gold);
  padding: 28px;
  margin: 36px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  border: 1px solid var(--line);
  border-left-width: 4px;
  box-shadow: var(--shadow);
}
.highlight-box h3 { color: var(--ink); margin-bottom: 14px; font-size: 1.35rem; }
.highlight-box ul { list-style: disc; padding-left: 20px; color: var(--text-muted); }
.highlight-box li { margin-bottom: 10px; }
.highlight-box li strong { color: var(--primary-gold); }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.about-trust { padding: 0.5rem 0 0; }

/* Contact */
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
}
.contact-info,
.contact-form {
  background: var(--surface);
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-title { color: var(--primary-gold); font-size: 1.6rem !important; margin-bottom: 24px; }
.form-title { color: var(--ink); font-size: 1.6rem !important; margin-bottom: 24px; }
.info-item { margin-bottom: 24px; }
.info-label {
  display: block;
  color: var(--text-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.info-value { font-size: 1.05rem; color: var(--ink); font-weight: 600; }
.info-value a { color: var(--primary-gold); }
.info-note {
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 500;
}
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.social-btn {
  padding: 10px 18px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 999px;
}
.social-btn:hover {
  background: var(--primary-gold);
  color: #fff;
  border-color: var(--primary-gold);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  border-radius: 8px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px var(--primary-gold-dim);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary-gold);
  color: #fff;
  border: none;
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
}
.submit-btn:hover { filter: brightness(1.05); }
.form-note { margin-top: 12px; font-size: 0.85rem; color: var(--text-muted); }
.form-error {
  background: rgba(138, 48, 48, 0.08);
  border: 1px solid rgba(138, 48, 48, 0.25);
  color: #8a3030;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}
.form-success .section-text { margin-bottom: 1.25rem; }

/* Legacy page-header (if any leftover) */
.page-header {
  padding: 140px 20px 72px;
  text-align: center;
  background: linear-gradient(rgba(20, 16, 10, 0.55), rgba(20, 16, 10, 0.8)),
    var(--page-header-image, none) center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fffaf0;
  margin-bottom: 12px;
  font-weight: 500;
}
.page-header p { color: rgba(255, 250, 240, 0.85); font-size: 1.1rem; max-width: 36em; margin: 0 auto; }
.page-header .gold-sub { color: #e8c96a; font-weight: 600; }

/* Legacy feature blocks */
.modern-section {
  padding: 80px 20px;
  background: rgba(255, 252, 247, 0.5);
  border-top: 1px solid var(--line);
}
.section-container { max-width: 1000px; margin: 0 auto; text-align: center; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
  text-align: left;
}
.feature-card {
  background: var(--surface);
  padding: 26px;
  border-left: 3px solid var(--primary-gold);
  border-radius: 0 8px 8px 0;
  border: 1px solid var(--line);
  border-left-width: 3px;
  box-shadow: var(--shadow);
}
.feature-title { color: var(--ink); font-size: 1.15rem; margin-bottom: 12px; font-weight: 700; }
.feature-text { color: var(--text-muted); font-size: 0.95rem; }

/* ——— Footer ———
   Glass / see-through warm shell — more transparent, stronger blur.
   Text keeps slight shadow for readability over guilloche.
*/
.site-footer {
  padding: 28px 16px 28px;
  background: transparent;
}
.footer-shell {
  position: relative;
  max-width: calc(var(--max) + 24px);
  margin: 0 auto;
  padding: 48px 28px 22px;
  border-radius: 24px;
  background: linear-gradient(
    165deg,
    rgba(74, 63, 50, 0.52) 0%,
    rgba(52, 44, 36, 0.58) 100%
  );
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  border: 1px solid rgba(255, 240, 210, 0.16);
  box-shadow:
    0 16px 40px rgba(58, 52, 44, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #f7f0e4;
  overflow: hidden;
}
.footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(232, 201, 106, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(255, 255, 255, 0.05), transparent 50%);
}
.footer-watermark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  color: rgba(232, 201, 106, 0.12);
  font-weight: 700;
  letter-spacing: 0.28em;
  pointer-events: none;
  z-index: 0;
}
.footer-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-col h4 {
  color: #f0d78a;
  margin-bottom: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.8rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}
.footer-col p,
.footer-col a {
  color: rgba(255, 248, 236, 0.9);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: block;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}
.footer-col a:hover { color: #fff; }
.footer-brand p { max-width: 28ch; line-height: 1.55; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.footer-social a {
  display: inline-flex !important;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 201, 106, 0.35);
  background: rgba(255, 253, 249, 0.08);
  color: #f0d78a !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0 !important;
  backdrop-filter: blur(8px);
}
.footer-social a:hover {
  background: rgba(232, 201, 106, 0.2);
  color: #fff !important;
}
.copyright {
  text-align: center;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(247, 240, 228, 0.55);
  font-size: 0.78rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* legacy footer tag safety */
footer.site-footer { border: none; }

/* ——— Mobile ——— */
@media (max-width: 900px) {
  .home-watch-grid,
  .steps,
  .proof,
  .trust-row { grid-template-columns: 1fr 1fr; }
  .why-grid,
  .sell-band { grid-template-columns: 1fr; }
  .sell-actions { justify-content: flex-start; }
  .inventory-toolbar { flex-direction: column; align-items: stretch; }
  .filter-bar-inline { justify-content: flex-start; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .hamburger { display: flex; z-index: 1001; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(82%, 320px);
    height: 100svh;
    background: rgba(255, 253, 249, 0.62);
    backdrop-filter: blur(24px) saturate(1.15);
    -webkit-backdrop-filter: blur(24px) saturate(1.15);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    transition: right 0.35s ease;
    box-shadow: -8px 0 30px rgba(58, 52, 44, 0.14);
    border-radius: 20px 0 0 20px;
    border-left: 1px solid rgba(58, 52, 44, 0.08);
    padding: 1.5rem;
  }
  .nav-menu.active { right: 0; }
  .hamburger.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

  .hero { align-items: end; }
  .home-watch-grid,
  .steps,
  .proof,
  .trust-row,
  .footer-content { grid-template-columns: 1fr; }
  .contact-container { grid-template-columns: 1fr; }
  .inventory-grid { grid-template-columns: 1fr; }
  .trust-item { font-size: 0.68rem; }
  .page-hero { min-height: 300px; }
  .footer-shell { border-radius: 20px; padding: 36px 20px 18px; }
  .nav-shell { border-radius: 16px; }
}
