/* ========================================
   Linh Khí Đại Việt — Global Styles
   ========================================
   Color palette:
   --ink:    nền mực đen
   --wood:   nâu gỗ
   --cinnabar: đỏ son
   --gold:   vàng đồng
   --cream:  chữ kem
   ======================================== */

:root {
  --ink: #0c0a08;
  --ink-2: #141009;
  --wood: #3a241a;
  --cinnabar: #a8392b;
  --cinnabar-bright: #c4503c;
  --gold: #c8a35c;
  --gold-soft: #d8bd86;
  --cream: #e9ddc7;
  --cream-dim: #b6a890;
  --muted: #5f564a;
  --line: rgba(200, 163, 92, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Hạt giấy phủ toàn trang */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, .serif {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.eyebrow {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--gold);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 1.1s cubic-bezier(0.16, 0.7, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 0.7, 0.3, 1);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }
.d4 { transition-delay: 0.48s; }

/* Divider motif */
.motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  color: var(--gold);
  opacity: 0.8;
}
.motif::before, .motif::after {
  content: '';
  height: 1px;
  width: 90px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.motif::after {
  background: linear-gradient(270deg, transparent, var(--gold));
}
.motif svg { width: 30px; height: 30px; flex: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: saturate(0.92) contrast(1.02);
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 52%, rgba(12, 10, 8, 0.18), rgba(12, 10, 8, 0.72) 60%, rgba(12, 10, 8, 0.97) 100%),
    linear-gradient(180deg, rgba(12, 10, 8, 0.65), transparent 28%, transparent 62%, var(--ink));
}
.hero-inner { position: relative; z-index: 3; padding: 0 24px; }
.hero .eyebrow { display: block; margin-bottom: 30px; animation: fadeUp 1.3s 0.2s both; }
.hero h1 {
  font-size: clamp(3.1rem, 11vw, 8.4rem);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.6);
}
.hero h1 .ln { display: block; animation: fadeUp 1.4s both; }
.hero h1 .ln:nth-child(1) { animation-delay: 0.35s; }
.hero h1 .ln:nth-child(2) {
  color: var(--gold-soft);
  font-style: italic;
  font-weight: 500;
  animation-delay: 0.55s;
}
.hero .sub {
  max-width: 600px;
  margin: 34px auto 0;
  font-size: 1.06rem;
  color: var(--cream-dim);
  font-weight: 300;
  animation: fadeUp 1.4s 0.8s both;
}
.hero .pearl {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 22px 6px rgba(200, 163, 92, 0.55);
  margin: 30px auto 0;
  animation: fadeUp 1.4s 1s both;
}
.scrollcue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--gold);
  font-size: 0.64rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  animation: fadeUp 1.4s 1.2s both;
  text-align: center;
}
.scrollcue span {
  display: block;
  width: 1px; height: 46px;
  background: linear-gradient(var(--gold), transparent);
  margin: 12px auto 0;
  animation: cue 2.2s infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  40% { transform: scaleY(1); transform-origin: top; }
  60% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

/* ============ SECTION CHUNG ============ */
section { position: relative; }
.pad { padding: 130px 0; }
.pad-sm { padding: 96px 0; }
.center { text-align: center; }

h2.title {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.08;
  font-weight: 500;
}
h2.title em { color: var(--gold-soft); font-weight: 500; }

.lead {
  font-size: 1.12rem;
  color: var(--cream-dim);
  max-width: 680px;
  margin: 26px auto 0;
  font-weight: 300;
}

/* ============ COI NGUON ============ */
.origin { background: linear-gradient(180deg, var(--ink), var(--ink-2)); }
.bignum {
  font-family: 'Playfair Display', serif;
  font-size: clamp(7rem, 22vw, 17rem);
  line-height: 0.8;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.3px var(--gold);
  opacity: 0.85;
  letter-spacing: -0.02em;
}
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 18px;
}
.origin-grid p {
  font-size: 1.08rem;
  color: var(--cream-dim);
  margin-top: 20px;
}
.origin-grid .drop::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  float: left;
  line-height: 0.7;
  padding: 8px 14px 0 0;
  color: var(--gold);
  font-weight: 600;
}

