/* Aurum Frux — private exclusive Sicily selection */
:root {
  --ink: #161310;
  --ink-soft: #3a342c;
  --muted: #6e655c;
  --line: rgba(140, 120, 95, 0.22);
  --paper: #f4f0e9;
  --paper-deep: #ebe5db;
  --card: rgba(255, 252, 247, 0.78);
  --gold: #8a714f;
  --gold-bright: #b8956a;
  --gold-deep: #6b563c;
  --positive: #2f5d45;
  --shadow: 0 18px 50px rgba(22, 19, 16, 0.12);
  --shadow-soft: 0 8px 28px rgba(22, 19, 16, 0.08);
  --radius: 18px;
  --nav-h: 64px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: Outfit, system-ui, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .kenburns, .tilt, .tilt-soft { transform: none !important; animation: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

.glass {
  background: linear-gradient(145deg, rgba(255,252,247,0.72), rgba(255,252,247,0.42));
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.55);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
h1 { font-size: clamp(40px, 6.2vw, 72px); }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }

.section {
  padding: 88px 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.section-head { max-width: 640px; margin-bottom: 42px; }
.section-lede { color: var(--ink-soft); font-size: 17px; margin: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #faf6f0;
  box-shadow: 0 10px 28px rgba(107, 86, 60, 0.28);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(107, 86, 60, 0.36); }
.btn-ghost {
  background: rgba(255,252,247,0.45);
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--nav-h);
  background: rgba(244, 240, 233, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); background: rgba(244, 240, 233, 0.9); }
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.nav-brand {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--ink); background: rgba(255,255,255,0.45); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold)) !important;
  color: #faf6f0 !important;
  margin-left: 6px;
}
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,252,247,0.6);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: end;
  color: #f7f2ea;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  perspective: 1200px;
}
.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-fallback {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s;
}
.hero-media.is-fallback .hero-fallback { opacity: 1; }
.hero-media.is-fallback .hero-video { opacity: 0; }
.kenburns {
  animation: kenburns 28s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes kenburns {
  from { transform: scale(1.05) translate3d(0,0,0); }
  to { transform: scale(1.14) translate3d(-2%, 1%, 0); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,10,8,0.58) 0%, rgba(12,10,8,0.40) 36%, rgba(12,10,8,0.90) 100%),
    linear-gradient(90deg, rgba(12,10,8,0.50) 0%, rgba(12,10,8,0.15) 58%, rgba(12,10,8,0.32) 100%),
    radial-gradient(ellipse at 28% 18%, rgba(184,149,106,0.16), transparent 52%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 72px 28px 88px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45), 0 10px 32px rgba(0,0,0,0.35);
}
.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 8px;
  right: 8px;
  bottom: 48px;
  top: 12%;
  max-width: 720px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10,8,6,0.15) 0%, rgba(10,8,6,0.55) 40%, rgba(10,8,6,0.72) 100%);
  filter: blur(0.2px);
  pointer-events: none;
}
.hero .eyebrow { color: var(--gold-bright); }
.hero-lede {
  max-width: 560px;
  font-size: 18px;
  color: rgba(247,242,234,0.86);
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero .btn-ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
  color: #f7f2ea;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.16);
  max-width: 820px;
}
.hero-meta dt {
  margin: 0 0 4px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.55);
}
.hero-meta dd { margin: 0; font-size: 14px; color: rgba(247,242,234,0.92); }
.hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.55);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  perspective: 1400px;
}
.prop-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s;
  outline: none;
}
.prop-card:hover,
.prop-card:focus-visible {
  box-shadow: var(--shadow);
  border-color: rgba(138, 113, 79, 0.35);
}
.prop-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}
.prop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.7s var(--ease);
}
.prop-card:hover .prop-card-media img { transform: scale(1.04); }
.prop-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(22,19,16,0.55);
  color: #f7f2ea;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.prop-card-score {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-content: center;
  text-align: center;
  transform: translateZ(28px);
}
.score-num {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1;
  color: var(--gold-deep);
}
.score-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.prop-card-body { padding: 20px 20px 22px; }
.prop-card-body h3 { margin-bottom: 4px; }
.ask {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
}
.blurb {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--ink-soft);
}
.prop-card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.chip {
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(138,113,79,0.08);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.chip-gold { color: var(--gold-deep); border-color: rgba(138,113,79,0.28); }
.open-hint {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Property modules */
.prop-module { max-width: none; padding-left: 0; padding-right: 0; }
.prop-module.alt { background: linear-gradient(180deg, transparent, rgba(235,229,219,0.55), transparent); }
.module-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}
.module-inner.reverse { direction: rtl; }
.module-inner.reverse > * { direction: ltr; }
.code {
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.module-lede { color: var(--ink-soft); font-size: 16px; margin: 0 0 22px; }

.module-gallery {
  position: sticky;
  top: calc(var(--nav-h) + 18px);
}
.gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  cursor: zoom-in;
}
.gallery-nav,
.gallery-expand,
.lightbox-nav,
.lightbox-close,
.drawer-close {
  border: none;
  background: rgba(22,19,16,0.48);
  color: #f7f2ea;
  backdrop-filter: blur(8px);
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }
.gallery-nav::before {
  content: "";
  display: block;
  width: 8px; height: 8px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  margin: 0 auto;
}
.gallery-nav.prev::before { transform: rotate(45deg); margin-left: 14px; }
.gallery-nav.next::before { transform: rotate(-135deg); margin-left: 10px; }
.gallery-expand {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.thumb {
  padding: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--paper-deep);
  opacity: 0.72;
  transition: opacity 0.2s, border-color 0.2s;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.is-active,
.thumb:hover { opacity: 1; border-color: var(--gold); }

.finance-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 18px;
}
.finance-strip .fs-why { grid-column: 1 / -1; padding-top: 8px; border-top: 1px solid var(--line); }
.fs-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.fs-value {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--ink);
}
.fs-value.positive { color: var(--positive); }
.fs-value-sm { display: block; font-size: 14px; color: var(--ink-soft); }

