/* ==========================================================================
   Golden One - design system
   One stylesheet, no CDN dependency. Dark base with a gold accent.
   ========================================================================== */

/* --------------------------------------------------------------- tokens --- */
:root {
  --gold:        #d4af37;
  --gold-light:  #f4d03f;
  --gold-deep:   #a8862a;
  --gold-soft:   rgba(212, 175, 55, 0.12);
  --gold-line:   rgba(212, 175, 55, 0.22);

  --bg:          #0a0a0a;
  --bg-alt:      #101010;
  --surface:     #151515;
  --surface-2:   #1c1c1c;
  --line:        #262626;
  --line-soft:   #1f1f1f;

  --text:        #f0efec;
  --text-muted:  #a1a1a1;
  --text-dim:    #6f6f6f;

  --success:     #22c55e;
  --danger:      #ef4444;
  --warning:     #f59e0b;
  --info:        #3b82f6;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-pill: 999px;

  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow:      0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg:   0 24px 60px rgba(0, 0, 0, 0.55);
  --glow:        0 8px 28px rgba(212, 175, 55, 0.28);

  --nav-h:       76px;
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

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

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--gold-light); }

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

ul, ol { list-style: none; }

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

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

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2e2e2e; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #3d3d3d; }

/* ------------------------------------------------------------ typography --- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }

.display { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }

.gold        { color: var(--gold); }
.gold-text {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);   /* fallback where background-clip is unsupported */
}

.muted    { color: var(--text-muted); }
.dim      { color: var(--text-dim); }
.small    { font-size: 0.875rem; }
.tiny     { font-size: 0.78rem; }
.center   { text-align: center; }
.right    { text-align: right; }
.nowrap   { white-space: nowrap; }
.strike   { text-decoration: line-through; }
.bold     { font-weight: 700; }
.semi     { font-weight: 600; }
.upper    { text-transform: uppercase; letter-spacing: 0.12em; }

/* --------------------------------------------------------------- layout --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.container-narrow { max-width: 820px; }
.container-tight  { max-width: 560px; }

.section        { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-sm     { padding: clamp(2.5rem, 4vw, 3.5rem) 0; }
.bg-alt         { background: var(--bg-alt); }
.bg-surface     { background: var(--surface); }
.border-y       { border-block: 1px solid var(--line-soft); }
.border-t       { border-top: 1px solid var(--line-soft); }

/* Page top offset so content clears the fixed navbar. */
.page-top { padding-top: calc(var(--nav-h) + 2.5rem); }

.stack     { display: flex; flex-direction: column; }
.row       { display: flex; align-items: center; }
.row-wrap  { display: flex; align-items: center; flex-wrap: wrap; }
.between   { justify-content: space-between; }
.jcenter   { justify-content: center; }
.jend      { justify-content: flex-end; }
.astart    { align-items: flex-start; }
.aend      { align-items: flex-end; }
.grow      { flex: 1 1 auto; min-width: 0; }
.gap-xs { gap: 0.35rem; } .gap-sm { gap: 0.6rem; }
.gap    { gap: 1rem; }    .gap-lg { gap: 1.75rem; }
.gap-xl { gap: 2.5rem; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); }

.mt-0 { margin-top: 0; }        .mt-xs { margin-top: 0.4rem; }
.mt-sm { margin-top: 0.75rem; } .mt { margin-top: 1.25rem; }
.mt-lg { margin-top: 2rem; }    .mt-xl { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }     .mb-xs { margin-bottom: 0.4rem; }
.mb-sm { margin-bottom: 0.75rem; } .mb { margin-bottom: 1.25rem; }
.mb-lg { margin-bottom: 2rem; } .mb-xl { margin-bottom: 3rem; }
.mx-auto { margin-inline: auto; }
.full { width: 100%; }

.hide       { display: none !important; }
.only-desk  { display: initial; }
.only-mob   { display: none; }

