/* Monkee Deals — temp site (light/premium redesign).
   Inspiration: MPB.com / Leica / clean modern e-commerce.
   Layout structure mirrors the previous dark build; only the visual
   language (color, weight, shadow, density) has shifted. */

:root {
  /* ---- Surfaces ---- */
  --bg:           #ffffff;   /* main canvas */
  --bg-soft:      #faf7f1;   /* warm off-white for alternating sections */
  --bg-cream:     #f5efe3;   /* warmer band for emphasis (LA callout etc.) */
  --bg-card:      #ffffff;   /* clean white cards on cream sections */

  /* ---- Borders / hairlines ---- */
  --border:        #ece5d6;
  --border-strong: #ddd3bd;

  /* ---- Type ---- */
  --text:        #1a1815;   /* warm charcoal, not pure black */
  --text-2:      #4a443c;   /* secondary text */
  --text-muted:  #7a7268;
  --text-faint:  #a59c8e;

  /* ---- Accents (pulled from the logo) ---- */
  --gold:         #b88a4a;   /* muted warm tan/gold */
  --gold-hover:   #a87936;
  --gold-deep:    #8a6635;
  --gold-soft:    #f0e3c8;   /* tinted bg for hover states / badges */

  --magenta:      #9d5a7f;
  --magenta-deep: #6e3a55;
  --magenta-soft: #f5e6ee;

  /* ---- Status colors (subtle) ---- */
  --on-gold:     #ffffff;   /* text color on gold buttons */
  --focus:       #b88a4a;
  --error:       #b04545;
  --error-soft:  #faebeb;

  /* ---- Shadows: very subtle, like Apple/MPB ---- */
  --shadow-1: 0 1px 2px rgba(26,24,21,.04);
  --shadow-2: 0 2px 8px rgba(26,24,21,.05), 0 1px 2px rgba(26,24,21,.04);
  --shadow-3: 0 12px 28px rgba(26,24,21,.08), 0 4px 10px rgba(26,24,21,.04);
  --shadow-modal: 0 30px 80px rgba(26,24,21,.18), 0 4px 12px rgba(26,24,21,.08);

  /* ---- Radii ---- */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* ---- Layout ---- */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);

  /* ---- Type stack ---- */
  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto,
               ui-sans-serif, system-ui, "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI",
                  ui-sans-serif, system-ui, sans-serif;
}

/* ============ Reset + base ============ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(15px, 0.5vw + 13px, 17px);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--gold-hover); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 .5em;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.7rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
p  { margin: 0 0 1em; color: var(--text-2); }

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

.skip-link {
  position: absolute; left: 12px; top: -40px;
  background: var(--gold); color: var(--on-gold);
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-weight: 700; z-index: 100;
  transition: top .15s ease;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

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

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-block: 12px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: 52px; width: auto; display: block; }

.primary-nav { display: flex; align-items: center; }
.nav-list {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.nav-list a {
  color: var(--text);
  font-weight: 500; font-size: .95rem;
  padding: 8px 2px;
  position: relative;
}
.nav-list a:hover { color: var(--gold-hover); }

.nav-list a.nav-cta {
  padding: 10px 18px;
  background: var(--gold);
  color: var(--on-gold);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background-color .15s ease;
}
.nav-list a.nav-cta:hover {
  background: var(--gold-hover);
  color: var(--on-gold);
}

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--border-strong);
  width: 42px; height: 42px; border-radius: var(--radius-sm); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav-toggle-bar { width: 18px; height: 2px; background: var(--text); display: block; }

@media (max-width: 720px) {
  .brand-logo { height: 44px; }
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: absolute; top: 100%; right: var(--gutter);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
    padding: 10px; margin-top: 8px; min-width: 220px;
    box-shadow: var(--shadow-3);
    display: none;
  }
  .nav-list.open { display: flex; }
  .nav-list a { padding: 12px 14px; border-radius: var(--radius-sm); }
  .nav-list a:hover { background: var(--bg-soft); }
  .nav-list a.nav-cta { text-align: center; }
}

/* ============ Hero ============ */
.hero {
  position: relative; isolation: isolate;
  min-height: clamp(560px, 80vh, 800px);
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-color: var(--bg-soft);
  background-image:
    url("hero.png"),
    /* fallback warm gradient if the image is missing */
    linear-gradient(135deg, #faf7f1 0%, #f0e6d3 50%, #e9dec5 100%);
  background-repeat: no-repeat;
  background-position: center right, center;
  background-size: cover, cover;
}
/* Soft white scrim on the LEFT to guarantee text contrast over the wood floor
   without obscuring the camera gear on the right. */
.hero-gradient {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.78) 30%,
      rgba(255,255,255,.40) 50%,
      rgba(255,255,255,0)   72%);
}
@media (max-width: 760px) {
  .hero { min-height: 0; }
  .hero-bg {
    background-position: 70% bottom, center;
    background-size: 180% auto, cover;
  }
  .hero-gradient {
    background:
      linear-gradient(180deg,
        rgba(255,255,255,.92) 0%,
        rgba(255,255,255,.65) 55%,
        rgba(255,255,255,.0)  100%);
  }
}
.hero-inner {
  padding-block: clamp(64px, 9vw, 120px);
  width: 100%;
}
.hero-copy { max-width: 580px; }