.nugget-panel {
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 22px;
}
.nugget-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.nugget-note { margin: 0; font-size: 12px; color: var(--muted); max-width: 280px; }
.nugget-big {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1;
  color: var(--gold-deep);
}
.rubric { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.rubric-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(138,113,79,0.12);
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  width: var(--w, 0);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
}

.hold-reveal {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(138,113,79,0.28);
  background: rgba(255,252,247,0.7);
}
.fomo-copy { margin: 0 0 14px; font-size: 14px; color: var(--ink-soft); }
.hold-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Compare */
.compare-table {
  border-radius: 20px;
  overflow: hidden;
  padding: 8px;
}
.compare-row {
  display: grid;
  grid-template-columns: 0.9fr repeat(3, 1fr);
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.compare-row:last-child { border-bottom: 0; }
.compare-head { background: rgba(138,113,79,0.06); border-radius: 14px; border-bottom: 0; margin-bottom: 4px; }
.c-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.c-col { font-size: 15px; }
.c-col strong { display: block; font-family: var(--font-serif); font-size: 22px; font-weight: 500; margin-top: 2px; }
.positive { color: var(--positive); }
.score-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(138,113,79,0.12);
  color: var(--gold-deep);
  font-family: var(--font-serif);
  font-size: 20px;
}
.compare-cta .btn { width: 100%; }

/* Funnel / Next steps */
.next-steps { padding-bottom: 48px; }
.funnel {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.funnel-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border-radius: 16px;
}
.funnel-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-content: center;
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold-deep);
  background: rgba(138,113,79,0.1);
  border: 1px solid rgba(138,113,79,0.2);
}
.funnel-step h3 { margin-bottom: 6px; font-size: 22px; }
.funnel-step p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.funnel-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Secure */
.secure { padding-top: 48px; padding-bottom: 100px; }
.secure-panel {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 24px;
  max-width: 920px;
  margin: 0 auto;
  transform-style: preserve-3d;
}
.secure-lede { color: var(--ink-soft); font-size: 17px; max-width: 640px; margin: 0 0 28px; }
.code-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.code-card {
  text-align: left;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.4);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.code-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.code-card .code { display: block; margin-bottom: 4px; }