/* ============ DOC HOA VAN ============ */
.decode { background: var(--ink-2); }
.beast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 70px;
}
.beast.flip .beast-media { order: 2; }
.beast-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.beast-media .ph {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s ease;
}
.beast:hover .beast-media .ph { transform: scale(1.05); }
.beast-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(12, 10, 8, 0.55));
  box-shadow: inset 0 0 120px 30px rgba(12, 10, 8, 0.6);
}
.beast-body {
  padding: 60px clamp(28px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(58, 36, 26, 0.32), transparent);
}
.beast-body .kanji {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 0.5em;
  color: var(--cinnabar-bright);
  text-transform: uppercase;
  font-weight: 600;
}
.beast-body h3 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin-top: 14px;
  line-height: 1.02;
}
.beast-body h3 em { color: var(--gold-soft); }
.beast-body > p {
  color: var(--cream-dim);
  margin-top: 20px;
  font-size: 1.04rem;
}
.traits {
  list-style: none;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.traits li {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  font-size: 0.98rem;
}
.traits li b {
  color: var(--gold);
  font-weight: 600;
  min-width: 130px;
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
}
.traits li span { color: var(--cream-dim); }
.badge-nat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.badge-nat svg { width: 16px; height: 16px; }

/* ============ NGHE NHAN ============ */
.maker {
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  text-align: center;
}
.maker .quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
  line-height: 1.3;
  max-width: 960px;
  margin: 34px auto 0;
  font-weight: 500;
}
.maker .quote .vua { color: var(--cinnabar-bright); }
.maker .quote .hau { color: var(--gold-soft); }
.maker .sign {
  margin-top: 40px;
  color: var(--cream-dim);
  font-size: 0.96rem;
}
.maker .sign b {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.02em;
}
.specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--line);
}
.specs div {
  flex: 1;
  min-width: 170px;
  padding: 34px 22px;
  border-right: 1px solid var(--line);
}
.specs div:last-child { border-right: none; }
.specs .v {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--gold-soft);
  font-weight: 600;
}
.specs .k {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 8px;
}

/* ============ LINH KHI / XONG TRAM ============ */
.alive {
  position: relative;
  background: #070605;
  overflow: hidden;
}
.alive .glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 80vw; height: 80vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(168, 57, 43, 0.20), transparent 62%);
  pointer-events: none;
}
.smoke {
  position: absolute;
  left: 50%; top: 34%;
  width: 120px; height: 340px;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(7px);
  opacity: 0.5;
}
.smoke span {
  position: absolute;
  bottom: 0; left: 50%;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(216, 189, 134, 0.5);
  animation: rise 7s infinite ease-in;
}
.smoke span:nth-child(2) { animation-delay: 1.6s; left: 42%; }
.smoke span:nth-child(3) { animation-delay: 3.1s; left: 58%; }
.smoke span:nth-child(4) { animation-delay: 4.6s; left: 48%; }
@keyframes rise {
  0% { transform: translate(-50%, 0) scale(0.6); opacity: 0; }
  18% { opacity: 0.55; }
  100% { transform: translate(-50%, -300px) scale(2.6); opacity: 0; }
}
.alive-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.alive h2 { color: var(--cream); }
.videoframe {
  position: relative;
  max-width: 760px;
  margin: 56px auto 0;
  aspect-ratio: 16/10;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #1a130d, #0a0807);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.videoframe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(168, 57, 43, 0.16), transparent 60%);
}
.playbtn { position: relative; z-index: 2; text-align: center; }
.playbtn .circ {
  width: 78px; height: 78px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: 0.4s;
}
.videoframe:hover .playbtn .circ {
  background: var(--cinnabar);
  border-color: var(--cinnabar);
  transform: scale(1.06);
}
.playbtn .circ svg { width: 24px; height: 24px; fill: var(--gold); }
.videoframe:hover .playbtn .circ svg { fill: var(--cream); }
.playbtn small {
  display: block;
  color: var(--cream-dim);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============ THINH VE / OFFER ============ */
.offer { background: linear-gradient(180deg, var(--ink), var(--ink-2)); }
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 64px;
}
.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(58, 36, 26, 0.22), transparent);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.5s;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}
.card-img {
  height: 420px;
  background-size: cover;
  background-position: center top;
  position: relative;
  transition: transform 1.2s;
}
.card:hover .card-img { transform: scale(1.04); }
.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -90px 80px -20px var(--ink-2);
}
.card-body {
  padding: 34px 32px 38px;
  text-align: center;
}
.card-body .kanji {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.4em;
  color: var(--cinnabar-bright);
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 600;
}
.card-body h3 {
  font-size: 1.9rem;
  margin-top: 8px;
}
.card-body p {
  color: var(--cream-dim);
  font-size: 0.96rem;
  margin-top: 12px;
  min-height: 52px;
}
.price {
  margin-top: 22px;
  font-family: 'Playfair Display', serif;
  color: var(--gold-soft);
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.price .cur {
  font-size: 1.1rem;
  margin-left: 4px;
  color: var(--gold);
  vertical-align: super;
}
.stock {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.stock .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cinnabar-bright);
  box-shadow: 0 0 10px 2px rgba(196, 80, 60, 0.6);
  animation: pulse 2s infinite;
}
.stock b {
  color: var(--cinnabar-bright);
  font-weight: 600;
  margin: 0 2px;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* CTA buttons */
.btn {
  display: inline-block;
  padding: 18px 46px;
  background: var(--cinnabar);
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  text-decoration: none;
  border: 1px solid var(--cinnabar);
  transition: 0.4s;
  cursor: pointer;
  font-family: 'Be Vietnam Pro', sans-serif;
}
.btn:hover {
  background: transparent;
  color: var(--gold-soft);
  border-color: var(--gold);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-ghost {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-soft);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--ink);
}
.btn-sm {
  padding: 14px 32px;
  font-size: 0.74rem;
  margin-top: 20px;
}