/* ---------------------------------------------------------------- cards --- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.card-glass {
  background: linear-gradient(160deg, rgba(30, 28, 24, 0.9), rgba(18, 18, 18, 0.95));
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.card-hover { transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.card-hover:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  box-shadow: var(--shadow);
}

.card-pad-sm { padding: 1.25rem; }
.card-flush  { padding: 0; overflow: hidden; }

/* -------------------------------------------------------------- buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/**
 * Icons inside a button, chip or badge are inline glyphs sized by the control,
 * never by a container. This resets any decorative icon rule an ancestor may
 * apply (.empty-state, .alert, .toast and friends), so a button dropped inside
 * one of those blocks always renders at its own scale.
 */
.btn i, .btn svg,
.chip i, .badge i, .eyebrow i {
  display: inline-block;
  flex: none;
  font-size: 1em;
  line-height: 1;
  width: auto;
  height: auto;
  margin: 0;
  color: inherit;
  vertical-align: baseline;
}

/* Icon-only buttons centre their glyph and drop the label gap. */
.btn-icon { gap: 0; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #14110a;
}
.btn-gold:hover:not(:disabled) { transform: translateY(-2px); box-shadow: var(--glow); color: #14110a; }

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover:not(:disabled) { background: var(--gold); color: #14110a; }

.btn-ghost {
  border-color: var(--line);
  color: var(--text-muted);
  background: var(--surface-2);
}
.btn-ghost:hover:not(:disabled) { border-color: var(--gold-line); color: var(--text); }

.btn-danger {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.45);
  color: #fca5a5;
}
.btn-danger:hover:not(:disabled) { background: var(--danger); color: #fff; border-color: var(--danger); }

.btn-sm  { padding: 0.5rem 1rem;   font-size: 0.85rem; }
.btn-xs  { padding: 0.35rem 0.7rem; font-size: 0.78rem; }
.btn-lg  { padding: 1rem 2.2rem;    font-size: 1.02rem; }
.btn-full { width: 100%; }
.btn-icon { padding: 0.55rem; width: 2.4rem; height: 2.4rem; }

.btn-pill { border-radius: var(--radius-pill); padding-inline: 1.8rem; }

/* --------------------------------------------------------------- badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-plain   { background: var(--surface-2); border-color: var(--line); color: var(--text-muted); }
.badge-success { background: rgba(34,197,94,0.14);  border-color: rgba(34,197,94,0.4);  color: #86efac; }
.badge-danger  { background: rgba(239,68,68,0.14);  border-color: rgba(239,68,68,0.4);  color: #fca5a5; }
.badge-warning { background: rgba(245,158,11,0.14); border-color: rgba(245,158,11,0.4); color: #fcd34d; }
.badge-info    { background: rgba(59,130,246,0.14); border-color: rgba(59,130,246,0.4); color: #93c5fd; }

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

/* ---------------------------------------------------------------- forms --- */
.field { margin-bottom: 1.15rem; }

.label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}
.label .req { color: var(--danger); }

.input, .select, .textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  appearance: none;
}
.input::placeholder, .textarea::placeholder { color: #5c5c5c; }

.input:hover, .select:hover, .textarea:hover { border-color: #383838; }

.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.16);
}

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

.textarea { min-height: 130px; resize: vertical; line-height: 1.6; }

.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4af37' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.select option { background: #131313; color: var(--text); }

.input-icon-wrap { position: relative; }
.input-icon-wrap .input { padding-left: 2.75rem; }
.input-icon-wrap > i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
  font-size: 0.9rem;
}
.input-icon-wrap:focus-within > i { color: var(--gold); }

.form-error { color: #fca5a5; font-size: 0.8rem; margin-top: 0.35rem; }
.form-hint  { color: var(--text-dim); font-size: 0.8rem; margin-top: 0.35rem; }

.input.invalid, .textarea.invalid, .select.invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}
.check input { margin-top: 0.3rem; accent-color: var(--gold); width: 1rem; height: 1rem; flex: none; }

.form-grid { display: grid; gap: 0 1.1rem; grid-template-columns: 1fr 1fr; }
.form-grid .span-2 { grid-column: 1 / -1; }

.fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.fieldset > legend {
  padding: 0 0.6rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------- messages --- */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid;
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}
/* Direct child only: an icon inside a button in the alert must keep button sizing. */
.alert > i { margin-top: 0.2rem; flex: none; }
.alert-error   { background: rgba(239,68,68,0.1);  border-color: rgba(239,68,68,0.45);  color: #fca5a5; }
.alert-success { background: rgba(34,197,94,0.09); border-color: rgba(34,197,94,0.4);   color: #86efac; }
.alert-warning { background: rgba(245,158,11,0.09);border-color: rgba(245,158,11,0.4);  color: #fcd34d; }
.alert-info    { background: rgba(59,130,246,0.09);border-color: rgba(59,130,246,0.4);  color: #93c5fd; }

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2.75rem, 6vw, 4.5rem) 1.5rem;
}
/* `>` matters: empty states contain buttons whose own icons must not inherit
   this 3.25rem block display. */
.empty-state > i {
  font-size: 3.25rem;
  line-height: 1;
  color: #303030;
  margin-bottom: 1.25rem;
  display: block;
}
.empty-state h3 { margin-bottom: 0.6rem; }
.empty-state p  { color: var(--text-muted); margin-bottom: 1.75rem; max-width: 46ch; }
.empty-state .btn { min-width: 190px; }
/* A standalone empty-state card reads better centred than stretched full width. */
.empty-state.card { max-width: 620px; margin-inline: auto; }
/* Multiple actions sit in a row and wrap together on narrow screens. */
.empty-state-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* --------------------------------------------------------------- navbar --- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1rem;
  transition: padding 0.3s var(--ease);
}
.site-header.scrolled { padding-block: 0.5rem; }

.navbar {
  max-width: 1240px;
  margin-inline: auto;
  height: var(--nav-h);
  padding: 0 1.25rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(16, 15, 12, 0.82);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  box-shadow: var(--shadow-sm);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled .navbar {
  background: rgba(12, 11, 9, 0.95);
  box-shadow: var(--shadow);
}

.brand { display: flex; align-items: center; gap: 0.6rem; flex: none; }
.brand img { height: 46px; width: auto; object-fit: contain; }
.brand-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}
.nav-link {
  position: relative;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-size: 0.93rem;
  font-weight: 500;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.28rem;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: translateX(-50%);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.85rem;
  margin-left: 0.35rem;
  border-left: 1px solid var(--line);
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.02rem;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.icon-btn:hover { color: var(--gold); background: rgba(255,255,255,0.06); }

.count-bubble {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #14110a;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  border: 2px solid #14130f;
}
.count-bubble.show { display: inline-flex; }

/* user dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  min-width: 218px;
  padding: 0.5rem;
  background: #16150f;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}
.dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-head {
  padding: 0.6rem 0.75rem 0.75rem;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 0.4rem;
}
.dropdown-head strong { display: block; font-size: 0.92rem; }
.dropdown-head span { font-size: 0.78rem; color: var(--text-dim); word-break: break-all; }

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.62rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.dropdown-item i { width: 1.1rem; text-align: center; color: var(--gold); font-size: 0.88rem; }
.dropdown-item:hover { background: rgba(212,175,55,0.1); color: var(--text); }
.dropdown-item.danger { color: #f87171; }
.dropdown-item.danger i { color: #f87171; }
.dropdown-item.danger:hover { background: rgba(239,68,68,0.12); color: #fca5a5; }

/* hamburger */
.burger {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  inset: calc(var(--nav-h) + 1.5rem) 1rem auto 1rem;
  z-index: 999;
  max-height: calc(100vh - var(--nav-h) - 3rem);
  overflow-y: auto;
  padding: 1rem;
  background: rgba(14, 13, 10, 0.985);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.mobile-drawer.open { opacity: 1; visibility: visible; transform: translateY(0); }

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0.65rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-muted);
  font-size: 0.98rem;
}
.drawer-link:last-of-type { border-bottom: 0; }
.drawer-link i { color: var(--gold); width: 1.2rem; text-align: center; }
.drawer-link.active, .drawer-link:hover { color: var(--gold); }

/* ----------------------------------------------------------------- hero --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(88vh, 780px);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(212,175,55,0.13), transparent 70%),
    linear-gradient(180deg, rgba(10,10,10,0.86), rgba(10,10,10,0.94) 60%, var(--bg));
}
.hero-inner { max-width: 760px; }
.hero h1 { margin-bottom: 1rem; }
.hero-lede {
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  color: var(--text-muted);
  max-width: 55ch;
  margin-bottom: 2.25rem;
}
/* Paired hero CTAs read as a set, so give them a shared floor width rather than
   letting label length decide their size. */
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-cta .btn { min-width: 196px; }

/**
 * Hero trust row. These are short commitment phrases, not headline numbers, so
 * they lay out as an even grid and the label is sized as a label - a large
 * display size here forces a 3+1 wrap and reads as a broken row.
 */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 1.35rem 1.75rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.hero-trust strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.hero-trust span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------- page banners --- */
.page-banner {
  position: relative;
  padding: calc(var(--nav-h) + 3.5rem) 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, #121110, var(--bg));
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(212,175,55,0.1), transparent 70%);
  pointer-events: none;
}
.page-banner h1 { margin-bottom: 0.65rem; }
.page-banner p  { color: var(--text-muted); max-width: 58ch; margin-inline: auto; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  font-size: 0.83rem;
  color: var(--text-dim);
}
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { color: #3d3d3d; }

/* ------------------------------------------------------- section header --- */
.section-head { max-width: 640px; margin: 0 auto clamp(2.25rem, 4vw, 3.25rem); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head h2 { margin-bottom: 0.85rem; }
.section-head p  { color: var(--text-muted); }

/* ------------------------------------------------------- feature blocks --- */
.feature {
  padding: 2rem 1.75rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.feature:hover { transform: translateY(-6px); border-color: var(--gold-line); }
.feature-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-size: 1.4rem;
}
.feature h3 { font-size: 1.05rem; margin-bottom: 0.55rem; }
.feature p  { color: var(--text-muted); font-size: 0.9rem; }

/* --------------------------------------------------------- product card --- */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-line);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0f0f0f;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.07); }