.code-name { display: block; font-family: var(--font-serif); font-size: 22px; margin-bottom: 10px; }
.code-hint {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.secure-cta-line { font-size: 16px; margin: 0 0 18px; color: var(--ink-soft); }
.secure-fine { margin: 22px 0 0; font-size: 12px; color: var(--muted); max-width: 560px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px;
  color: var(--muted);
  font-size: 12px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}
.footer-inner .brand {
  font-family: var(--font-serif);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-size: 14px;
}
.footer-inner p { margin: 0; }

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  visibility: hidden;
}
.drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16,13,10,0.48);
  opacity: 0;
  transition: opacity 0.3s;
}
.drawer.is-open .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 100%);
  height: 100%;
  background: var(--paper);
  box-shadow: -20px 0 60px rgba(0,0,0,0.2);
  transform: translateX(104%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
  padding: 28px 24px 48px;
}
.drawer.is-open .drawer-panel { transform: translateX(0); }
.drawer-close {
  position: sticky;
  top: 0;
  float: right;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  z-index: 2;
}
.drawer-body { clear: both; padding-top: 8px; }
.drawer-body img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 16px;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.drawer-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}
.drawer-thumbs button {
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}
.drawer-thumbs button.is-active { border-color: var(--gold); }
.drawer-thumbs img { width: 100%; height: 100%; object-fit: cover; margin: 0; aspect-ratio: auto; border-radius: 0; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10,8,6,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px 64px;
}
.lightbox.is-open { display: flex; }
.lightbox-figure { margin: 0; max-width: min(1100px, 100%); text-align: center; }
.lightbox-figure img {
  max-height: calc(100vh - 120px);
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.lightbox-figure figcaption {
  margin-top: 12px;
  color: rgba(247,242,234,0.7);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
}
.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(22,19,16,0.9);
  color: #f7f2ea;
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s var(--ease);
  pointer-events: none;
}
.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Soft parallax layers */
.parallax-slow { will-change: transform; }

/* Mobile */
@media (max-width: 980px) {
  .card-grid,
  .module-inner,
  .module-inner.reverse,
  .hero-meta,
  .code-grid,
  .compare-row {
    grid-template-columns: 1fr;
  }
  .module-inner.reverse { direction: ltr; }
  .module-gallery { position: static; }
  .compare-row {
    gap: 8px;
    padding: 14px;
  }
  .compare-head { display: none; }
  .c-label { margin-bottom: 2px; }
  .c-col::before {
    content: attr(data-label);
    display: block;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .compare-row .c-col { padding: 10px 0; border-bottom: 1px solid rgba(140,120,95,0.12); }
  .compare-row .c-col:last-child { border-bottom: 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(244,240,233,0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { padding: 14px 12px; }
  .footer-inner { flex-direction: column; }
  .finance-strip { grid-template-columns: 1fr; }
  .lightbox { padding: 56px 16px 24px; }
  .lightbox-nav.prev { left: 6px; }
  .lightbox-nav.next { right: 6px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 18px; }
  .hero {
    min-height: calc(100svh - var(--nav-h));
    align-items: end;
  }
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(10,8,6,0.62) 0%, rgba(10,8,6,0.48) 32%, rgba(10,8,6,0.94) 100%),
      linear-gradient(90deg, rgba(10,8,6,0.60) 0%, rgba(10,8,6,0.28) 100%);
  }
  .hero-content {
    padding: 40px 18px 80px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 12px 36px rgba(0,0,0,0.45);
  }
  .hero-content::before {
    left: 0;
    right: 0;
    top: 8%;
    bottom: 36px;
    max-width: none;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(8,6,5,0.20) 0%, rgba(8,6,5,0.68) 35%, rgba(8,6,5,0.82) 100%);
  }
  .hero h1 {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.08;
  }
  .hero-lede {
    font-size: 16px;
    color: rgba(247,242,234,0.92);
  }
  .hero-meta {
    gap: 12px;
    padding-top: 20px;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .funnel-step { grid-template-columns: 44px 1fr; gap: 12px; padding: 16px; }
  .funnel-num { width: 44px; height: 44px; }
}