.pair-cta {
  margin-top: 80px;
  text-align: center;
  padding: 70px 28px;
  border: 1px solid var(--gold);
  position: relative;
  background: radial-gradient(ellipse at center, rgba(168, 57, 43, 0.10), transparent 70%);
}
.pair-cta h3 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}
.pair-cta h3 em { color: var(--gold-soft); }
.pair-cta p {
  color: var(--cream-dim);
  max-width: 560px;
  margin: 18px auto 0;
}
.combo-price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  color: var(--gold-soft);
  font-weight: 600;
  margin-top: 8px;
}
.combo-price .cur {
  font-size: 1.4rem;
  color: var(--gold);
  vertical-align: super;
  margin-left: 4px;
}
.combo-save {
  color: var(--cinnabar-bright);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
}
.deposit-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--cream-dim);
  font-style: italic;
}
.deposit-note a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

/* ============ TRUST + FORM ============ */
.trust { background: var(--ink-2); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.trust-grid .it {
  text-align: center;
  padding: 30px 16px;
  border-top: 1px solid var(--line);
}
.trust-grid .it svg {
  width: 30px; height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.3;
}
.trust-grid .it b {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-top: 14px;
  color: var(--cream);
  font-weight: 600;
}
.trust-grid .it span {
  font-size: 0.86rem;
  color: var(--cream-dim);
}

.form-card {
  max-width: 640px;
  margin: 80px auto 0;
  border: 1px solid var(--line);
  padding: clamp(34px, 5vw, 60px);
  background: linear-gradient(160deg, rgba(58, 36, 26, 0.25), transparent);
}
.form-card h3 {
  font-size: 1.9rem;
  text-align: center;
}
.form-card .lead {
  font-size: 1rem;
  margin-top: 14px;
}

.frm {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}
.frm input, .frm select, .frm textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 15px 18px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 0.96rem;
  font-weight: 300;
}
.frm input:focus, .frm select:focus, .frm textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.frm input::placeholder, .frm textarea::placeholder {
  color: #7c715c;
}
.frm select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23c8a35c' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 46px;
}
.frm select option {
  background: #1a130d;
  color: var(--cream);
}
.frm textarea {
  resize: vertical;
  font-family: 'Be Vietnam Pro', sans-serif;
}
.frm .btn {
  width: 100%;
  border: none;
  margin-top: 6px;
}
.frm-error {
  background: rgba(168, 57, 43, 0.18);
  border: 1px solid var(--cinnabar);
  color: var(--cream);
  padding: 14px 18px;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.ok-msg {
  text-align: center;
  color: var(--gold-soft);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  padding: 24px;
  border: 1px solid var(--gold);
  margin-top: 20px;
}
.ok-msg b {
  color: var(--cream);
  font-style: normal;
}

/* Tabs */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
.tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--cream-dim);
  font-family: 'Be Vietnam Pro', sans-serif;
  padding: 16px 14px;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: -1px;
}
.tab.active {
  color: var(--gold-soft);
  border-bottom-color: var(--gold);
}
.tab:hover { color: var(--cream); }

/* Bank info */
.bank-info {
  margin-top: 30px;
  border: 1px dashed var(--gold);
  padding: 24px;
  background: rgba(168, 57, 43, 0.06);
}
.bank-label {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  gap: 12px;
}
.bank-row:last-child { border-bottom: none; }
.bank-row span { color: var(--cream-dim); flex-shrink: 0; }
.bank-row b {
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: right;
  word-break: break-word;
}
.copy-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 4px 10px;
  font-size: 0.7rem;
  cursor: pointer;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.3s;
}
.copy-btn:hover {
  background: var(--gold);
  color: var(--ink);
}

.direct {
  margin-top: 26px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--cream-dim);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.direct a {
  color: var(--gold-soft);
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
}
.direct a:hover { color: var(--cream); }

/* Footer */
footer {
  background: var(--ink);
  text-align: center;
  padding: 70px 28px 60px;
  border-top: 1px solid var(--line);
}
footer .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  font-weight: 600;
}
footer .logo span { color: var(--gold); }
footer p {
  color: var(--cream-dim);
  font-size: 0.86rem;
  margin-top: 14px;
}
footer .small {
  color: #6a6051;
  font-size: 0.74rem;
  margin-top: 26px;
  letter-spacing: 0.04em;
}
footer a {
  color: var(--gold-soft);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

/* Floating CTA */
.floatcta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cinnabar);
  color: var(--cream);
  padding: 14px 22px 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 30px rgba(168, 57, 43, 0.4),
    0 0 0 4px rgba(168, 57, 43, 0.15);
  transition: 0.3s;
  animation: bob 3s infinite ease-in-out;
}
.floatcta:hover {
  background: var(--cinnabar-bright);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(196, 80, 60, 0.55),
    0 0 0 6px rgba(196, 80, 60, 0.18);
}
.floatcta svg { width: 22px; height: 22px; fill: currentColor; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Responsive */
@media (max-width: 860px) {
  .origin-grid { grid-template-columns: 1fr; gap: 34px; }
  .beast { grid-template-columns: 1fr; }
  .beast.flip .beast-media { order: 0; }
  .beast-media { min-height: 380px; }
  .cards { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .specs div { border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .floatcta span { display: none; }
  .floatcta { padding: 16px; border-radius: 50%; }
}