.product-flags {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
  z-index: 2;
}
.flag {
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.flag-sale  { background: rgba(239,68,68,0.92);  color: #fff; }
.flag-new   { background: rgba(212,175,55,0.94); color: #14110a; }
.flag-low   { background: rgba(245,158,11,0.92); color: #14110a; }
.flag-out   { background: rgba(20,20,20,0.9); color: #d0d0d0; border: 1px solid #3a3a3a; }

.wish-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10,10,10,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  color: #cfcfcf;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  transition: all 0.25s var(--ease);
}
.wish-btn:hover { background: rgba(212,175,55,0.9); color: #14110a; border-color: var(--gold); }
.wish-btn.active { background: rgba(239,68,68,0.9); border-color: #ef4444; color: #fff; }

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
  padding: 1.15rem 1.25rem 1.35rem;
}
.product-title {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}
.product-title a { color: inherit; }
.product-title a:hover { color: var(--gold); }

.product-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: 0.78rem; color: var(--text-dim); }
.product-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

.product-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.9rem;
}
.price-now {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.price-was { font-size: 0.82rem; color: var(--text-dim); text-decoration: line-through; }

/* --------------------------------------------------- product detail page --- */
.gallery-main {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0f0f0f;
  aspect-ratio: 1;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.spec-list { display: grid; gap: 0; }
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}
.spec-row:last-child { border-bottom: 0; }
.spec-row dt { color: var(--text-dim); }
.spec-row dd { color: var(--text); font-weight: 500; text-align: right; }

.qty {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0d0d0d;
  flex: none;
}
.qty button {
  width: 2.6rem;
  color: var(--text-muted);
  font-size: 1rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

/* On the product page the quantity stepper sits beside a .btn-lg, so the whole
   row shares that control height. */
.qty-lg { height: 3.15rem; }
.qty-lg input { height: auto; }
.qty button:hover:not(:disabled) { background: var(--gold-soft); color: var(--gold); }
.qty button:disabled { opacity: 0.35; cursor: not-allowed; }
.qty input {
  width: 3.2rem;
  height: 2.7rem;
  min-width: 0;
  border: 0;
  border-inline: 1px solid var(--line);
  background: transparent;
  text-align: center;
  font-weight: 600;
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.tabs { display: flex; gap: 0.4rem; flex-wrap: wrap; border-bottom: 1px solid var(--line); margin-bottom: 1.75rem; }
.tab {
  padding: 0.8rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.93rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade-up 0.35s var(--ease); }

/* -------------------------------------------------------------- filters --- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

/**
 * Control rows: any row mixing inputs, selects and buttons. Everything shares
 * one height so nothing sits short against its neighbour.
 */
.control-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}
.filter-bar .input,
.filter-bar .select,
.filter-bar .btn,
.control-row .input,
.control-row .select,
.control-row .btn {
  height: 2.85rem;
  padding-block: 0;
  flex: 0 1 auto;
}
.filter-bar .input-icon-wrap { display: flex; }
.filter-bar .input-icon-wrap .input { width: 100%; }
.control-row .input { width: auto; }
.control-row > label { margin: 0; white-space: nowrap; }
.chip {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.chip:hover { border-color: var(--gold-line); color: var(--text); }
.chip.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: #14110a;
  font-weight: 600;
}

/* ---------------------------------------------------------------- table --- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.table { width: 100%; border-collapse: collapse; min-width: 620px; }
.table th {
  padding: 0.95rem 1.1rem;
  background: #191919;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
}
.table td {
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.9rem;
  vertical-align: middle;
}
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr { transition: background 0.18s var(--ease); }
.table tbody tr:hover { background: rgba(255,255,255,0.022); }
.table .num { text-align: right; font-variant-numeric: tabular-nums; }

.thumb {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--line);
  flex: none;
  background: #0f0f0f;
}

/* -------------------------------------------------------------- summary --- */
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.93rem;
}
.summary-row dt { color: var(--text-muted); }
.summary-row dd { font-weight: 500; font-variant-numeric: tabular-nums; }
.summary-total {
  margin-top: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.summary-total dt { font-size: 1.02rem; font-weight: 600; }
.summary-total dd { font-size: 1.4rem; font-weight: 700; color: var(--gold); font-variant-numeric: tabular-nums; }

.sticky-side { position: sticky; top: calc(var(--nav-h) + 1.5rem); }

/* ---------------------------------------------------------------- steps --- */
.steps { display: flex; align-items: center; gap: 0; margin-bottom: 2.5rem; }
.step { display: flex; align-items: center; gap: 0.65rem; font-size: 0.85rem; color: var(--text-dim); }
.step-num {
  width: 2rem; height: 2rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-2);
  font-size: 0.82rem;
  font-weight: 700;
  flex: none;
}
.step.done .step-num, .step.current .step-num {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: #14110a;
}
.step.current { color: var(--gold); font-weight: 600; }
.step.done { color: var(--text-muted); }
.step-line { flex: 1; height: 1px; background: var(--line); margin: 0 0.85rem; min-width: 1.5rem; }

/* --------------------------------------------------------- testimonials --- */
.quote {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
  padding: 1.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.15em; }
.quote p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.7; flex: 1; }
.quote-by { display: flex; align-items: center; gap: 0.85rem; }
.quote-by img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-line); }
.quote-by strong { display: block; font-size: 0.92rem; }
.quote-by span { font-size: 0.79rem; color: var(--text-dim); }

/* ------------------------------------------------------------------- faq --- */
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s var(--ease);
}
.faq-q:hover { color: var(--gold); }
.faq-q i { color: var(--gold); font-size: 0.85rem; transition: transform 0.3s var(--ease); flex: none; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.faq-item.open .faq-a { max-height: 640px; padding-bottom: 1.35rem; }
.faq-a p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.75; }
.faq-a p + p { margin-top: 0.85rem; }