.eyebrow {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 12px;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem; font-weight: 600;
  margin: 0 0 18px;
}
.eyebrow-rule {
  width: 28px; height: 2px;
  background: var(--gold);
  display: inline-block; flex-shrink: 0;
}
.eyebrow-natural {
  text-transform: none;
  letter-spacing: .015em;
  font-size: .92rem;
  color: var(--gold-deep);
  font-weight: 600;
}

.hero h1 {
  color: var(--text);
  margin-bottom: .55em;
}
.hero-sub {
  font-size: clamp(1rem, 1vw + .6rem, 1.18rem);
  color: var(--text-2);
  margin-bottom: 2em;
  max-width: 540px;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 36px);
  border-top: 1px solid var(--border);
  padding-top: 24px; max-width: 640px;
}
.hero-trust li {
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0; flex: 1 1 150px;
}
.hero-trust strong {
  font-family: var(--font-display);
  font-size: clamp(.98rem, 1vw + .55rem, 1.1rem);
  color: var(--text);
  font-weight: 700; line-height: 1.25;
  letter-spacing: -0.005em;
}
.hero-trust span {
  font-size: .85rem;
  color: var(--text-muted);
  letter-spacing: .01em;
  line-height: 1.4;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font: inherit; font-weight: 600; cursor: pointer;
  padding: 12px 22px; border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background-color .18s ease, color .18s ease,
              border-color .18s ease, transform .1s ease,
              box-shadow .18s ease;
  text-decoration: none; line-height: 1; white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold);
  color: var(--on-gold);
  box-shadow: 0 1px 1px rgba(26,24,21,.06);
}
.btn-primary:hover {
  background: var(--gold-hover);
  color: var(--on-gold);
  box-shadow: var(--shadow-2);
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--gold);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--gold);
  color: var(--text);
}

.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-sm { padding: 9px 16px; font-size: .9rem; }

/* ============ Sections ============ */
.section { padding-block: clamp(64px, 8vw, 110px); }
.section + .section { border-top: 1px solid var(--border); }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-sub {
  color: var(--text-2); font-size: 1.05rem; margin-top: 8px;
  max-width: 640px;
}

/* ============ Credibility ============ */
.credibility { background: var(--bg-soft); }
.cred-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.cred-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.cred-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.cred-card h3 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.cred-card h3::before {
  content: ""; display: inline-block;
  width: 22px; height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-3px);
}
.cred-card p { margin: 0; color: var(--text-2); font-size: .96rem; }

/* ============ Local pickup callout ============ */
.local-callout {
  padding-block: clamp(48px, 6vw, 72px);
  background: var(--bg);
}
.local-callout::before { content: none; }

.local-inner {
  display: grid; gap: clamp(24px, 3vw, 36px);
  grid-template-columns: auto 1fr;
  align-items: center;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}

.local-pin {
  flex-shrink: 0;
  width: clamp(64px, 7vw, 80px);
  height: clamp(64px, 7vw, 80px);
  border-radius: 50%;
  background: var(--magenta-soft);
  color: var(--magenta-deep);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--magenta);
}
.local-pin svg { display: block; }

.local-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--text);
}
.local-copy p {
  color: var(--text-2); max-width: 640px;
  margin-bottom: 22px;
  font-size: 1rem;
}