/* -------------------------------------------------------- legal / prose --- */
.prose { max-width: 76ch; }
.prose h2 {
  font-size: 1.4rem;
  margin: 2.75rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--gold);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.08rem; margin: 1.85rem 0 0.7rem; }
.prose p, .prose li { color: var(--text-muted); line-height: 1.8; }
.prose p { margin-bottom: 1.1rem; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.35rem; }
.prose ul li { list-style: disc; margin-bottom: 0.55rem; padding-left: 0.3rem; }
.prose ol li { list-style: decimal; margin-bottom: 0.55rem; padding-left: 0.3rem; }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: 0.9rem; }
.prose th, .prose td { padding: 0.7rem 0.9rem; border: 1px solid var(--line); text-align: left; }
.prose th { background: #191919; color: var(--gold); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }

.toc {
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}
.toc strong { display: block; margin-bottom: 0.75rem; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.toc ol { margin: 0; counter-reset: toc; }
.toc li { margin-bottom: 0.45rem; font-size: 0.9rem; }
.toc a { color: var(--text-muted); }
.toc a:hover { color: var(--gold); }

/* --------------------------------------------------------------- footer --- */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--gold-line);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.75rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  margin-bottom: 3rem;
}
.footer-brand img { height: 58px; width: auto; margin-bottom: 1.1rem; }
.footer-about { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.4rem; max-width: 34ch; }

.footer-col h4 {
  margin-bottom: 1.1rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); padding-left: 3px; }

.footer-contact li { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.9rem; font-size: 0.88rem; color: var(--text-muted); }
.footer-contact i { color: var(--gold); margin-top: 0.28rem; width: 1rem; text-align: center; flex: none; }
.footer-contact a { color: var(--text-muted); }

.socials { display: flex; gap: 0.6rem; }
.social {
  width: 2.3rem; height: 2.3rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-size: 0.9rem;
  transition: all 0.25s var(--ease);
}
.social:hover { background: var(--gold); color: #14110a; transform: translateY(-3px); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.83rem;
  color: var(--text-dim);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 1.35rem; }
.footer-bottom nav a { color: var(--text-dim); }
.footer-bottom nav a:hover { color: var(--gold); }

.newsletter-form { display: flex; gap: 0.6rem; }
.newsletter-form .input { flex: 1; min-width: 0; }

/* ------------------------------------------------------------ utilities --- */
.toast-stack {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: min(360px, calc(100vw - 2.5rem));
  pointer-events: none;
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem 1.05rem;
  background: #16150f;
  border: 1px solid var(--gold-line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  color: var(--text);
  font-size: 0.89rem;
  line-height: 1.5;
  animation: toast-in 0.3s var(--ease);
  pointer-events: auto;
}
.toast.leaving { animation: toast-out 0.25s var(--ease) forwards; }
.toast i { margin-top: 0.15rem; color: var(--gold); flex: none; }
.toast.success { border-left-color: var(--success); }
.toast.success i { color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.error i { color: var(--danger); }

@keyframes toast-in  { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
@keyframes toast-out { to { opacity: 0; transform: translateX(24px); } }
@keyframes fade-up   { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes spin      { to { transform: rotate(360deg); } }

.spinner {
  display: inline-block;
  width: 1em; height: 1em;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.shown { opacity: 1; transform: none; }

.divider { height: 1px; background: var(--line-soft); margin: 2rem 0; border: 0; }

.aspect-video { aspect-ratio: 16 / 9; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow); }
.of-cover { object-fit: cover; width: 100%; height: 100%; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 6000;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: #14110a;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* -------------------------------------------------------------- WhatsApp --- */
.whatsapp-fab {
  position: fixed;
  bottom: 1.35rem;
  left: 1.35rem;
  z-index: 900;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.34);
  transition: transform 0.25s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.09); color: #fff; }

/* ---------------------------------------------------------- breakpoints --- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-actions { display: none; }
  .burger { display: flex; }
  .only-desk { display: none !important; }
  .only-mob  { display: initial; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sticky-side { position: static; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .container { padding-inline: 1rem; }
  .site-header { padding: 0.7rem; }
  .navbar { padding: 0 0.85rem; }
  .brand img { height: 38px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); gap: 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .card, .card-glass { padding: 1.35rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta .btn { width: 100%; }
  .steps { font-size: 0.75rem; }
  .step span:not(.step-num) { display: none; }
  .toast-stack { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; }
  .whatsapp-fab { bottom: 1rem; left: 1rem; width: 2.9rem; height: 2.9rem; font-size: 1.25rem; }
  .newsletter-form { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .whatsapp-fab, .toast-stack, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .card, .table-wrap { border-color: #ccc; }
}