.eyebrow-magenta { color: var(--magenta-deep); margin-bottom: 12px; }
.eyebrow-magenta .eyebrow-rule { background: var(--magenta); }

@media (max-width: 640px) {
  .local-inner { grid-template-columns: 1fr; text-align: left; }
  .local-pin { width: 56px; height: 56px; }
  .local-pin svg { width: 28px; height: 28px; }
}

/* ============ What we buy ============ */
.what-we-buy { background: var(--bg-soft); }
.buy-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.buy-item {
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: 12px;
  transition: border-color .18s, background-color .18s, transform .18s;
}
.buy-item::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.buy-item:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}
.buy-item-cta {
  background: transparent;
  border-style: dashed;
  border-color: var(--magenta);
}
.buy-item-cta::before { display: none; }
.buy-item-cta a { color: var(--magenta-deep); font-weight: 600; }

/* ============ How it works ============ */
.how-it-works { background: var(--bg); }
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.step {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  position: relative;
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
.step:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1; display: block; margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--text-2); margin: 0; font-size: .95rem; }

/* ============ Why us ============ */
.why-us { background: var(--bg-soft); }
.why-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  border-left: 3px solid var(--gold);
  transition: border-color .18s, box-shadow .18s;
}
.why-card:hover { box-shadow: var(--shadow-2); }
.why-card h3 { color: var(--text); margin-bottom: 6px; font-size: 1.02rem; }
.why-card p { margin: 0; color: var(--text-2); font-size: .94rem; }

/* ============ Quote form ============ */
.quote { background: var(--bg); }
.quote-inner { max-width: 880px; }

.quote-form {
  display: grid; gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-1);
}

.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field label {
  font-size: .88rem; font-weight: 600; color: var(--text);
  letter-spacing: .005em;
}
.field .req { color: var(--gold-deep); margin-left: 2px; }
.field .optional {
  color: var(--text-muted); font-weight: 400;
  margin-left: 4px; font-size: .82rem;
}

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
  transition: border-color .15s, box-shadow .15s, background-color .15s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--gold-deep);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,138,74,.18);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-2) 50%),
    linear-gradient(135deg, var(--text-2) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.form-note {
  grid-column: 1 / -1; margin: 4px 0 0;
  color: var(--text-muted); font-size: .88rem;
}
.form-actions {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-top: 8px;
}
.form-status {
  grid-column: 1 / -1; margin: 0; min-height: 1.4em;
  color: var(--gold-deep); font-size: .92rem;
}
.form-status-error { color: var(--error); }

/* Honeypot — see send-quote.php; layered hide so the field stays in the
   DOM (bots fill it) but humans never see, focus, or hear it. */
.hp {
  position: absolute !important;
  left: -10000px !important;
  top: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.hp input {
  position: absolute !important;
  left: 0 !important; top: 0 !important;
  width: 1px !important; height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Field-level error + help */
.field-err {
  grid-column: 1 / -1; margin: 6px 0 0;
  color: var(--error); font-size: .86rem; font-weight: 500;
}
.field-help {
  grid-column: 1 / -1; margin: 6px 0 0;
  color: var(--text-muted); font-size: .82rem;
}

/* ---- Multi-item builder ---- */
.item-builder {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(18px, 2.5vw, 24px);
  margin: 0;
  background: var(--bg-soft);
}
.item-builder legend {
  padding: 0 8px; margin-left: -8px;
  color: var(--text); font-weight: 600; font-size: .95rem;
}
.item-builder-help {
  margin: 0 0 14px; color: var(--text-muted); font-size: .88rem;
}

.item-list {
  list-style: none; margin: 0 0 18px; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.item-empty {
  padding: 14px 16px;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: .9rem; text-align: center;
  background: var(--bg);
}
.item-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
}
.item-info { flex: 1; min-width: 0; }
.item-info-top {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 12px;
}
.item-make {
  color: var(--text); font-size: .98rem; word-break: break-word;
}
.item-cond {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--gold-deep);
  background: var(--gold-soft);
  padding: 2px 8px; border-radius: 999px;
  border: 1px solid var(--border-strong);
}
.item-acc {
  margin-top: 4px; color: var(--text-2); font-size: .88rem;
  word-break: break-word;
}
.item-remove {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  font: inherit; font-size: 1.4rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .15s, color .15s, border-color .15s;
}
.item-remove:hover {
  background: var(--error-soft);
  color: var(--error);
  border-color: var(--error);
}

.item-builder-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.item-builder-grid .field-wide { grid-column: 1 / -1; }
.item-builder-grid label { font-size: .82rem; color: var(--text-2); }
.item-builder-grid input,
.item-builder-grid select { padding: 10px 12px; }

.item-builder-actions {
  margin-top: 14px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
}

@media (max-width: 640px) {
  .quote-form { grid-template-columns: 1fr; }
  .item-builder-grid { grid-template-columns: 1fr; }
  .item-row { flex-wrap: wrap; }
}

/* ---- Success state ---- */
.quote-success {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow-2);
  outline: none;
  position: relative;
}
.quote-success::before {
  content: "✓"; display: flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px; margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 32px; font-weight: 700;
  line-height: 1;
}
.quote-success h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: 12px;
}
.quote-success p {
  color: var(--text-2); margin: 0 auto 10px; max-width: 540px;
}
.quote-success-sub {
  color: var(--text-muted); font-size: .9rem;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding-block: 56px 28px;
}
.footer-inner {
  display: grid; gap: 32px;
  grid-template-columns: 1fr 1fr;
}
.footer-brand {
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
}
.footer-logo { height: 52px; width: auto; display: block; }
.footer-tag {
  color: var(--text-2); margin: 0; max-width: 320px;
  font-size: .92rem;
}
.footer-links {
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  align-content: flex-start; justify-content: flex-end;
}
.footer-links a {
  color: var(--text); font-weight: 500; font-size: .92rem;
}
.footer-links a:hover { color: var(--gold-hover); }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  align-items: center; justify-content: space-between;
  color: var(--text-muted); font-size: .84rem;
}
.footer-bottom p { margin: 0; }
.footer-note { color: var(--text-faint); font-style: italic; }

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

/* ============ Cookie banner ============ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(26,24,21,.06);
}
.cookie-inner {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  padding-block: 14px;
}
.cookie-inner p {
  margin: 0; color: var(--text-2); font-size: .92rem;
}

/* ============ Hold-to-confirm modal ============ */
.hold-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.hold-modal[hidden] { display: none; }
.hold-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(26, 24, 21, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hold-modal-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 40px);
  max-width: 440px; width: 100%;
  box-shadow: var(--shadow-modal);
  text-align: center;
  outline: none;
}
.hold-modal-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 10px;
  color: var(--text);
}
.hold-modal-card > p#holdDesc {
  color: var(--text-2); font-size: .92rem;
  margin: 0 auto 24px; max-width: 360px;
}

.hold-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  cursor: pointer;
  margin: 0 auto 18px;
  color: var(--text);
  font: inherit; font-weight: 600; font-size: .95rem;
  transition: background-color .15s, border-color .15s, transform .1s;
  touch-action: manipulation;
  -webkit-user-select: none; user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.hold-btn:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
}
.hold-btn:focus-visible {
  outline: 2px solid var(--focus); outline-offset: 4px;
}
.hold-btn:active { transform: scale(.98); }
.hold-btn.holding {
  background: var(--gold-soft);
  border-color: var(--gold);
}
.hold-btn.confirmed {
  background: var(--gold-soft);
  border-color: var(--gold);
  cursor: default;
}

.hold-progress {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}
.hold-progress-track {
  fill: none; stroke: var(--border-strong); stroke-width: 4;
}
.hold-progress-fill {
  fill: none; stroke: var(--gold); stroke-width: 4; stroke-linecap: round;
  stroke-dasharray: 289;       /* 2π·46 */
  stroke-dashoffset: 289;
  transition: stroke-dashoffset 1.5s linear;
}
.hold-btn.holding   .hold-progress-fill { stroke-dashoffset: 0; }
.hold-btn.confirmed .hold-progress-fill {
  stroke: var(--gold-deep); stroke-dashoffset: 0;
  transition: stroke .2s ease;
}

.hold-btn-label {
  position: relative; z-index: 1; pointer-events: none;
}
.hold-status {
  margin: 0 0 18px;
  color: var(--gold-deep);
  font-size: .9rem; min-height: 1.4em;
}

@media (prefers-reduced-motion: reduce) {
  .hold-progress-fill { transition: none; }
  .hold-btn { transition: none; }
}
